<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:www.nabble.com,2006:forum-629</id>
	<title>Nabble - PhpWebsite</title>
	<updated>2008-08-07T10:57:45Z</updated>
	<link rel="self" type="application/atom+xml" href="http://www.nabble.com/PhpWebsite-f629.xml" />
	<link rel="alternate" type="text/html" href="http://www.nabble.com/PhpWebsite-f629.html" />
	<subtitle type="html">phpWebSite provides a complete web site content management system. Web-based administration allows for easy maintenance of interactive, community-driven web sites. Visit PhpWebsite home &lt;a href=&quot;http://phpwebsite.appstate.edu/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;.</subtitle>
	
<entry>
	<id>tag:www.nabble.com,2006:post-18876230</id>
	<title>Re: New mod_rewrite / redirect index file</title>
	<published>2008-08-07T10:57:45Z</published>
	<updated>2008-08-07T10:57:45Z</updated>
	<author>
		<name>Verdon Vaillancourt-2</name>
	</author>
	<content type="html">Cool. I like that.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;verdon
&lt;br&gt;&lt;br&gt;On 7-Aug-08, at 1:36 PM, matt wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Verdon,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; You won't watch for anything. If an address is in mod_rewrite format,
&lt;br&gt;&amp;gt; Forward.php places the key/value pairs into the _GET and _REQUEST
&lt;br&gt;&amp;gt; globals. So you could just drop the looks for var1 and var2.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Matt
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Verdon Vaillancourt wrote:
&lt;br&gt;&amp;gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; With the old $var1 $var2 model, I used to do the following in my
&lt;br&gt;&amp;gt;&amp;gt; mod's index.php file..
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;lt;?php
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; if (!defined('PHPWS_SOURCE_DIR')) {
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;include '../../config/core/404.html';
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;exit();
&lt;br&gt;&amp;gt;&amp;gt; }
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; PHPWS_Core::initModClass('skeleton', 'Skeleton.php');
&lt;br&gt;&amp;gt;&amp;gt; $skeleton = new Skeleton;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; if (isset($_GET['var1'])) {
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;$_REQUEST['skeleton_id'] = $_GET['skeleton_id'] = (int)$_GET
&lt;br&gt;&amp;gt;&amp;gt; ['var1'];
&lt;br&gt;&amp;gt;&amp;gt; }
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; if (isset($_GET['var2'])) {
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;$_REQUEST['bone_id'] = $_GET['bone_id'] = (int)$_GET['var2'];
&lt;br&gt;&amp;gt;&amp;gt; }
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; if (isset($_REQUEST['aop'])) {
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;$skeleton-&amp;gt;adminMenu();
&lt;br&gt;&amp;gt;&amp;gt; } elseif (isset($_REQUEST['uop'])) {
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;$skeleton-&amp;gt;userMenu();
&lt;br&gt;&amp;gt;&amp;gt; } elseif (isset($_REQUEST['skeleton_id']) &amp;&amp; isset($_REQUEST
&lt;br&gt;&amp;gt;&amp;gt; ['bone_id'])) {
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;$skeleton-&amp;gt;userMenu('view_bone');
&lt;br&gt;&amp;gt;&amp;gt; } elseif (isset($_REQUEST['skeleton_id'])) {
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;$skeleton-&amp;gt;userMenu('view_skeleton');
&lt;br&gt;&amp;gt;&amp;gt; } else {
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;PHPWS_Core::home();
&lt;br&gt;&amp;gt;&amp;gt; }
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ?&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; How should I approach that now? Anything else I should be watching &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; for?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt;&amp;gt; verdon
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; --------------------------------------------------------------------- 
&lt;br&gt;&amp;gt;&amp;gt; ----
&lt;br&gt;&amp;gt;&amp;gt; This SF.Net email is sponsored by the Moblin Your Move Developer's &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; challenge
&lt;br&gt;&amp;gt;&amp;gt; Build the coolest Linux based applications with Moblin SDK &amp; win &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; great prizes
&lt;br&gt;&amp;gt;&amp;gt; Grand prize is a trip for two to an Open Source event anywhere in &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; the world
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; Phpwebsite-developers mailing list
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18876230&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; Matthew McNaney
&lt;br&gt;&amp;gt; Electronic Student Services
&lt;br&gt;&amp;gt; Appalachian State University
&lt;br&gt;&amp;gt; Ext. 6493
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://ess.appstate.edu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ess.appstate.edu&lt;/a&gt;&lt;br&gt;&amp;gt; &lt;a href=&quot;http://phpwebsite.appstate.edu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://phpwebsite.appstate.edu&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------- 
&lt;br&gt;&amp;gt; ---
&lt;br&gt;&amp;gt; This SF.Net email is sponsored by the Moblin Your Move Developer's &amp;nbsp;
&lt;br&gt;&amp;gt; challenge
&lt;br&gt;&amp;gt; Build the coolest Linux based applications with Moblin SDK &amp; win &amp;nbsp;
&lt;br&gt;&amp;gt; great prizes
&lt;br&gt;&amp;gt; Grand prize is a trip for two to an Open Source event anywhere in &amp;nbsp;
&lt;br&gt;&amp;gt; the world
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Phpwebsite-developers mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18876230&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Phpwebsite-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18876230&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/PhpWebsite---Dev-f663.html&quot; embed=&quot;fixTarget[663]&quot; target=&quot;_top&quot; &gt;PhpWebsite - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/New-mod_rewrite---redirect-index-file-tp18875729p18876230.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18876107</id>
	<title>Re: New mod_rewrite / redirect index file</title>
	<published>2008-08-07T10:36:11Z</published>
	<updated>2008-08-07T10:36:11Z</updated>
	<author>
		<name>Matthew McNaney</name>
	</author>
	<content type="html">Verdon,
&lt;br&gt;&lt;br&gt;You won't watch for anything. If an address is in mod_rewrite format, 
&lt;br&gt;Forward.php places the key/value pairs into the _GET and _REQUEST 
&lt;br&gt;globals. So you could just drop the looks for var1 and var2.
&lt;br&gt;&lt;br&gt;Matt
&lt;br&gt;&lt;br&gt;Verdon Vaillancourt wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; With the old $var1 $var2 model, I used to do the following in my &amp;nbsp;
&lt;br&gt;&amp;gt; mod's index.php file..
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;lt;?php
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; if (!defined('PHPWS_SOURCE_DIR')) {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;include '../../config/core/404.html';
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;exit();
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; PHPWS_Core::initModClass('skeleton', 'Skeleton.php');
&lt;br&gt;&amp;gt; $skeleton = new Skeleton;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; if (isset($_GET['var1'])) {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;$_REQUEST['skeleton_id'] = $_GET['skeleton_id'] = (int)$_GET 
&lt;br&gt;&amp;gt; ['var1'];
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; if (isset($_GET['var2'])) {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;$_REQUEST['bone_id'] = $_GET['bone_id'] = (int)$_GET['var2'];
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; if (isset($_REQUEST['aop'])) {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;$skeleton-&amp;gt;adminMenu();
&lt;br&gt;&amp;gt; } elseif (isset($_REQUEST['uop'])) {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;$skeleton-&amp;gt;userMenu();
&lt;br&gt;&amp;gt; } elseif (isset($_REQUEST['skeleton_id']) &amp;&amp; isset($_REQUEST 
&lt;br&gt;&amp;gt; ['bone_id'])) {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;$skeleton-&amp;gt;userMenu('view_bone');
&lt;br&gt;&amp;gt; } elseif (isset($_REQUEST['skeleton_id'])) {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;$skeleton-&amp;gt;userMenu('view_skeleton');
&lt;br&gt;&amp;gt; } else {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;PHPWS_Core::home();
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ?&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; How should I approach that now? Anything else I should be watching for?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt; verdon
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; -------------------------------------------------------------------------
&lt;br&gt;&amp;gt; This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;&amp;gt; Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;&amp;gt; Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Phpwebsite-developers mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18876107&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;Matthew McNaney
&lt;br&gt;Electronic Student Services
&lt;br&gt;Appalachian State University
&lt;br&gt;Ext. 6493
&lt;br&gt;&lt;a href=&quot;http://ess.appstate.edu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ess.appstate.edu&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://phpwebsite.appstate.edu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://phpwebsite.appstate.edu&lt;/a&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Phpwebsite-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18876107&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/PhpWebsite---Dev-f663.html&quot; embed=&quot;fixTarget[663]&quot; target=&quot;_top&quot; &gt;PhpWebsite - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/New-mod_rewrite---redirect-index-file-tp18875729p18876107.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18875729</id>
	<title>New mod_rewrite / redirect index file</title>
	<published>2008-08-07T10:32:58Z</published>
	<updated>2008-08-07T10:32:58Z</updated>
	<author>
		<name>Verdon Vaillancourt-2</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;With the old $var1 $var2 model, I used to do the following in my &amp;nbsp;
&lt;br&gt;mod's index.php file..
&lt;br&gt;&lt;br&gt;&amp;lt;?php
&lt;br&gt;&lt;br&gt;if (!defined('PHPWS_SOURCE_DIR')) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;include '../../config/core/404.html';
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;exit();
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;PHPWS_Core::initModClass('skeleton', 'Skeleton.php');
&lt;br&gt;$skeleton = new Skeleton;
&lt;br&gt;&lt;br&gt;if (isset($_GET['var1'])) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;$_REQUEST['skeleton_id'] = $_GET['skeleton_id'] = (int)$_GET 
&lt;br&gt;['var1'];
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;if (isset($_GET['var2'])) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;$_REQUEST['bone_id'] = $_GET['bone_id'] = (int)$_GET['var2'];
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;if (isset($_REQUEST['aop'])) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;$skeleton-&amp;gt;adminMenu();
&lt;br&gt;} elseif (isset($_REQUEST['uop'])) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;$skeleton-&amp;gt;userMenu();
&lt;br&gt;} elseif (isset($_REQUEST['skeleton_id']) &amp;&amp; isset($_REQUEST 
&lt;br&gt;['bone_id'])) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;$skeleton-&amp;gt;userMenu('view_bone');
&lt;br&gt;} elseif (isset($_REQUEST['skeleton_id'])) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;$skeleton-&amp;gt;userMenu('view_skeleton');
&lt;br&gt;} else {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;PHPWS_Core::home();
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;&lt;br&gt;?&amp;gt;
&lt;br&gt;&lt;br&gt;How should I approach that now? Anything else I should be watching for?
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;verdon
&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Phpwebsite-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18875729&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/PhpWebsite---Dev-f663.html&quot; embed=&quot;fixTarget[663]&quot; target=&quot;_top&quot; &gt;PhpWebsite - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/New-mod_rewrite---redirect-index-file-tp18875729p18875729.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18803160</id>
	<title>Re: Error with recent changes to Key class</title>
	<published>2008-08-03T15:18:39Z</published>
	<updated>2008-08-03T15:18:39Z</updated>
	<author>
		<name>Matthew McNaney</name>
	</author>
	<content type="html">Likewise. There is some cool functionality in PHP 5. I have only touched
&lt;br&gt;on some while doing wide scale search and replace.
&lt;br&gt;&lt;br&gt;Matt
&lt;br&gt;&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Thanks Matt,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; New ground for me :)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; verdon
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On 3-Aug-08, at 4:24 PM, &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18803160&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;matt@...&lt;/a&gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I am in the process of updating to the php 5 standard. I haven't
&lt;br&gt;&amp;gt;&amp;gt; tested
&lt;br&gt;&amp;gt;&amp;gt; much yet. Change _error from private to public.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Matt
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I'm not sure what's ultimately causing this, but this is what I am
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; getting after updating to svn 6093
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Fatal error: Cannot access private property Key::$_error in /home/
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; phpws_svn/mod/comments/class/Comments.php on line 35
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I can access my control panel directly, just not the homepage. I'm
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; trying to narrow it down now
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; verdon
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; ----
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; This SF.Net email is sponsored by the Moblin Your Move Developer's
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; challenge
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Build the coolest Linux based applications with Moblin SDK &amp; win
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; great
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; prizes
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Grand prize is a trip for two to an Open Source event anywhere in the
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; world
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Phpwebsite-developers mailing list
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18803160&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ----------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; ---
&lt;br&gt;&amp;gt;&amp;gt; This SF.Net email is sponsored by the Moblin Your Move Developer's
&lt;br&gt;&amp;gt;&amp;gt; challenge
&lt;br&gt;&amp;gt;&amp;gt; Build the coolest Linux based applications with Moblin SDK &amp; win
&lt;br&gt;&amp;gt;&amp;gt; great prizes
&lt;br&gt;&amp;gt;&amp;gt; Grand prize is a trip for two to an Open Source event anywhere in
&lt;br&gt;&amp;gt;&amp;gt; the world
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; Phpwebsite-developers mailing list
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18803160&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -------------------------------------------------------------------------
&lt;br&gt;&amp;gt; This SF.Net email is sponsored by the Moblin Your Move Developer's
&lt;br&gt;&amp;gt; challenge
&lt;br&gt;&amp;gt; Build the coolest Linux based applications with Moblin SDK &amp; win great
&lt;br&gt;&amp;gt; prizes
&lt;br&gt;&amp;gt; Grand prize is a trip for two to an Open Source event anywhere in the
&lt;br&gt;&amp;gt; world
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Phpwebsite-developers mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18803160&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Phpwebsite-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18803160&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/PhpWebsite---Dev-f663.html&quot; embed=&quot;fixTarget[663]&quot; target=&quot;_top&quot; &gt;PhpWebsite - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Error-with-recent-changes-to-Key-class-tp18799535p18803160.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18802364</id>
	<title>Re: Error with recent changes to Key class</title>
	<published>2008-08-03T13:50:42Z</published>
	<updated>2008-08-03T13:50:42Z</updated>
	<author>
		<name>Verdon Vaillancourt-2</name>
	</author>
	<content type="html">Thanks Matt,
&lt;br&gt;&lt;br&gt;New ground for me :)
&lt;br&gt;&lt;br&gt;verdon
&lt;br&gt;&lt;br&gt;On 3-Aug-08, at 4:24 PM, &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18802364&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;matt@...&lt;/a&gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I am in the process of updating to the php 5 standard. I haven't &amp;nbsp;
&lt;br&gt;&amp;gt; tested
&lt;br&gt;&amp;gt; much yet. Change _error from private to public.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Matt
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I'm not sure what's ultimately causing this, but this is what I am
&lt;br&gt;&amp;gt;&amp;gt; getting after updating to svn 6093
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Fatal error: Cannot access private property Key::$_error in /home/
&lt;br&gt;&amp;gt;&amp;gt; phpws_svn/mod/comments/class/Comments.php on line 35
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I can access my control panel directly, just not the homepage. I'm
&lt;br&gt;&amp;gt;&amp;gt; trying to narrow it down now
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; verdon
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; --------------------------------------------------------------------- 
&lt;br&gt;&amp;gt;&amp;gt; ----
&lt;br&gt;&amp;gt;&amp;gt; This SF.Net email is sponsored by the Moblin Your Move Developer's
&lt;br&gt;&amp;gt;&amp;gt; challenge
&lt;br&gt;&amp;gt;&amp;gt; Build the coolest Linux based applications with Moblin SDK &amp; win &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; great
&lt;br&gt;&amp;gt;&amp;gt; prizes
&lt;br&gt;&amp;gt;&amp;gt; Grand prize is a trip for two to an Open Source event anywhere in the
&lt;br&gt;&amp;gt;&amp;gt; world
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; Phpwebsite-developers mailing list
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18802364&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------- 
&lt;br&gt;&amp;gt; ---
&lt;br&gt;&amp;gt; This SF.Net email is sponsored by the Moblin Your Move Developer's &amp;nbsp;
&lt;br&gt;&amp;gt; challenge
&lt;br&gt;&amp;gt; Build the coolest Linux based applications with Moblin SDK &amp; win &amp;nbsp;
&lt;br&gt;&amp;gt; great prizes
&lt;br&gt;&amp;gt; Grand prize is a trip for two to an Open Source event anywhere in &amp;nbsp;
&lt;br&gt;&amp;gt; the world
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Phpwebsite-developers mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18802364&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Phpwebsite-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18802364&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/PhpWebsite---Dev-f663.html&quot; embed=&quot;fixTarget[663]&quot; target=&quot;_top&quot; &gt;PhpWebsite - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Error-with-recent-changes-to-Key-class-tp18799535p18802364.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18802217</id>
	<title>Re: Error with recent changes to Key class</title>
	<published>2008-08-03T13:24:46Z</published>
	<updated>2008-08-03T13:24:46Z</updated>
	<author>
		<name>Matthew McNaney</name>
	</author>
	<content type="html">I am in the process of updating to the php 5 standard. I haven't tested
&lt;br&gt;much yet. Change _error from private to public.
&lt;br&gt;&lt;br&gt;Matt
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'm not sure what's ultimately causing this, but this is what I am
&lt;br&gt;&amp;gt; getting after updating to svn 6093
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Fatal error: Cannot access private property Key::$_error in /home/
&lt;br&gt;&amp;gt; phpws_svn/mod/comments/class/Comments.php on line 35
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I can access my control panel directly, just not the homepage. I'm
&lt;br&gt;&amp;gt; trying to narrow it down now
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; verdon
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -------------------------------------------------------------------------
&lt;br&gt;&amp;gt; This SF.Net email is sponsored by the Moblin Your Move Developer's
&lt;br&gt;&amp;gt; challenge
&lt;br&gt;&amp;gt; Build the coolest Linux based applications with Moblin SDK &amp; win great
&lt;br&gt;&amp;gt; prizes
&lt;br&gt;&amp;gt; Grand prize is a trip for two to an Open Source event anywhere in the
&lt;br&gt;&amp;gt; world
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Phpwebsite-developers mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18802217&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Phpwebsite-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18802217&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/PhpWebsite---Dev-f663.html&quot; embed=&quot;fixTarget[663]&quot; target=&quot;_top&quot; &gt;PhpWebsite - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Error-with-recent-changes-to-Key-class-tp18799535p18802217.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18799535</id>
	<title>Error with recent changes to Key class</title>
	<published>2008-08-03T08:23:58Z</published>
	<updated>2008-08-03T08:23:58Z</updated>
	<author>
		<name>Verdon Vaillancourt-2</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;I'm not sure what's ultimately causing this, but this is what I am &amp;nbsp;
&lt;br&gt;getting after updating to svn 6093
&lt;br&gt;&lt;br&gt;Fatal error: Cannot access private property Key::$_error in /home/ 
&lt;br&gt;phpws_svn/mod/comments/class/Comments.php on line 35
&lt;br&gt;&lt;br&gt;I can access my control panel directly, just not the homepage. I'm &amp;nbsp;
&lt;br&gt;trying to narrow it down now
&lt;br&gt;&lt;br&gt;verdon
&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Phpwebsite-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18799535&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/PhpWebsite---Dev-f663.html&quot; embed=&quot;fixTarget[663]&quot; target=&quot;_top&quot; &gt;PhpWebsite - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Error-with-recent-changes-to-Key-class-tp18799535p18799535.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18744836</id>
	<title>Re: phpWebSite 1.6.0</title>
	<published>2008-07-30T16:23:04Z</published>
	<updated>2008-07-30T16:23:04Z</updated>
	<author>
		<name>Kris Bates</name>
	</author>
	<content type="html">Hey Matt-
&lt;br&gt;&lt;br&gt;After my visit with you last month, I can't wait to see 1.6 released! I've got an install of 1.5.2 running on ipoditize.com for starters, but am itching for some of the new stuff I got a chance to see ;-) Thanks again - so much - for the tour, and I'll probably bug you again in September when I'm back in NC for a week.
&lt;br&gt;&lt;br&gt;Bring on the upgrades! We'll survive with php5 ;-)
&lt;br&gt;-Kris
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Matthew McNaney wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;The next version of phpWebSite will be a doozie. Lots of new features, 
&lt;br&gt;new UI improvements, bug fixes, and a new module or two.
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/PhpWebsite---Dev-f663.html&quot; embed=&quot;fixTarget[663]&quot; target=&quot;_top&quot; &gt;PhpWebsite - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/phpWebSite-1.6.0-tp18721055p18744836.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18721055</id>
	<title>phpWebSite 1.6.0</title>
	<published>2008-07-29T13:48:56Z</published>
	<updated>2008-07-29T13:48:56Z</updated>
	<author>
		<name>Matthew McNaney</name>
	</author>
	<content type="html">Hi again,
&lt;br&gt;&lt;br&gt;The next version of phpWebSite will be a doozie. Lots of new features, 
&lt;br&gt;new UI improvements, bug fixes, and a new module or two.
&lt;br&gt;&lt;br&gt;The second digit version increment will also be the result of the 
&lt;br&gt;following heartbreaking news : no more PHP 4 support.
&lt;br&gt;&lt;br&gt;We've tried to keep PHP 4 afloat on the ice floe but it is time to let 
&lt;br&gt;it sink under the icy waters. We'll always have the cargo hold...
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Matthew McNaney
&lt;br&gt;Electronic Student Services
&lt;br&gt;Appalachian State University
&lt;br&gt;Ext. 6493
&lt;br&gt;&lt;a href=&quot;http://ess.appstate.edu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ess.appstate.edu&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://phpwebsite.appstate.edu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://phpwebsite.appstate.edu&lt;/a&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Phpwebsite-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18721055&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/PhpWebsite---Dev-f663.html&quot; embed=&quot;fixTarget[663]&quot; target=&quot;_top&quot; &gt;PhpWebsite - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/phpWebSite-1.6.0-tp18721055p18721055.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18711860</id>
	<title>mod_rewrite change</title>
	<published>2008-07-29T05:54:30Z</published>
	<updated>2008-07-29T05:54:30Z</updated>
	<author>
		<name>Matthew McNaney</name>
	</author>
	<content type="html">Good morning,
&lt;br&gt;&lt;br&gt;A couple of developers have asked for a change in mod_rewrite. Let me 
&lt;br&gt;show you the old and new methods.
&lt;br&gt;&lt;br&gt;Take this link:
&lt;br&gt;index.php?module=uberpage&amp;id=6&amp;pg=13&amp;flavor=maplenut
&lt;br&gt;&lt;br&gt;Currently phpWebSite would turn it into the following:
&lt;br&gt;&lt;br&gt;uberpage/6/13/maplenut
&lt;br&gt;&lt;br&gt;Nice and short, but no information on the value indexes. So you would 
&lt;br&gt;need to do the following in your uberpage module:
&lt;br&gt;&lt;br&gt;$_GET['var1'] = $id;
&lt;br&gt;$_GET['var2'] = $page;
&lt;br&gt;$_GET['var3'] = $flavor;
&lt;br&gt;&lt;br&gt;Otherwise you could recast the vars into the GET and REQUEST global var 
&lt;br&gt;directly:
&lt;br&gt;&lt;br&gt;$_GET['id'] = &amp; $_GET['var1'];
&lt;br&gt;etc.
&lt;br&gt;&lt;br&gt;You may also have to test for $_GET['var1'] using isset or test for 
&lt;br&gt;MOD_REWRITE_ENABLED.
&lt;br&gt;&lt;br&gt;In retrospect, probably not the most efficient method. Although I 
&lt;br&gt;considered the upcoming change initially, I was trying to keep the url 
&lt;br&gt;length down. In the end, I think I erred.
&lt;br&gt;&lt;br&gt;Here is the requested change. Take the same link:
&lt;br&gt;index.php?module=uberpage&amp;id=6&amp;pg=13&amp;flavor=maplenut
&lt;br&gt;&lt;br&gt;The new format would be:
&lt;br&gt;uberpage/id/6/pg/13/flavor/maplenut
&lt;br&gt;&lt;br&gt;So now the link is longer but we have a more descriptive url. The 
&lt;br&gt;indexes are obviously paired with their value. The advantage of this 
&lt;br&gt;method is that it easily breaks down into $_GET values. The mod 
&lt;br&gt;developer doesn't need to parse $_GET['var(n)']. They will program the 
&lt;br&gt;same regardless of whether MOD_REWRITE_ENABLED is on or not.
&lt;br&gt;&lt;br&gt;I am experimenting on adding this change directly to the linkAddress 
&lt;br&gt;function. Therefore moduleLink and secureLink will automatically inherit 
&lt;br&gt;the change. This will make ALL links use the new style. In my testing, 
&lt;br&gt;admin links, that once ignored the mod rewrite, now work with mod_rewrite.
&lt;br&gt;&lt;br&gt;That said, all is not chocolate and roses. First, PageSmith, Block, 
&lt;br&gt;Blog, Menu and other content modules will need to check for the old link 
&lt;br&gt;versions in the database and fix them. Third party developers will need 
&lt;br&gt;to adjust as well. This may effect those without .htaccess or annoy IIS 
&lt;br&gt;admins further. Still, they will be able to disable MOD_REWRITE_ENABLED 
&lt;br&gt;as always, so they shouldn't be worse off than the previous version.
&lt;br&gt;&lt;br&gt;Respond here or in IRC with your concerns. I will be adding the changes 
&lt;br&gt;to subversion in the next couple of days. I hope some of you will have 
&lt;br&gt;time to test.
&lt;br&gt;&lt;br&gt;Thanks for your support and I appreciate the devs who brought this to my 
&lt;br&gt;attention.
&lt;br&gt;&lt;br&gt;Matt
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Matthew McNaney
&lt;br&gt;Electronic Student Services
&lt;br&gt;Appalachian State University
&lt;br&gt;Ext. 6493
&lt;br&gt;&lt;a href=&quot;http://ess.appstate.edu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ess.appstate.edu&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://phpwebsite.appstate.edu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://phpwebsite.appstate.edu&lt;/a&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Phpwebsite-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18711860&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/PhpWebsite---Dev-f663.html&quot; embed=&quot;fixTarget[663]&quot; target=&quot;_top&quot; &gt;PhpWebsite - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/mod_rewrite-change-tp18711860p18711860.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17678054</id>
	<title>phpwebsite 1.5.2 RC available</title>
	<published>2008-06-05T12:37:31Z</published>
	<updated>2008-06-05T12:37:31Z</updated>
	<author>
		<name>Matthew McNaney</name>
	</author>
	<content type="html">Good afternoon,
&lt;br&gt;&lt;br&gt;In case anyone wishes to test, I have uploaded a new RC.
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://phpwebsite.appstate.edu/downloads/rc/phpwebsite_1_5_2_RC.tar.gz&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://phpwebsite.appstate.edu/downloads/rc/phpwebsite_1_5_2_RC.tar.gz&lt;/a&gt;&lt;br&gt;&lt;br&gt;Feedback is appreciated.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Matt
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Matthew McNaney
&lt;br&gt;Electronic Student Services
&lt;br&gt;Appalachian State University
&lt;br&gt;Ext. 6493
&lt;br&gt;&lt;a href=&quot;http://ess.appstate.edu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ess.appstate.edu&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://phpwebsite.appstate.edu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://phpwebsite.appstate.edu&lt;/a&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Check out the new SourceForge.net Marketplace.
&lt;br&gt;It's the best place to buy or sell services for
&lt;br&gt;just about anything Open Source.
&lt;br&gt;&lt;a href=&quot;http://sourceforge.net/services/buy/index.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sourceforge.net/services/buy/index.php&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Phpwebsite-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17678054&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/PhpWebsite---Dev-f663.html&quot; embed=&quot;fixTarget[663]&quot; target=&quot;_top&quot; &gt;PhpWebsite - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/phpwebsite-1.5.2-RC-available-tp17678054p17678054.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-16701719</id>
	<title>Re: phpWebSite 1.x documentation</title>
	<published>2008-04-15T05:58:51Z</published>
	<updated>2008-04-15T05:58:51Z</updated>
	<author>
		<name>Verdon Vaillancourt-2</name>
	</author>
	<content type="html">Hi Alex,
&lt;br&gt;&lt;br&gt;I've only had a chance to look through a few sections and so far, it &amp;nbsp;
&lt;br&gt;looks like an awesome start. This will be a good resource and your &amp;nbsp;
&lt;br&gt;effort is much appreciated. I'll try to kick the tires a little more &amp;nbsp;
&lt;br&gt;in the weeks to follow, but so far, excellent!
&lt;br&gt;&lt;br&gt;Rgds,
&lt;br&gt;verdon
&lt;br&gt;&lt;br&gt;&lt;br&gt;On 14-Apr-08, at 1:36 PM, matt wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'm Alex Yokel. I've been working at Electronic Student Services this
&lt;br&gt;&amp;gt; semester creating documentation for phpWebSite. I have created a &amp;nbsp;
&lt;br&gt;&amp;gt; wiki to
&lt;br&gt;&amp;gt; help guide users through the its use.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The wiki is close to completion. Please have a look and let us know &amp;nbsp;
&lt;br&gt;&amp;gt; what
&lt;br&gt;&amp;gt; you find anything missing, confusing or just seems wrong. As we ready
&lt;br&gt;&amp;gt; for an official release, your input will definitely be helpful.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; You can find the phpWebSite user documentation wiki here:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://rockhopper.appstate.edu/single/phpwebsite/wiki/UserDocs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rockhopper.appstate.edu/single/phpwebsite/wiki/UserDocs&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt; Alex
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------- 
&lt;br&gt;&amp;gt; ---
&lt;br&gt;&amp;gt; This SF.net email is sponsored by the 2008 JavaOne(SM) Conference
&lt;br&gt;&amp;gt; Don't miss this year's exciting event. There's still time to save &amp;nbsp;
&lt;br&gt;&amp;gt; $100.
&lt;br&gt;&amp;gt; Use priority code J8TL2D2.
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://ad.doubleclick.net/clk;198757673;13503038;p?http://&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;198757673;13503038;p?http://&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&amp;gt; java.sun.com/javaone
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Phpwebsite-developers mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=16701719&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
&lt;br&gt;Don't miss this year's exciting event. There's still time to save $100. 
&lt;br&gt;Use priority code J8TL2D2. 
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Phpwebsite-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=16701719&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/PhpWebsite---Dev-f663.html&quot; embed=&quot;fixTarget[663]&quot; target=&quot;_top&quot; &gt;PhpWebsite - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/phpWebSite-1.x-documentation-tp16685073p16701719.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-16685073</id>
	<title>phpWebSite 1.x documentation</title>
	<published>2008-04-14T10:36:15Z</published>
	<updated>2008-04-14T10:36:15Z</updated>
	<author>
		<name>Matthew McNaney</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;I'm Alex Yokel. I've been working at Electronic Student Services this
&lt;br&gt;semester creating documentation for phpWebSite. I have created a wiki to 
&lt;br&gt;help guide users through the its use.
&lt;br&gt;&lt;br&gt;The wiki is close to completion. Please have a look and let us know what 
&lt;br&gt;you find anything missing, confusing or just seems wrong. As we ready 
&lt;br&gt;for an official release, your input will definitely be helpful.
&lt;br&gt;&lt;br&gt;You can find the phpWebSite user documentation wiki here:
&lt;br&gt;&lt;a href=&quot;http://rockhopper.appstate.edu/single/phpwebsite/wiki/UserDocs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rockhopper.appstate.edu/single/phpwebsite/wiki/UserDocs&lt;/a&gt;&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Alex
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
&lt;br&gt;Don't miss this year's exciting event. There's still time to save $100. 
&lt;br&gt;Use priority code J8TL2D2. 
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Phpwebsite-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=16685073&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/PhpWebsite---Dev-f663.html&quot; embed=&quot;fixTarget[663]&quot; target=&quot;_top&quot; &gt;PhpWebsite - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/phpWebSite-1.x-documentation-tp16685073p16685073.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-16057194</id>
	<title>phpWebSite 1.5.0 RC</title>
	<published>2008-03-14T10:46:34Z</published>
	<updated>2008-03-14T10:46:34Z</updated>
	<author>
		<name>Matthew McNaney</name>
	</author>
	<content type="html">Good day,
&lt;br&gt;&lt;br&gt;RC is an improper title really since I haven't done extensive update 
&lt;br&gt;testing from 1.4.0. As always, do not update live sites.
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://phpwebsite.appstate.edu/downloads/rc/phpwebsite_1_5_0_RC.tar.gz&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://phpwebsite.appstate.edu/downloads/rc/phpwebsite_1_5_0_RC.tar.gz&lt;/a&gt;&lt;br&gt;&lt;br&gt;A full feature list will be available on proper release. The main 
&lt;br&gt;feature of 1.5.0 is a rewriting of File Cabinet. As such, I had to forgo 
&lt;br&gt;many RFEs on Sourceforge. I apologize, but our experience has been the 
&lt;br&gt;FC update was needed greatly.
&lt;br&gt;&lt;br&gt;Special thanks to Verdon who helped test File Cabinet in its new 
&lt;br&gt;incarnation.
&lt;br&gt;&lt;br&gt;Here are some features off the top of my head:
&lt;br&gt;&lt;br&gt;- Comment reporting with punish menu (ip banning, account locking)
&lt;br&gt;- New, more flexible mod_rewrite method.
&lt;br&gt;- File Cabinet allows posting images, media, and documents to any place
&lt;br&gt;&amp;nbsp; &amp;nbsp;that was previously using it for images.
&lt;br&gt;- Access ip banning independent from .htaccess
&lt;br&gt;- PageSmith has dynamic template folders
&lt;br&gt;- Better sheet control in Signup module
&lt;br&gt;- lots and lots of bug fixes
&lt;br&gt;&lt;br&gt;Thanks and please email me with problems or questions.
&lt;br&gt;Matt
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Matthew McNaney
&lt;br&gt;Electronic Student Services
&lt;br&gt;Appalachian State University
&lt;br&gt;Ext. 6493
&lt;br&gt;&lt;a href=&quot;http://ess.appstate.edu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ess.appstate.edu&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://phpwebsite.appstate.edu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://phpwebsite.appstate.edu&lt;/a&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Microsoft
&lt;br&gt;Defy all challenges. Microsoft(R) Visual Studio 2008.
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Phpwebsite-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=16057194&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/PhpWebsite---Dev-f663.html&quot; embed=&quot;fixTarget[663]&quot; target=&quot;_top&quot; &gt;PhpWebsite - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/phpWebSite-1.5.0-RC-tp16057194p16057194.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-15435880</id>
	<title>Re: Access changes</title>
	<published>2008-02-12T07:39:22Z</published>
	<updated>2008-02-12T07:39:22Z</updated>
	<author>
		<name>Verdon Vaillancourt-2</name>
	</author>
	<content type="html">Thanks :)
&lt;br&gt;&lt;br&gt;On 12-Feb-08, at 10:23 AM, matt wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; This is what I am doing in Blog (slimmed down):
&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Microsoft
&lt;br&gt;Defy all challenges. Microsoft(R) Visual Studio 2008.
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Phpwebsite-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=15435880&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/PhpWebsite---Dev-f663.html&quot; embed=&quot;fixTarget[663]&quot; target=&quot;_top&quot; &gt;PhpWebsite - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Access-changes-tp15434928p15435880.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-15435735</id>
	<title>Re: Access changes</title>
	<published>2008-02-12T07:23:10Z</published>
	<updated>2008-02-12T07:23:10Z</updated>
	<author>
		<name>Matthew McNaney</name>
	</author>
	<content type="html">Verdon Vaillancourt wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; So,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; In a simple case then, like this from my index.php file...
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; PHPWS_Core::initModClass('podcaster', 'Podcaster.php');
&lt;br&gt;&amp;gt; $podcaster = new Podcaster;
&lt;br&gt;&amp;gt; if (isset($_REQUEST['aop'])) {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;$podcaster-&amp;gt;adminMenu();
&lt;br&gt;&amp;gt; } elseif (isset($_REQUEST['uop'])) {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;$podcaster-&amp;gt;userMenu();
&lt;br&gt;&amp;gt; } elseif (isset($_REQUEST['id'])) {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;$podcaster-&amp;gt;userMenu('view_channel');
&lt;br&gt;&amp;gt; } else {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;PHPWS_Core::home();
&lt;br&gt;&amp;gt; }
&lt;/div&gt;&lt;br&gt;&amp;nbsp;&amp;gt; ... all I need to do is change $_REQUEST['id'] to $_REQUEST['var1']
&lt;br&gt;&lt;br&gt;This is what I am doing in Blog (slimmed down):
&lt;br&gt;&lt;br&gt;-------------------------------------
&lt;br&gt;if (isset($_GET['var1'])) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Blog_User::fillInForward();
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;if (isset($_REQUEST['blog_id'])) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;$blog = new Blog($_REQUEST['blog_id']);
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;function fillInForward() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;$_REQUEST['blog_id'] = (int)$_GET['var1'];
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;--------------------------------------
&lt;br&gt;&lt;br&gt;The reason is that the blog_id may be sent from other places than just a 
&lt;br&gt;straight up call to the item.
&lt;br&gt;&lt;br&gt;This method would prevent you from:
&lt;br&gt;1) having to fix any other links you have where you are passing 'id'
&lt;br&gt;2) having to check for var1 and/or id
&lt;br&gt;3) prevent extra processes if mod_rewrite is not being used
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;gt; How would this be changed?
&lt;br&gt;&amp;gt; PHPWS_Text::rewriteLink($channel-&amp;gt;title, 'podcaster', $this- 
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;gt;channel_id);
&lt;br&gt;&lt;br&gt;It would be the same. It would return:
&lt;br&gt;&lt;br&gt;$channel-&amp;gt;title = 'sample';
&lt;br&gt;$this-&amp;gt;channel_id = 4;
&lt;br&gt;&lt;br&gt;&amp;lt;a href=&amp;quot;index.php?module=podcaster&amp;var1=4&amp;quot;&amp;gt;sample&amp;lt;/a&amp;gt;
&lt;br&gt;&lt;br&gt;But now you could call:
&lt;br&gt;&lt;br&gt;PHPWS_Text::rewriteLink($channel-&amp;gt;title,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;'podcaster',
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;$this-&amp;gt;channel_id,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;$this-&amp;gt;page_id,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;$this-&amp;gt;section_id,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $this-&amp;gt;etc_id);
&lt;br&gt;&lt;br&gt;You can have as many vars as you need.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Matt
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt; verdon
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; On 12-Feb-08, at 9:47 AM, matt wrote:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; Good day,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; phpWebSite 1.5.0 will change the way it handles mod_rewrite. The
&lt;br&gt;&amp;gt;&amp;gt; .htaccess file will filter all requests that do not match a &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; directory or
&lt;br&gt;&amp;gt;&amp;gt; file to the index.php file. The index.php file includes a new core &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; file
&lt;br&gt;&amp;gt;&amp;gt; named Forward.php. phpWebSite then detects if the mod_rewrite &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; format is
&lt;br&gt;&amp;gt;&amp;gt; getting used. If so, it writes the following variables:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; $_REQUEST['module'] = $variable_1;
&lt;br&gt;&amp;gt;&amp;gt; $_GET['var1'] &amp;nbsp; &amp;nbsp; &amp;nbsp; = $variable_2;
&lt;br&gt;&amp;gt;&amp;gt; ...
&lt;br&gt;&amp;gt;&amp;gt; $_GET['var' . $n] &amp;nbsp; = ${'variable_' . $n};
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; So this address:
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://phpwebsite.appstate.edu/blog/2008/1/4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://phpwebsite.appstate.edu/blog/2008/1/4&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Will create:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; $_REQUEST['module'] = 'blog';
&lt;br&gt;&amp;gt;&amp;gt; $_GET['var1'] = 2008;
&lt;br&gt;&amp;gt;&amp;gt; $_GET['var2'] = 1;
&lt;br&gt;&amp;gt;&amp;gt; $_GET['var3'] = 4;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; The updated blog module looks for this and changes the vars into year,
&lt;br&gt;&amp;gt;&amp;gt; month, and day for a new viewing preference.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Access will no longer store the shortcuts in the .htaccess file.
&lt;br&gt;&amp;gt;&amp;gt; Instead, if the only variable passed is not a module, it is assumed to
&lt;br&gt;&amp;gt;&amp;gt; be a title. This will be passed to Access which will pull the
&lt;br&gt;&amp;gt;&amp;gt; appropriate key and then fill in the $_GET variable with the &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; appropriate
&lt;br&gt;&amp;gt;&amp;gt; module and overwrite var1. This will be done instead of a forward to
&lt;br&gt;&amp;gt;&amp;gt; prevent losing the url.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; In the long run, this will allow module creators to mold mod_rewrites
&lt;br&gt;&amp;gt;&amp;gt; however they like. In the meantime, you will need to change your 'id'
&lt;br&gt;&amp;gt;&amp;gt; and 'page' checks to 'var1' and 'var2'. This change will also &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; affect the
&lt;br&gt;&amp;gt;&amp;gt; rewriteLink function in Text.php.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; The next release of phpWebSite will go through an RC period. &amp;nbsp;This
&lt;br&gt;&amp;gt;&amp;gt; should give you time to adjust your modules for this change and the
&lt;br&gt;&amp;gt;&amp;gt; updated File Cabinet. If you have any concerns, please reply to &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; this list.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt;&amp;gt; Matt
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; -- 
&lt;br&gt;&amp;gt;&amp;gt; Matthew McNaney
&lt;br&gt;&amp;gt;&amp;gt; Electronic Student Services
&lt;br&gt;&amp;gt;&amp;gt; Appalachian State University
&lt;br&gt;&amp;gt;&amp;gt; Ext. 6493
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://ess.appstate.edu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ess.appstate.edu&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://phpwebsite.appstate.edu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://phpwebsite.appstate.edu&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ---------------------------------------------------------------------- 
&lt;br&gt;&amp;gt;&amp;gt; ---
&lt;br&gt;&amp;gt;&amp;gt; This SF.net email is sponsored by: Microsoft
&lt;br&gt;&amp;gt;&amp;gt; Defy all challenges. Microsoft(R) Visual Studio 2008.
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; Phpwebsite-developers mailing list
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=15435735&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; -------------------------------------------------------------------------
&lt;br&gt;&amp;gt; This SF.net email is sponsored by: Microsoft
&lt;br&gt;&amp;gt; Defy all challenges. Microsoft(R) Visual Studio 2008.
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Phpwebsite-developers mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=15435735&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;Matthew McNaney
&lt;br&gt;Electronic Student Services
&lt;br&gt;Appalachian State University
&lt;br&gt;Ext. 6493
&lt;br&gt;&lt;a href=&quot;http://ess.appstate.edu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ess.appstate.edu&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://phpwebsite.appstate.edu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://phpwebsite.appstate.edu&lt;/a&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Microsoft
&lt;br&gt;Defy all challenges. Microsoft(R) Visual Studio 2008.
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Phpwebsite-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=15435735&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/PhpWebsite---Dev-f663.html&quot; embed=&quot;fixTarget[663]&quot; target=&quot;_top&quot; &gt;PhpWebsite - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Access-changes-tp15434928p15435735.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-15435258</id>
	<title>Re: Access changes</title>
	<published>2008-02-12T07:12:21Z</published>
	<updated>2008-02-12T07:12:21Z</updated>
	<author>
		<name>Verdon Vaillancourt-3</name>
	</author>
	<content type="html">So,
&lt;br&gt;&lt;br&gt;In a simple case then, like this from my index.php file...
&lt;br&gt;&lt;br&gt;PHPWS_Core::initModClass('podcaster', 'Podcaster.php');
&lt;br&gt;$podcaster = new Podcaster;
&lt;br&gt;if (isset($_REQUEST['aop'])) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;$podcaster-&amp;gt;adminMenu();
&lt;br&gt;} elseif (isset($_REQUEST['uop'])) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;$podcaster-&amp;gt;userMenu();
&lt;br&gt;} elseif (isset($_REQUEST['id'])) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;$podcaster-&amp;gt;userMenu('view_channel');
&lt;br&gt;} else {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;PHPWS_Core::home();
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;... all I need to do is change $_REQUEST['id'] to $_REQUEST['var1']
&lt;br&gt;&lt;br&gt;&lt;br&gt;How would this be changed?
&lt;br&gt;PHPWS_Text::rewriteLink($channel-&amp;gt;title, 'podcaster', $this- 
&lt;br&gt;&amp;nbsp;&amp;gt;channel_id);
&lt;br&gt;&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;verdon
&lt;br&gt;&lt;br&gt;&lt;br&gt;On 12-Feb-08, at 9:47 AM, matt wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Good day,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; phpWebSite 1.5.0 will change the way it handles mod_rewrite. The
&lt;br&gt;&amp;gt; .htaccess file will filter all requests that do not match a &amp;nbsp;
&lt;br&gt;&amp;gt; directory or
&lt;br&gt;&amp;gt; file to the index.php file. The index.php file includes a new core &amp;nbsp;
&lt;br&gt;&amp;gt; file
&lt;br&gt;&amp;gt; named Forward.php. phpWebSite then detects if the mod_rewrite &amp;nbsp;
&lt;br&gt;&amp;gt; format is
&lt;br&gt;&amp;gt; getting used. If so, it writes the following variables:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; $_REQUEST['module'] = $variable_1;
&lt;br&gt;&amp;gt; $_GET['var1'] &amp;nbsp; &amp;nbsp; &amp;nbsp; = $variable_2;
&lt;br&gt;&amp;gt; ...
&lt;br&gt;&amp;gt; $_GET['var' . $n] &amp;nbsp; = ${'variable_' . $n};
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; So this address:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://phpwebsite.appstate.edu/blog/2008/1/4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://phpwebsite.appstate.edu/blog/2008/1/4&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Will create:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; $_REQUEST['module'] = 'blog';
&lt;br&gt;&amp;gt; $_GET['var1'] = 2008;
&lt;br&gt;&amp;gt; $_GET['var2'] = 1;
&lt;br&gt;&amp;gt; $_GET['var3'] = 4;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The updated blog module looks for this and changes the vars into year,
&lt;br&gt;&amp;gt; month, and day for a new viewing preference.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Access will no longer store the shortcuts in the .htaccess file.
&lt;br&gt;&amp;gt; Instead, if the only variable passed is not a module, it is assumed to
&lt;br&gt;&amp;gt; be a title. This will be passed to Access which will pull the
&lt;br&gt;&amp;gt; appropriate key and then fill in the $_GET variable with the &amp;nbsp;
&lt;br&gt;&amp;gt; appropriate
&lt;br&gt;&amp;gt; module and overwrite var1. This will be done instead of a forward to
&lt;br&gt;&amp;gt; prevent losing the url.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; In the long run, this will allow module creators to mold mod_rewrites
&lt;br&gt;&amp;gt; however they like. In the meantime, you will need to change your 'id'
&lt;br&gt;&amp;gt; and 'page' checks to 'var1' and 'var2'. This change will also &amp;nbsp;
&lt;br&gt;&amp;gt; affect the
&lt;br&gt;&amp;gt; rewriteLink function in Text.php.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The next release of phpWebSite will go through an RC period. &amp;nbsp;This
&lt;br&gt;&amp;gt; should give you time to adjust your modules for this change and the
&lt;br&gt;&amp;gt; updated File Cabinet. If you have any concerns, please reply to &amp;nbsp;
&lt;br&gt;&amp;gt; this list.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt; Matt
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; Matthew McNaney
&lt;br&gt;&amp;gt; Electronic Student Services
&lt;br&gt;&amp;gt; Appalachian State University
&lt;br&gt;&amp;gt; Ext. 6493
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://ess.appstate.edu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ess.appstate.edu&lt;/a&gt;&lt;br&gt;&amp;gt; &lt;a href=&quot;http://phpwebsite.appstate.edu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://phpwebsite.appstate.edu&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------- 
&lt;br&gt;&amp;gt; ---
&lt;br&gt;&amp;gt; This SF.net email is sponsored by: Microsoft
&lt;br&gt;&amp;gt; Defy all challenges. Microsoft(R) Visual Studio 2008.
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Phpwebsite-developers mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=15435258&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Microsoft
&lt;br&gt;Defy all challenges. Microsoft(R) Visual Studio 2008.
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Phpwebsite-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=15435258&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/PhpWebsite---Dev-f663.html&quot; embed=&quot;fixTarget[663]&quot; target=&quot;_top&quot; &gt;PhpWebsite - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Access-changes-tp15434928p15435258.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-15434928</id>
	<title>Access changes</title>
	<published>2008-02-12T06:47:38Z</published>
	<updated>2008-02-12T06:47:38Z</updated>
	<author>
		<name>Matthew McNaney</name>
	</author>
	<content type="html">Good day,
&lt;br&gt;&lt;br&gt;phpWebSite 1.5.0 will change the way it handles mod_rewrite. The 
&lt;br&gt;.htaccess file will filter all requests that do not match a directory or 
&lt;br&gt;file to the index.php file. The index.php file includes a new core file 
&lt;br&gt;named Forward.php. phpWebSite then detects if the mod_rewrite format is 
&lt;br&gt;getting used. If so, it writes the following variables:
&lt;br&gt;&lt;br&gt;$_REQUEST['module'] = $variable_1;
&lt;br&gt;$_GET['var1'] &amp;nbsp; &amp;nbsp; &amp;nbsp; = $variable_2;
&lt;br&gt;...
&lt;br&gt;$_GET['var' . $n] &amp;nbsp; = ${'variable_' . $n};
&lt;br&gt;&lt;br&gt;&lt;br&gt;So this address:
&lt;br&gt;&lt;a href=&quot;http://phpwebsite.appstate.edu/blog/2008/1/4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://phpwebsite.appstate.edu/blog/2008/1/4&lt;/a&gt;&lt;br&gt;&lt;br&gt;Will create:
&lt;br&gt;&lt;br&gt;$_REQUEST['module'] = 'blog';
&lt;br&gt;$_GET['var1'] = 2008;
&lt;br&gt;$_GET['var2'] = 1;
&lt;br&gt;$_GET['var3'] = 4;
&lt;br&gt;&lt;br&gt;The updated blog module looks for this and changes the vars into year, 
&lt;br&gt;month, and day for a new viewing preference.
&lt;br&gt;&lt;br&gt;Access will no longer store the shortcuts in the .htaccess file. 
&lt;br&gt;Instead, if the only variable passed is not a module, it is assumed to 
&lt;br&gt;be a title. This will be passed to Access which will pull the 
&lt;br&gt;appropriate key and then fill in the $_GET variable with the appropriate 
&lt;br&gt;module and overwrite var1. This will be done instead of a forward to 
&lt;br&gt;prevent losing the url.
&lt;br&gt;&lt;br&gt;In the long run, this will allow module creators to mold mod_rewrites 
&lt;br&gt;however they like. In the meantime, you will need to change your 'id' 
&lt;br&gt;and 'page' checks to 'var1' and 'var2'. This change will also affect the 
&lt;br&gt;rewriteLink function in Text.php.
&lt;br&gt;&lt;br&gt;The next release of phpWebSite will go through an RC period. &amp;nbsp;This 
&lt;br&gt;should give you time to adjust your modules for this change and the 
&lt;br&gt;updated File Cabinet. If you have any concerns, please reply to this list.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Matt
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Matthew McNaney
&lt;br&gt;Electronic Student Services
&lt;br&gt;Appalachian State University
&lt;br&gt;Ext. 6493
&lt;br&gt;&lt;a href=&quot;http://ess.appstate.edu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ess.appstate.edu&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://phpwebsite.appstate.edu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://phpwebsite.appstate.edu&lt;/a&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Microsoft
&lt;br&gt;Defy all challenges. Microsoft(R) Visual Studio 2008.
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Phpwebsite-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=15434928&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/PhpWebsite---Dev-f663.html&quot; embed=&quot;fixTarget[663]&quot; target=&quot;_top&quot; &gt;PhpWebsite - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Access-changes-tp15434928p15434928.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-15364664</id>
	<title>Closing in on phpWebSite 1.5.0</title>
	<published>2008-02-08T13:42:07Z</published>
	<updated>2008-02-08T13:42:07Z</updated>
	<author>
		<name>Matthew McNaney</name>
	</author>
	<content type="html">Hey folks,
&lt;br&gt;&lt;br&gt;As the title states, I am trying to get a phpws 1.5.0 release. Included 
&lt;br&gt;within will be a huge update to the File Cabinet. It now features the 
&lt;br&gt;ability to add not only images, but random images, documents, and media 
&lt;br&gt;items as well.
&lt;br&gt;&lt;br&gt;Those who are stout of heart may want to try a subversion export and 
&lt;br&gt;install a test version. BE WARNED - I have yet to try an update.
&lt;br&gt;&lt;br&gt;DON'T UPDATE YOUR PRODUCTION SITE!
&lt;br&gt;&lt;br&gt;There will be more changes to come, but File Cabinet was the major 
&lt;br&gt;hurdle. Feedback would be appreciated.
&lt;br&gt;&lt;br&gt;I'd also like to thank Verdon Vaillancourt for helping test File Cabinet 
&lt;br&gt;and offer suggestions.
&lt;br&gt;&lt;br&gt;Have a good weekend,
&lt;br&gt;Matt
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Matthew McNaney
&lt;br&gt;Electronic Student Services
&lt;br&gt;Appalachian State University
&lt;br&gt;Ext. 6493
&lt;br&gt;&lt;a href=&quot;http://ess.appstate.edu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ess.appstate.edu&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://phpwebsite.appstate.edu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://phpwebsite.appstate.edu&lt;/a&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Microsoft
&lt;br&gt;Defy all challenges. Microsoft(R) Visual Studio 2008.
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Phpwebsite-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=15364664&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/PhpWebsite---Dev-f663.html&quot; embed=&quot;fixTarget[663]&quot; target=&quot;_top&quot; &gt;PhpWebsite - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Closing-in-on-phpWebSite-1.5.0-tp15364664p15364664.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-15111760</id>
	<title>Another WYSIWYG tool</title>
	<published>2008-01-26T11:39:36Z</published>
	<updated>2008-01-26T11:39:36Z</updated>
	<author>
		<name>Shaun Murray</name>
	</author>
	<content type="html">This one is a nice one...
&lt;br&gt;&lt;br&gt;NiceEdit - &lt;a href=&quot;http://nicedit.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://nicedit.com/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Less than 10KB compressed.
&lt;br&gt;&lt;br&gt;It does AJAX inline saves too...
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://nicedit.com/examples5.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://nicedit.com/examples5.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Shaun
&lt;br&gt;aegis design - &lt;a href=&quot;http://www.aegisdesign.co.uk&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.aegisdesign.co.uk&lt;/a&gt;&lt;br&gt;aegis hosting - &lt;a href=&quot;http://www.aegishosting.co.uk&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.aegishosting.co.uk&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Microsoft
&lt;br&gt;Defy all challenges. Microsoft(R) Visual Studio 2008.
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Phpwebsite-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=15111760&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/PhpWebsite---Dev-f663.html&quot; embed=&quot;fixTarget[663]&quot; target=&quot;_top&quot; &gt;PhpWebsite - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Another-WYSIWYG-tool-tp15111760p15111760.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-15134992</id>
	<title>Open ID support for phpwebsite</title>
	<published>2008-01-24T21:05:09Z</published>
	<updated>2008-01-24T21:05:09Z</updated>
	<author>
		<name>Bab Gogs</name>
	</author>
	<content type="html">&lt;html&gt;
&lt;head&gt;

&lt;/head&gt;
&lt;body class='hmmessage'&gt;Anyone working implementing Open ID into PHPWS?&lt;br&gt;&lt;br&gt;This will be very helpful as I ram 2/3 sites on phpws and then user registration wont be a problem..&lt;br&gt;&lt;br&gt;Beegee&lt;br&gt;&lt;br /&gt;&lt;hr /&gt;Post free auto ads on Yello Classifieds now!  &lt;a href='http://ss1.richmedia.in/recurl.asp?pid=255' target='_new' rel=&quot;nofollow&quot;&gt;Try it now!&lt;/a&gt;&lt;/body&gt;
&lt;/html&gt;&lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Microsoft
&lt;br&gt;Defy all challenges. Microsoft(R) Visual Studio 2008.
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Phpwebsite-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=15134992&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/PhpWebsite---Dev-f663.html&quot; embed=&quot;fixTarget[663]&quot; target=&quot;_top&quot; &gt;PhpWebsite - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/File-Cabinet-in-subversion-tp14933203p15134992.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-14933203</id>
	<title>File Cabinet in subversion</title>
	<published>2008-01-17T12:45:56Z</published>
	<updated>2008-01-17T12:45:56Z</updated>
	<author>
		<name>Matthew McNaney</name>
	</author>
	<content type="html">WARNING
&lt;br&gt;&lt;br&gt;Do NOT update to the newest copy of File Cabinet or Blog in subversion. 
&lt;br&gt;File Cabinet is getting a huge overhaul and will break your site if you 
&lt;br&gt;use it. I just needed to save my work so far.
&lt;br&gt;&lt;br&gt;Yes, yes, I should have opened a subversion branch but...
&lt;br&gt;&lt;br&gt;Hopefully I can stabilize it tomorrow.
&lt;br&gt;&lt;br&gt;Matt
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Matthew McNaney
&lt;br&gt;Electronic Student Services
&lt;br&gt;Appalachian State University
&lt;br&gt;Ext. 6493
&lt;br&gt;&lt;a href=&quot;http://ess.appstate.edu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ess.appstate.edu&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://phpwebsite.appstate.edu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://phpwebsite.appstate.edu&lt;/a&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Microsoft
&lt;br&gt;Defy all challenges. Microsoft(R) Visual Studio 2008.
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Phpwebsite-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=14933203&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/PhpWebsite---Dev-f663.html&quot; embed=&quot;fixTarget[663]&quot; target=&quot;_top&quot; &gt;PhpWebsite - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/File-Cabinet-in-subversion-tp14933203p14933203.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-13027598</id>
	<title>phpWebSite 1.3.2 soon</title>
	<published>2007-10-03T14:31:26Z</published>
	<updated>2007-10-03T14:31:26Z</updated>
	<author>
		<name>Matthew McNaney</name>
	</author>
	<content type="html">Hi all,
&lt;br&gt;&lt;br&gt;I am working on 1.3.2. for a release this week. The changes are attached.
&lt;br&gt;&lt;br&gt;It will include the previous module updates:
&lt;br&gt;&lt;a href=&quot;http://phpwebsite.appstate.edu/blog/2135&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://phpwebsite.appstate.edu/blog/2135&lt;/a&gt;&lt;br&gt;&lt;br&gt;If you get a chance, please bug test and send me an email if you find 
&lt;br&gt;something.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Matt
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Matthew McNaney
&lt;br&gt;Electronic Student Services
&lt;br&gt;Appalachian State University
&lt;br&gt;Ext. 6493
&lt;br&gt;&lt;a href=&quot;http://ess.appstate.edu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ess.appstate.edu&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://phpwebsite.appstate.edu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://phpwebsite.appstate.edu&lt;/a&gt;&lt;br&gt;&lt;br /&gt;Core 1.6.3
&lt;br&gt;+ Renamed registered column in registered table to
&lt;br&gt;&amp;nbsp; registered_to. Columns with the same name as the table don't work
&lt;br&gt;&amp;nbsp; with table prefixing. Changed in update.php.
&lt;br&gt;+ Added logDB to the 'assoc' select option.
&lt;br&gt;+ Changed the prefix search to try and prevent incorrect prefixing on
&lt;br&gt;&amp;nbsp; column names.
&lt;br&gt;+ Separated the resizeImage function from the cropping.
&lt;br&gt;&amp;nbsp; Now have three functions: scaleImage, cropPercent, and cropImage. 
&lt;br&gt;+ Added short document on database rules.
&lt;br&gt;+ Added Vietnamese translations courtesy of Dang Hoai Phuc.
&lt;br&gt;+ Added getGraph function to Batch
&lt;br&gt;+ Bug fix on _indexBy function. stacked variable wasn't getting set.
&lt;br&gt;+ Added createPrimaryKey function.
&lt;br&gt;+ Added define to Debug - DEITY_ONLY_TEST. If true, the test will only
&lt;br&gt;&amp;nbsp; echo if the user is a deity. This can help if you need to debug on a
&lt;br&gt;&amp;nbsp; live site.
&lt;br&gt;+ Added Dang and moved translators to their own section.
&lt;br&gt;+ added getHomeDir function to Convert class to help with branch
&lt;br&gt;&amp;nbsp; conversions.
&lt;br&gt;+ Added a no overwrite option to copy_directory function.
&lt;br&gt;+ Added a chmod command to the copy_directory function.
&lt;br&gt;+ Adding a check for the language.php file in setup as well as the
&lt;br&gt;&amp;nbsp; existance of the config/core/ directory.
&lt;br&gt;+ Changed allowView function in Key. Before the change, any user with
&lt;br&gt;&amp;nbsp; rights in the module could view an item regardless of the view
&lt;br&gt;&amp;nbsp; rights. Now, a user must have edit rights for that item or be on the
&lt;br&gt;&amp;nbsp; allowable groups to see the item.
&lt;br&gt;+ Key checks for duplicate keys before saving new rows.
&lt;br&gt;+ New error message for above.
&lt;br&gt;+ Tidying to key class.
&lt;br&gt;+ Added '#' to characters looked for in the bb.php filter.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Whodis 0.1.2
&lt;br&gt;+ Fixed: was missing whodis_filters table on install. Added check to
&lt;br&gt;&amp;nbsp; update.
&lt;br&gt;&lt;br&gt;Phatform 3.1.1
&lt;br&gt;+ Fixed bug #1785639. Unable to move elements up and down.
&lt;br&gt;+ Fixed bug #1785626. Unable to delete option set.
&lt;br&gt;+ Fixed bug #1785585. List archive would not function.
&lt;br&gt;+ Reduced control panel info.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Blog 1.6.1
&lt;br&gt;+ Added new file cabinet options for only showing module specific
&lt;br&gt;&amp;nbsp; folders.
&lt;br&gt;+ Added loadClass to getEntries to prevent loading Blog class until
&lt;br&gt;&amp;nbsp; needed.
&lt;br&gt;+ Blog resets cache on entry post or deletion.
&lt;br&gt;+ Approval tab no longer appears during restricted access.
&lt;br&gt;+ Added Vietnamese translation.
&lt;br&gt;+ 
&lt;br&gt;&lt;br&gt;&lt;br&gt;RSS 0.2.2
&lt;br&gt;+ Added line of code to Feed to prevent error on bad data.
&lt;br&gt;+ Added Vietnamese translation.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Users 2.4.5
&lt;br&gt;+ Added missing ability to activate and deactivate users.
&lt;br&gt;+ Added error page should deactivated user attempt to log in.
&lt;br&gt;+ Added link to settings page that re-registers module permissions.
&lt;br&gt;+ Moved Activate and Deactivate commands to the Active Yes/No column.
&lt;br&gt;+ Deities cannot be deactivated.
&lt;br&gt;+ Fixed Vietnamese language abbreviation.
&lt;br&gt;+ Added search to groups listing.
&lt;br&gt;+ Added missing pager navigation to groups listing.
&lt;br&gt;&lt;br&gt;Control Panel 2.1.3
&lt;br&gt;+ Developers can now add a link_title to quickSetTabs. This allows the
&lt;br&gt;&amp;nbsp; user to mouse over tabs to get extended information.
&lt;br&gt;+ Vietnamese language added.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Web Pages 1.0.0
&lt;br&gt;+ Several permission checks were not using the correct item name
&lt;br&gt;&amp;nbsp; (volume).
&lt;br&gt;+ Approval tab is no longer seen by restricted users.
&lt;br&gt;+ Removed duplicate approval call.
&lt;br&gt;+ Fixed: Approval pages were not limited by volume number causing all
&lt;br&gt;&amp;nbsp; unapproved pages to list when a volume was viewed.
&lt;br&gt;+ Unapproved volumes will appear on the list for the person who
&lt;br&gt;&amp;nbsp; last updated them. This will allow them to edit while still in the
&lt;br&gt;&amp;nbsp; queue.
&lt;br&gt;+ Unapproved pages are listed with an [Unapproved] label in the volume
&lt;br&gt;&amp;nbsp; listing. 
&lt;br&gt;+ Fixed: Restricted users were not seeing the front page and active
&lt;br&gt;&amp;nbsp; status. 
&lt;br&gt;+ Fixed: When volumes were approved, the approver was getting the
&lt;br&gt;&amp;nbsp; update status applied to them. There is a parameter on the save
&lt;br&gt;&amp;nbsp; function to prevent that now.
&lt;br&gt;+ Fixed: The key save for the volume was not error checked.
&lt;br&gt;+ Incorrect commands to the user class will forward to a 404 page.
&lt;br&gt;+ The creator of a web page is no longer given edit rights by default.
&lt;br&gt;+ After approved, edit item rights are given to the user's
&lt;br&gt;&amp;nbsp; groups. Groups must have edit rights to receive item rights.
&lt;br&gt;+ Altered column widths and joined active and front page.
&lt;br&gt;+ Tidied the header.tpl to not show bars for admin options.
&lt;br&gt;&lt;br&gt;Menu 1.4.2
&lt;br&gt;+ Added option to menu list to reindex link order
&lt;br&gt;+ Deleting a link didn't fix link order
&lt;br&gt;+ Increased popup height.
&lt;br&gt;+ Added option for the admin mode link to be in miniadmin instead of
&lt;br&gt;&amp;nbsp; under the menu.
&lt;br&gt;+ Added option to automatically add a Home link to a new menu.
&lt;br&gt;+ Added loadClass functions to reduce memory.
&lt;br&gt;&lt;br&gt;Categories 2.1.10
&lt;br&gt;+ Fixed: Permissions were not being used properly.
&lt;br&gt;&lt;br&gt;Boost 2.2.0
&lt;br&gt;+ Boost conforms to registered table change.
&lt;br&gt;+ Added more error logging.
&lt;br&gt;+ Boost now checks all branch directories before allowing updates.
&lt;br&gt;+ Boost will not allow installation if directories are not set.
&lt;br&gt;+ Boost will show the options available should the directories get
&lt;br&gt;&amp;nbsp; fixed. Before, it wouldn't show the link.
&lt;br&gt;+ Fixed: On a branch install, Boost was checking the hub's directory
&lt;br&gt;&amp;nbsp; permissions instead of the branch's.
&lt;br&gt;&lt;br&gt;Search 0.3.0
&lt;br&gt;+ Added ability to put search radio buttons on search bar.
&lt;br&gt;&lt;br&gt;Branch 1.1.3
&lt;br&gt;+ Added page limits and navigations to branch listing
&lt;br&gt;+ Branch was missing a follow-thru if branch was unable to connect to
&lt;br&gt;&amp;nbsp; a specific database.
&lt;br&gt;&lt;br&gt;Signup 1.0.2
&lt;br&gt;+ Changed email to send individually.
&lt;br&gt;+ Fixed: &amp;quot;All slots full&amp;quot; message was not displaying.
&lt;br&gt;&lt;br&gt;File Cabinet 1.3.0
&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;+ Added module_created column to folders table to track which module
&lt;br&gt;&amp;nbsp; made the folder.
&lt;br&gt;+ Fifth parameter added to Cabinet::imageManager function. If true,
&lt;br&gt;&amp;nbsp; then the image manager will only show folders created by the current
&lt;br&gt;&amp;nbsp; module.
&lt;br&gt;+ Users can access image folders without having to have File Cabinet
&lt;br&gt;&amp;nbsp; permission.
&lt;br&gt;+ Private folders give a warning instead of a 404.
&lt;br&gt;+ Can now set whether general user folder views will show resized
&lt;br&gt;&amp;nbsp; images along with their parents.
&lt;br&gt;+ Folders are private by default now.
&lt;br&gt;+ Folder title in list view is linkable as well as icon.
&lt;br&gt;+ Images can be made to link to their folder.
&lt;br&gt;+ Clip link won't show for anonymous users viewing a folder.
&lt;br&gt;+ Added code to pick_image to prevent it from being called statically.
&lt;br&gt;+ Using new scaleImage and cropImage functions in File.
&lt;br&gt;+ Added missing column thumbnail to multimedia table in update.php.
&lt;br&gt;+ Image dimension limits compare against only one value now by
&lt;br&gt;&amp;nbsp; default.
&lt;br&gt;+ Uploading resizes using just one value now.
&lt;br&gt;+ User can rotate images on edit.
&lt;br&gt;+ File_Common was not using correct variable to pull errors.
&lt;br&gt;+ Images with awkward ratios resize and thumbnail better.
&lt;br&gt;+ Trying defined widths and heights for thumbnail listing.
&lt;br&gt;+ Increased file_name size beyond 50 because people give files crazy
&lt;br&gt;&amp;nbsp; long names.
&lt;br&gt;+ Added dropExtension function to File_Common.
&lt;br&gt;+ Added get extension function to Image.
&lt;br&gt;+ Added some error codes to help with video thumbnail debugging.
&lt;br&gt;+ Added code to change thumbnails on multimedia files.
&lt;br&gt;+ Updated flowplayer
&lt;br&gt;+ Private folders are not viewable to the anonymous public.
&lt;br&gt;+ Added function to Cabinet to get all file size limitations.
&lt;br&gt;+ The settings form now lists all the above limitations.
&lt;br&gt;+ Added ability to force a size to prewriteResize
&lt;br&gt;+ Multimedia icon's file size is checked. If zero, replaced by the
&lt;br&gt;&amp;nbsp; default.
&lt;br&gt;+ Increased default thumbnail size.
&lt;br&gt;+ Thumbnail should overlay on video properly now.
&lt;br&gt;+ Added a short doc about ffmpeg
&lt;br&gt;+ Changed install to print 'incoming' instead of 'classify' as the
&lt;br&gt;&amp;nbsp; directory name. Was confusing.
&lt;br&gt;+ Added small file type icons for list view.
&lt;br&gt;+ File name in list view is now a direct link to the document.
&lt;br&gt;&lt;br&gt;&lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Splunk Inc.
&lt;br&gt;Still grepping through log files to find problems? &amp;nbsp;Stop.
&lt;br&gt;Now Search log events and configuration files using AJAX and a browser.
&lt;br&gt;Download your FREE copy of Splunk now &amp;gt;&amp;gt; &lt;a href=&quot;http://get.splunk.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://get.splunk.com/&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Phpwebsite-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=13027598&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/PhpWebsite---Dev-f663.html&quot; embed=&quot;fixTarget[663]&quot; target=&quot;_top&quot; &gt;PhpWebsite - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/phpWebSite-1.3.2-soon-tp13027598p13027598.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-12642535</id>
	<title>Re: 1.3.1 upgrade</title>
	<published>2007-09-12T13:25:18Z</published>
	<updated>2007-09-12T13:25:18Z</updated>
	<author>
		<name>Verdon Vaillancourt-2</name>
	</author>
	<content type="html">Not sure if it helps, but I notice it happens as soon as the new &amp;nbsp;
&lt;br&gt;files are copied over and before any updating is done via boost
&lt;br&gt;vern
&lt;br&gt;&lt;br&gt;On 12-Sep-07, at 2:48 PM, matt wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Also, I had noticed that updating here but I haven't figured out &amp;nbsp;
&lt;br&gt;&amp;gt; the bug
&lt;br&gt;&amp;gt; that it causing it. Luckily, not a difficult fix.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Verdon Vaillancourt wrote:
&lt;br&gt;&amp;gt;&amp;gt; Just a quick note... I took a stab at updating a 1.3.0 site to 1.3.1
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I haven't had too much time to kick the tires yet, but did notice one
&lt;br&gt;&amp;gt;&amp;gt; thing right away. At first I thought I had lost my menu, but what I
&lt;br&gt;&amp;gt;&amp;gt; had to do was to go to Control Panel &amp;gt; Content &amp;gt; Menu &amp;gt; Edit (for the
&lt;br&gt;&amp;gt;&amp;gt; menu) and click on Update - then it came back.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I realize there is a new menu template system, but to be honest,
&lt;br&gt;&amp;gt;&amp;gt; don't recall if the note when I updated the module instructed me to
&lt;br&gt;&amp;gt;&amp;gt; 'restore' my menu.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; rgds,
&lt;br&gt;&amp;gt;&amp;gt; verdon
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; --------------------------------------------------------------------- 
&lt;br&gt;&amp;gt;&amp;gt; ----
&lt;br&gt;&amp;gt;&amp;gt; This SF.net email is sponsored by: Microsoft
&lt;br&gt;&amp;gt;&amp;gt; Defy all challenges. Microsoft(R) Visual Studio 2005.
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; Phpwebsite-developers mailing list
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=12642535&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; Matthew McNaney
&lt;br&gt;&amp;gt; Electronic Student Services
&lt;br&gt;&amp;gt; Appalachian State University
&lt;br&gt;&amp;gt; Ext. 6493
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://ess.appstate.edu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ess.appstate.edu&lt;/a&gt;&lt;br&gt;&amp;gt; &lt;a href=&quot;http://phpwebsite.appstate.edu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://phpwebsite.appstate.edu&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------- 
&lt;br&gt;&amp;gt; ---
&lt;br&gt;&amp;gt; This SF.net email is sponsored by: Microsoft
&lt;br&gt;&amp;gt; Defy all challenges. Microsoft(R) Visual Studio 2005.
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Phpwebsite-developers mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=12642535&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Microsoft
&lt;br&gt;Defy all challenges. Microsoft(R) Visual Studio 2005.
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Phpwebsite-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=12642535&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/PhpWebsite---Dev-f663.html&quot; embed=&quot;fixTarget[663]&quot; target=&quot;_top&quot; &gt;PhpWebsite - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/1.3.1-upgrade-tp12641826p12642535.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-12642132</id>
	<title>Re: 1.3.1 upgrade</title>
	<published>2007-09-12T12:48:07Z</published>
	<updated>2007-09-12T12:48:07Z</updated>
	<author>
		<name>Matthew McNaney</name>
	</author>
	<content type="html">Also, I had noticed that updating here but I haven't figured out the bug 
&lt;br&gt;that it causing it. Luckily, not a difficult fix.
&lt;br&gt;&lt;br&gt;Verdon Vaillancourt wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Just a quick note... I took a stab at updating a 1.3.0 site to 1.3.1
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I haven't had too much time to kick the tires yet, but did notice one &amp;nbsp;
&lt;br&gt;&amp;gt; thing right away. At first I thought I had lost my menu, but what I &amp;nbsp;
&lt;br&gt;&amp;gt; had to do was to go to Control Panel &amp;gt; Content &amp;gt; Menu &amp;gt; Edit (for the &amp;nbsp;
&lt;br&gt;&amp;gt; menu) and click on Update - then it came back.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I realize there is a new menu template system, but to be honest, &amp;nbsp;
&lt;br&gt;&amp;gt; don't recall if the note when I updated the module instructed me to &amp;nbsp;
&lt;br&gt;&amp;gt; 'restore' my menu.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; rgds,
&lt;br&gt;&amp;gt; verdon
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; -------------------------------------------------------------------------
&lt;br&gt;&amp;gt; This SF.net email is sponsored by: Microsoft
&lt;br&gt;&amp;gt; Defy all challenges. Microsoft(R) Visual Studio 2005.
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Phpwebsite-developers mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=12642132&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;Matthew McNaney
&lt;br&gt;Electronic Student Services
&lt;br&gt;Appalachian State University
&lt;br&gt;Ext. 6493
&lt;br&gt;&lt;a href=&quot;http://ess.appstate.edu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ess.appstate.edu&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://phpwebsite.appstate.edu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://phpwebsite.appstate.edu&lt;/a&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Microsoft
&lt;br&gt;Defy all challenges. Microsoft(R) Visual Studio 2005.
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Phpwebsite-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=12642132&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/PhpWebsite---Dev-f663.html&quot; embed=&quot;fixTarget[663]&quot; target=&quot;_top&quot; &gt;PhpWebsite - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/1.3.1-upgrade-tp12641826p12642132.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-12642162</id>
	<title>Re: 1.3.1 upgrade</title>
	<published>2007-09-12T12:45:43Z</published>
	<updated>2007-09-12T12:45:43Z</updated>
	<author>
		<name>Matthew McNaney</name>
	</author>
	<content type="html">I'll make a note of it on the home page. Thanks.
&lt;br&gt;&lt;br&gt;Verdon Vaillancourt wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Just a quick note... I took a stab at updating a 1.3.0 site to 1.3.1
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I haven't had too much time to kick the tires yet, but did notice one &amp;nbsp;
&lt;br&gt;&amp;gt; thing right away. At first I thought I had lost my menu, but what I &amp;nbsp;
&lt;br&gt;&amp;gt; had to do was to go to Control Panel &amp;gt; Content &amp;gt; Menu &amp;gt; Edit (for the &amp;nbsp;
&lt;br&gt;&amp;gt; menu) and click on Update - then it came back.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I realize there is a new menu template system, but to be honest, &amp;nbsp;
&lt;br&gt;&amp;gt; don't recall if the note when I updated the module instructed me to &amp;nbsp;
&lt;br&gt;&amp;gt; 'restore' my menu.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; rgds,
&lt;br&gt;&amp;gt; verdon
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; -------------------------------------------------------------------------
&lt;br&gt;&amp;gt; This SF.net email is sponsored by: Microsoft
&lt;br&gt;&amp;gt; Defy all challenges. Microsoft(R) Visual Studio 2005.
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Phpwebsite-developers mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=12642162&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;Matthew McNaney
&lt;br&gt;Electronic Student Services
&lt;br&gt;Appalachian State University
&lt;br&gt;Ext. 6493
&lt;br&gt;&lt;a href=&quot;http://ess.appstate.edu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ess.appstate.edu&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://phpwebsite.appstate.edu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://phpwebsite.appstate.edu&lt;/a&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Microsoft
&lt;br&gt;Defy all challenges. Microsoft(R) Visual Studio 2005.
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Phpwebsite-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=12642162&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/PhpWebsite---Dev-f663.html&quot; embed=&quot;fixTarget[663]&quot; target=&quot;_top&quot; &gt;PhpWebsite - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/1.3.1-upgrade-tp12641826p12642162.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-12641826</id>
	<title>1.3.1 upgrade</title>
	<published>2007-09-12T12:43:20Z</published>
	<updated>2007-09-12T12:43:20Z</updated>
	<author>
		<name>Verdon Vaillancourt-2</name>
	</author>
	<content type="html">Just a quick note... I took a stab at updating a 1.3.0 site to 1.3.1
&lt;br&gt;&lt;br&gt;I haven't had too much time to kick the tires yet, but did notice one &amp;nbsp;
&lt;br&gt;thing right away. At first I thought I had lost my menu, but what I &amp;nbsp;
&lt;br&gt;had to do was to go to Control Panel &amp;gt; Content &amp;gt; Menu &amp;gt; Edit (for the &amp;nbsp;
&lt;br&gt;menu) and click on Update - then it came back.
&lt;br&gt;&lt;br&gt;I realize there is a new menu template system, but to be honest, &amp;nbsp;
&lt;br&gt;don't recall if the note when I updated the module instructed me to &amp;nbsp;
&lt;br&gt;'restore' my menu.
&lt;br&gt;&lt;br&gt;rgds,
&lt;br&gt;verdon
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Microsoft
&lt;br&gt;Defy all challenges. Microsoft(R) Visual Studio 2005.
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Phpwebsite-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=12641826&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/PhpWebsite---Dev-f663.html&quot; embed=&quot;fixTarget[663]&quot; target=&quot;_top&quot; &gt;PhpWebsite - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/1.3.1-upgrade-tp12641826p12641826.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-12583840</id>
	<title>Re: 1.3.1 coming</title>
	<published>2007-09-09T16:13:49Z</published>
	<updated>2007-09-09T16:13:49Z</updated>
	<author>
		<name>Verdon Vaillancourt-2</name>
	</author>
	<content type="html">I agree it should be the most compatible. I know us Safari users are &amp;nbsp;
&lt;br&gt;a minority, but defaulting to fckeditor is definitely bad/confusing &amp;nbsp;
&lt;br&gt;for us. I may also be in a minority when I say I don't like wysiwyg &amp;nbsp;
&lt;br&gt;editors at all. I would suggest defaulting to Simple, but I know that &amp;nbsp;
&lt;br&gt;doesn't have the sex appeal to many people. Given that, perhaps YUI &amp;nbsp;
&lt;br&gt;is the best bet, but let's be sure it's solid before it is made a &amp;nbsp;
&lt;br&gt;standard. To be honest, I don't know that much about it :)
&lt;br&gt;&lt;br&gt;my 2 c
&lt;br&gt;verdon
&lt;br&gt;&lt;br&gt;&lt;br&gt;On 9-Sep-07, at 4:58 PM, &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=12583840&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;matt@...&lt;/a&gt; wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; So do you have any suggestions for a default install? Should a new
&lt;br&gt;&amp;gt; install get 'None' instead of FCK? The suggested.php files don't seem
&lt;br&gt;&amp;gt; to work well since there are so many possible variations. Supposedly
&lt;br&gt;&amp;gt; yui is the most compatible so I could make that the default.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Microsoft
&lt;br&gt;Defy all challenges. Microsoft(R) Visual Studio 2005.
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Phpwebsite-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=12583840&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/PhpWebsite---Dev-f663.html&quot; embed=&quot;fixTarget[663]&quot; target=&quot;_top&quot; &gt;PhpWebsite - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/1.3.1-coming-tp12561028p12583840.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-12583189</id>
	<title>Re: 1.3.1 coming</title>
	<published>2007-09-09T14:58:23Z</published>
	<updated>2007-09-09T14:58:23Z</updated>
	<author>
		<name>Matthew McNaney</name>
	</author>
	<content type="html">Thanks for testing.
&lt;br&gt;&lt;br&gt;Verdon said:
&lt;br&gt;&amp;gt; That is when using no editor (which is what it defaulted to) the text
&lt;br&gt;&amp;gt; area fields in some mods are so small as to be near unusable, roughly
&lt;br&gt;&amp;gt; 20 cols x 2 rows.
&lt;br&gt;&lt;br&gt;If the user chooses FCKeditor as the default editor (which is the
&lt;br&gt;default on install) and the browser doesn't work with FCK, you get
&lt;br&gt;that little text area.
&lt;br&gt;&lt;br&gt;Shaun said:
&lt;br&gt;&amp;gt; Will definitely give it a go now.
&lt;br&gt;&lt;br&gt;You better. I put it in 'cause you asked ;-)
&lt;br&gt;&lt;br&gt;So do you have any suggestions for a default install? Should a new
&lt;br&gt;install get 'None' instead of FCK? The suggested.php files don't seem
&lt;br&gt;to work well since there are so many possible variations. Supposedly
&lt;br&gt;yui is the most compatible so I could make that the default.
&lt;br&gt;&lt;br&gt;Ideas?
&lt;br&gt;&lt;br&gt;Matt
&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Microsoft
&lt;br&gt;Defy all challenges. Microsoft(R) Visual Studio 2005.
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Phpwebsite-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=12583189&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Phpwebsite-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/PhpWebsite---Dev-f663.html&quot; embed=&quot;fixTarget[663]&quot; target=&quot;_top&quot; &gt;PhpWebsite - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/1.3.1-coming-tp12561028p12583189.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-12582925</id>
	<title>Re: 1.3.1 coming</title>
	<published>2007-09-09T14:41:23Z</published>
	<updated>2007-09-09T14:41:23Z</updated>
	<author>
		<name>Shaun Murray</name>
	</author>
	<content type="html">&lt;br&gt;On 9 Sep 2007, at 20:19, Verdon Vaillancourt wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I've got something wierd going on.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Actually, I just checked and the editor was set to fckeditor on the
&lt;br&gt;&amp;gt; new install, and I got the small text areas, no editor, no warnings.
&lt;br&gt;&amp;gt; When I actually went to my page and changed the editor pref to none,
&lt;br&gt;&amp;gt; the text areas are OK. Simple editor gives me large text areas that
&lt;br&gt;&amp;gt; scale to my window size. tinymce doesn't seem to be working though
&lt;br&gt;&amp;gt; the text areas are fine (always has in the past but is a little
&lt;br&gt;&amp;gt; flaky). YUI seems OK at a glance.
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;Ooh, we've got YUI!
&lt;br&gt;&lt;br&gt;Will definitely give it a go now.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Shaun
&lt;br&gt;aegis design - &lt;a href=&quot;http://www.aegisdesign.co.uk&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.aegisdesign.co.uk&lt;/a&gt;&lt;br&gt;aegis hosting - &lt;a href=&quot;http://www.aegishosting.co.uk&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.aegishosting.co.uk&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Microsoft
&lt;br&gt;Defy all challenges. Microsoft(R) Visual Studio 2005.
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;_____________