<?xml version="1.0"?><!-- generator="b2evolution/0.9.0.12" -->
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:admin="http://webns.net/mvcb/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>ZWS Online Support - Last comments</title>
		<link>http://support.zeus.com/zws?disp=comments</link>
		<description></description>
		<language>en-UK</language>
		<docs>http://backend.userland.com/rss</docs>
		<admin:generatorAgent rdf:resource="http://b2evolution.net/?v=0.9.0.12"/>
		<ttl>60</ttl>
				<item>
			<title>In response to: ZWS 4.3r3 released</title>
			<pubDate>Sun, 22 Jul 2012 05:50:57 +0000</pubDate>
			<guid isPermaLink="false">c111@http://support.zeus.com/zws</guid>
         <dc:creator>haoxw</dc:creator>
			<description>i want to konw</description>
			<content:encoded><![CDATA[i want to konw]]></content:encoded>
			<link>http://support.zeus.com/zws/news/2006/06/16/release_43r3#c111</link>
		</item>
				<item>
			<title>In response to: IBM WebSphere Application Server 5.0.2</title>
			<pubDate>Tue, 05 Jun 2012 05:02:07 +0000</pubDate>
			<guid isPermaLink="false">c98@http://support.zeus.com/zws</guid>
         <dc:creator>atrueinternetworld</dc:creator>
			<description>Now that was a really healthy dialogue right there. Gets your blood pumping really fast and strong. Thanks a lot for sharing this with us.  </description>
			<content:encoded><![CDATA[Now that was a really healthy dialogue right there. Gets your blood pumping really fast and strong. Thanks a lot for sharing this with us.  ]]></content:encoded>
			<link>http://support.zeus.com/zws/integration/2005/11/10/ibm_websphere#c98</link>
		</item>
				<item>
			<title>In response to: Joomla Search Engine Optimization (SEO)</title>
			<pubDate>Tue, 29 May 2012 22:12:56 +0000</pubDate>
			<guid isPermaLink="false">c97@http://support.zeus.com/zws</guid>
         <dc:creator>Marie Nicol</dc:creator>
			<description>I have not know that URLs of the pages build using Joomla are being redirected so that they are easier to index. Good to know maybe I will build my next page using that CMS.</description>
			<content:encoded><![CDATA[I have not know that URLs of the pages build using Joomla are being redirected so that they are easier to index. Good to know maybe I will build my next page using that CMS.]]></content:encoded>
			<link>http://support.zeus.com/zws/integration/2006/10/31/joomla_search_engine_optimization_seo#c97</link>
		</item>
				<item>
			<title>In response to: Joomla Search Engine Optimization (SEO)</title>
			<pubDate>Mon, 28 May 2012 12:51:48 +0000</pubDate>
			<guid isPermaLink="false">c96@http://support.zeus.com/zws</guid>
         <dc:creator>angus</dc:creator>
			<description>is there a difference in the rewite.script for joomla 2.5,

 i have been running joomla 1.5 sites for years with the following code  code:

 RULE_0_START:
    # get the document root
    map path into SCRATCH:DOCROOT from /
    # initialize our variables
    set SCRATCH:ORIG_URL = %{URL}
    set SCRATCH:REQUEST_URI = %{URL}

    # see if theres any queries in our URL
    match URL into $ with ^(.*)\?(.*)$
    if matched then
    set SCRATCH:REQUEST_URI = $1
    set SCRATCH:QUERY_STRING = $2
    endif
    RULE_0_END:

    RULE_1_START:
    # prepare to search for file, rewrite if its not found
    set SCRATCH:REQUEST_FILENAME = %{SCRATCH:DOCROOT}
    set SCRATCH:REQUEST_FILENAME . %{SCRATCH:REQUEST_URI}

    # check to see if the file requested is an actual file or
    # a directory with possibly an index.  don&#8217;t rewrite if so
    look for file at %{SCRATCH:REQUEST_FILENAME}
    if not exists then
    look for dir at %{SCRATCH:REQUEST_FILENAME}
    if not exists then
    set URL = /index.php?q=%{SCRATCH:REQUEST_URI}
    goto QSA_RULE_START
    endif
    endif

    # if we made it here then its a file or dir and no rewrite
    goto END
    RULE_1_END:

    QSA_RULE_START:
    # append the query string if there was one originally
    # the same as [QSA,L] for apache
    match SCRATCH:ORIG_URL into % with \?(.*)$
    if matched then
    set URL = %{URL}&#38;%{SCRATCH:QUERY_STRING}
    endif
    goto END
    QSA_RULE_END:

Can any one tell how to edit this code to work with 2.5.</description>
			<content:encoded><![CDATA[is there a difference in the rewite.script for joomla 2.5,<br />
<br />
 i have been running joomla 1.5 sites for years with the following code  code:<br />
<br />
 RULE_0_START:<br />
    # get the document root<br />
    map path into SCRATCH:DOCROOT from /<br />
    # initialize our variables<br />
    set SCRATCH:ORIG_URL = %{URL}<br />
    set SCRATCH:REQUEST_URI = %{URL}<br />
<br />
    # see if theres any queries in our URL<br />
    match URL into $ with ^(.*)\?(.*)$<br />
    if matched then<br />
    set SCRATCH:REQUEST_URI = $1<br />
    set SCRATCH:QUERY_STRING = $2<br />
    endif<br />
    RULE_0_END:<br />
<br />
    RULE_1_START:<br />
    # prepare to search for file, rewrite if its not found<br />
    set SCRATCH:REQUEST_FILENAME = %{SCRATCH:DOCROOT}<br />
    set SCRATCH:REQUEST_FILENAME . %{SCRATCH:REQUEST_URI}<br />
<br />
    # check to see if the file requested is an actual file or<br />
    # a directory with possibly an index.  don&#8217;t rewrite if so<br />
    look for file at %{SCRATCH:REQUEST_FILENAME}<br />
    if not exists then<br />
    look for dir at %{SCRATCH:REQUEST_FILENAME}<br />
    if not exists then<br />
    set URL = /index.php?q=%{SCRATCH:REQUEST_URI}<br />
    goto QSA_RULE_START<br />
    endif<br />
    endif<br />
<br />
    # if we made it here then its a file or dir and no rewrite<br />
    goto END<br />
    RULE_1_END:<br />
<br />
    QSA_RULE_START:<br />
    # append the query string if there was one originally<br />
    # the same as [QSA,L] for apache<br />
    match SCRATCH:ORIG_URL into % with \?(.*)$<br />
    if matched then<br />
    set URL = %{URL}&amp;%{SCRATCH:QUERY_STRING}<br />
    endif<br />
    goto END<br />
    QSA_RULE_END:<br />
<br />
Can any one tell how to edit this code to work with 2.5.]]></content:encoded>
			<link>http://support.zeus.com/zws/integration/2006/10/31/joomla_search_engine_optimization_seo#c96</link>
		</item>
				<item>
			<title>In response to: Joomla Search Engine Optimization (SEO)</title>
			<pubDate>Wed, 22 Feb 2012 09:38:37 +0000</pubDate>
			<guid isPermaLink="false">c87@http://support.zeus.com/zws</guid>
         <dc:creator>Marco</dc:creator>
			<description>Hi, I've created a rewrite.script file and added it to the root folder. All looks perfect, the index.php disappeared from the URL but now I can't access the backend of my Joomla site. Any suggestions? Thanks</description>
			<content:encoded><![CDATA[Hi, I've created a rewrite.script file and added it to the root folder. All looks perfect, the index.php disappeared from the URL but now I can't access the backend of my Joomla site. Any suggestions? Thanks]]></content:encoded>
			<link>http://support.zeus.com/zws/integration/2006/10/31/joomla_search_engine_optimization_seo#c87</link>
		</item>
				<item>
			<title>In response to: Can you chroot the Microsoft FrontPage extensions?</title>
			<pubDate>Thu, 12 Jan 2012 09:28:29 +0000</pubDate>
			<guid isPermaLink="false">c86@http://support.zeus.com/zws</guid>
         <dc:creator>Graven</dc:creator>
			<description>This will helps lots to scripting language security concern. I am really surprising to see this first time and I will implement the same in my virtual server configuration.
 
 
SEO Services India</description>
			<content:encoded><![CDATA[This will helps lots to scripting language security concern. I am really surprising to see this first time and I will implement the same in my virtual server configuration.<br />
 <br />
<br /> <br />
<a href="http://www.searcheccentric.com/seo-services-india.html">SEO Services India</a>]]></content:encoded>
			<link>http://support.zeus.com/zws/faqs/2006/06/15/fp_chroot#c86</link>
		</item>
				<item>
			<title>In response to: Joomla Search Engine Optimization (SEO)</title>
			<pubDate>Wed, 11 Jan 2012 13:43:58 +0000</pubDate>
			<guid isPermaLink="false">c85@http://support.zeus.com/zws</guid>
         <dc:creator>SEO Services India</dc:creator>
			<description>Wow!! It was a great article. It&#8217;s really beneficial for effective search engine optimization. New techniques in SEO are always welcome from my side. I expect this type of creative posts from your side. Thanks for sharing it.    </description>
			<content:encoded><![CDATA[Wow!! It was a great article. It&#8217;s really beneficial for effective search engine optimization. New techniques in SEO are always welcome from my side. I expect this type of creative posts from your side. Thanks for sharing it.    ]]></content:encoded>
			<link>http://support.zeus.com/zws/integration/2006/10/31/joomla_search_engine_optimization_seo#c85</link>
		</item>
				<item>
			<title>In response to: Joomla Search Engine Optimization (SEO)</title>
			<pubDate>Sun, 25 Dec 2011 15:42:18 +0000</pubDate>
			<guid isPermaLink="false">c84@http://support.zeus.com/zws</guid>
         <dc:creator>sneha [Member]</dc:creator>
			<description>It's very nice post.
Mediarun has been providing London SEO services and website optimisation services to clients spread over fashion, retail, travel and financial sectors.
SEO London

</description>
			<content:encoded><![CDATA[It's very nice post.<br />
Mediarun has been providing London SEO services and website optimisation services to clients spread over fashion, retail, travel and financial sectors.<br />
<a href="http://www.mediarunsearch.co.uk/aboutus.htm">SEO London</a><br />
<br />
]]></content:encoded>
			<link>http://support.zeus.com/zws/integration/2006/10/31/joomla_search_engine_optimization_seo#c84</link>
		</item>
				<item>
			<title>In response to: Joomla Search Engine Optimization (SEO)</title>
			<pubDate>Wed, 30 Nov 2011 16:06:12 +0000</pubDate>
			<guid isPermaLink="false">c83@http://support.zeus.com/zws</guid>
         <dc:creator>SEO Cambridge [Member]</dc:creator>
			<description>Will the shsef404 plugin for Joomla work on Zeus? On Apache this relies in the Rewrite rule being switched on.

Thx in advance

Ed</description>
			<content:encoded><![CDATA[Will the shsef404 plugin for Joomla work on Zeus? On Apache this relies in the Rewrite rule being switched on.<br />
<br />
Thx in advance<br />
<br />
Ed]]></content:encoded>
			<link>http://support.zeus.com/zws/integration/2006/10/31/joomla_search_engine_optimization_seo#c83</link>
		</item>
				<item>
			<title>In response to: Joomla Search Engine Optimization (SEO)</title>
			<pubDate>Fri, 07 Oct 2011 05:33:34 +0000</pubDate>
			<guid isPermaLink="false">c80@http://support.zeus.com/zws</guid>
         <dc:creator>seo india</dc:creator>
			<description>I even told my friends to take a look at your blog and in fact your blog is already bookmarked on my computer. Hope to see more of this. Great..
</description>
			<content:encoded><![CDATA[I even told my friends to take a look at your blog and in fact your blog is already bookmarked on my computer. Hope to see more of this. Great..<br />
]]></content:encoded>
			<link>http://support.zeus.com/zws/integration/2006/10/31/joomla_search_engine_optimization_seo#c80</link>
		</item>
				<item>
			<title>In response to: Joomla Search Engine Optimization (SEO)</title>
			<pubDate>Wed, 05 Oct 2011 12:08:48 +0000</pubDate>
			<guid isPermaLink="false">c79@http://support.zeus.com/zws</guid>
         <dc:creator>kinny [Member]</dc:creator>
			<description>Thanks for explaining SEO in Joomla works and even the rewriting SEO URLs in ZWS. It had made my work easy.

SEO India
</description>
			<content:encoded><![CDATA[Thanks for explaining SEO in Joomla works and even the rewriting SEO URLs in ZWS. It had made my work easy.<br />
<br />
<a href ="http://www.e2solutions.net/effective_web_promotions_seo_company_india.htm">SEO India</a><br />
]]></content:encoded>
			<link>http://support.zeus.com/zws/integration/2006/10/31/joomla_search_engine_optimization_seo#c79</link>
		</item>
				<item>
			<title>In response to: Joomla Search Engine Optimization (SEO)</title>
			<pubDate>Fri, 09 Sep 2011 13:31:26 +0000</pubDate>
			<guid isPermaLink="false">c78@http://support.zeus.com/zws</guid>
         <dc:creator>Peter Rafferty</dc:creator>
			<description>Cheers for the tips. I have just released a new site and I need all the SEO tips I can get. 

</description>
			<content:encoded><![CDATA[Cheers for the tips. I have just released a new site and I need all the SEO tips I can get. <br />
<br />
]]></content:encoded>
			<link>http://support.zeus.com/zws/integration/2006/10/31/joomla_search_engine_optimization_seo#c78</link>
		</item>
				<item>
			<title>In response to: Joomla Search Engine Optimization (SEO)</title>
			<pubDate>Mon, 16 May 2011 10:14:14 +0000</pubDate>
			<guid isPermaLink="false">c77@http://support.zeus.com/zws</guid>
         <dc:creator>SEO India</dc:creator>
			<description>Joomla is the one of the best CMS(Content management System) working from a very long time decade. URL rewrite is the process of simplified the url additional @ star and additional character which is automatic generated in Joomla websites. </description>
			<content:encoded><![CDATA[Joomla is the one of the best CMS(Content management System) working from a very long time decade. URL rewrite is the process of simplified the url additional @ star and additional character which is automatic generated in Joomla websites. ]]></content:encoded>
			<link>http://support.zeus.com/zws/integration/2006/10/31/joomla_search_engine_optimization_seo#c77</link>
		</item>
				<item>
			<title>In response to: ZWS 4.3r5 released</title>
			<pubDate>Thu, 24 Feb 2011 03:25:36 +0000</pubDate>
			<guid isPermaLink="false">c76@http://support.zeus.com/zws</guid>
         <dc:creator>peter</dc:creator>
			<description>What no ipv6?
And no updates in over a year.

What about my bug report.</description>
			<content:encoded><![CDATA[What no ipv6?<br />
And no updates in over a year.<br />
<br />
What about my bug report.]]></content:encoded>
			<link>http://support.zeus.com/zws/news/2010/01/13/zws_4_3r5_released#c76</link>
		</item>
				<item>
			<title>In response to: Joomla Search Engine Optimization (SEO)</title>
			<pubDate>Wed, 03 Nov 2010 17:24:16 +0000</pubDate>
			<guid isPermaLink="false">c75@http://support.zeus.com/zws</guid>
         <dc:creator>the 5 minute membership site</dc:creator>
			<description>great site full of great content</description>
			<content:encoded><![CDATA[great site full of great content]]></content:encoded>
			<link>http://support.zeus.com/zws/integration/2006/10/31/joomla_search_engine_optimization_seo#c75</link>
		</item>
				<item>
			<title>In response to: Joomla Search Engine Optimization (SEO)</title>
			<pubDate>Mon, 25 Oct 2010 16:09:41 +0000</pubDate>
			<guid isPermaLink="false">c74@http://support.zeus.com/zws</guid>
         <dc:creator>saranggola awards</dc:creator>
			<description>This awesome blog has helped me a lot in my research. Thank you for the tips and information.</description>
			<content:encoded><![CDATA[This awesome blog has helped me a lot in my research. Thank you for the tips and information.]]></content:encoded>
			<link>http://support.zeus.com/zws/integration/2006/10/31/joomla_search_engine_optimization_seo#c74</link>
		</item>
				<item>
			<title>In response to: Joomla Search Engine Optimization (SEO)</title>
			<pubDate>Wed, 13 Oct 2010 02:19:00 +0000</pubDate>
			<guid isPermaLink="false">c73@http://support.zeus.com/zws</guid>
         <dc:creator>Toan Duong</dc:creator>
			<description>I have problems installing plugins. 
It keeps on giving me this sort of errors:


        * FTP::mkdir: Bad response
        * JFTP::mkdir: Bad response
        * JFolder::files: Path does not point to a valid folder or the folder has been deleted.
        * JFolder::folder: Path does not point to a valid folder or the folder has been deleted.
        * JFolder::files: Path does not point to a valid folder or the folder has been deleted.
        * Error! Could not find a Joomla! XML setup file in the package.


Warning: array_merge() [function.array-merge]: Argument #1 is not an array in /clientdata/zeus-dynamic-1/c/l/xxxxxxxxxxx.com.au/www/libraries/joomla/installer/helper.php on line 142

Warning: array_merge() [function.array-merge]: Argument #2 is not an array in /clientdata/zeus-dynamic-1/c/l/xxxxxxxxxxx.com.au/www/libraries/joomla/installer/helper.php on line 142

Warning: Invalid argument supplied for foreach() in /clientdata/zeus-dynamic-1/c/l/xxxxxxxxxxx.com.au/www/libraries/joomla/installer/helper.php on line 187


is this a rewrite issue as well?</description>
			<content:encoded><![CDATA[I have problems installing plugins. <br />
It keeps on giving me this sort of errors:<br />
<br />
<br />
        * FTP::mkdir: Bad response<br />
        * JFTP::mkdir: Bad response<br />
        * JFolder::files: Path does not point to a valid folder or the folder has been deleted.<br />
        * JFolder::folder: Path does not point to a valid folder or the folder has been deleted.<br />
        * JFolder::files: Path does not point to a valid folder or the folder has been deleted.<br />
        * Error! Could not find a Joomla! XML setup file in the package.<br />
<br />
<br />
Warning: array_merge() [function.array-merge]: Argument #1 is not an array in /clientdata/zeus-dynamic-1/c/l/xxxxxxxxxxx.com.au/www/libraries/joomla/installer/helper.php on line 142<br />
<br />
Warning: array_merge() [function.array-merge]: Argument #2 is not an array in /clientdata/zeus-dynamic-1/c/l/xxxxxxxxxxx.com.au/www/libraries/joomla/installer/helper.php on line 142<br />
<br />
Warning: Invalid argument supplied for foreach() in /clientdata/zeus-dynamic-1/c/l/xxxxxxxxxxx.com.au/www/libraries/joomla/installer/helper.php on line 187<br />
<br />
<br />
is this a rewrite issue as well?]]></content:encoded>
			<link>http://support.zeus.com/zws/integration/2006/10/31/joomla_search_engine_optimization_seo#c73</link>
		</item>
				<item>
			<title>In response to: Joomla Search Engine Optimization (SEO)</title>
			<pubDate>Tue, 14 Sep 2010 12:59:08 +0000</pubDate>
			<guid isPermaLink="false">c72@http://support.zeus.com/zws</guid>
         <dc:creator>Mike</dc:creator>
			<description>You have given some nice details about joomla search engine optimization. Thanks for sharing and keep up the good work. </description>
			<content:encoded><![CDATA[You have given some nice details about joomla search engine optimization. Thanks for sharing and keep up the good work. ]]></content:encoded>
			<link>http://support.zeus.com/zws/integration/2006/10/31/joomla_search_engine_optimization_seo#c72</link>
		</item>
				<item>
			<title>In response to: BEA WebLogic 8.1</title>
			<pubDate>Fri, 10 Sep 2010 22:11:16 +0000</pubDate>
			<guid isPermaLink="false">c71@http://support.zeus.com/zws</guid>
         <dc:creator>Weblogic Developer</dc:creator>
			<description>thanks for sharing </description>
			<content:encoded><![CDATA[thanks for sharing ]]></content:encoded>
			<link>http://support.zeus.com/zws/integration/2005/11/10/bea_weblogic_8_1#c71</link>
		</item>
				<item>
			<title>In response to: Joomla Search Engine Optimization (SEO)</title>
			<pubDate>Fri, 10 Sep 2010 14:58:09 +0000</pubDate>
			<guid isPermaLink="false">c70@http://support.zeus.com/zws</guid>
         <dc:creator>Paul Bursnall</dc:creator>
			<description>I'm having an equally hard time with this! I don't have access to the Request Rewriting section via my host (Namesco). I've tried the above rules and 10+ different rewrite.script files in the root of my site, and not a single one works. Quite a few work for menu links, none of them work for quickjump or footer links. Unless someone from Zeus can provide clear, working documentation on this (in an understandable) format, I'll be moving to an Apache host...</description>
			<content:encoded><![CDATA[I'm having an equally hard time with this! I don't have access to the Request Rewriting section via my host (Namesco). I've tried the above rules and 10+ different rewrite.script files in the root of my site, and not a single one works. Quite a few work for menu links, none of them work for quickjump or footer links. Unless someone from Zeus can provide clear, working documentation on this (in an understandable) format, I'll be moving to an Apache host...]]></content:encoded>
			<link>http://support.zeus.com/zws/integration/2006/10/31/joomla_search_engine_optimization_seo#c70</link>
		</item>
			</channel>
</rss>
