<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Escene</title>
	<atom:link href="http://www.escene.co.nz/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.escene.co.nz</link>
	<description>Web Development and Design</description>
	<lastBuildDate>Mon, 29 Mar 2010 23:03:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>htaccess file to help prevent sql injection attempts</title>
		<link>http://www.escene.co.nz/?p=29</link>
		<comments>http://www.escene.co.nz/?p=29#comments</comments>
		<pubDate>Mon, 29 Mar 2010 23:03:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[htaccess]]></category>

		<guid isPermaLink="false">http://www.escene.co.nz/?p=29</guid>
		<description><![CDATA[I use the text below in a .htaccess file to help prevent sql injection attacks that seem to crop up from time to time.
This will look for common attack methods and redirect them to a page called hack.cfm which I will commonly just leave as a blank page while recording the type of attack.
RewriteEngine On
Options [...]]]></description>
			<content:encoded><![CDATA[<p>I use the text below in a .htaccess file to help prevent sql injection attacks that seem to crop up from time to time.</p>
<p>This will look for common attack methods and redirect them to a page called hack.cfm which I will commonly just leave as a blank page while recording the type of attack.</p>
<blockquote><p>RewriteEngine On</p>
<p>Options +FollowSymLinks<br />ServerSignature Off</p>
<p>RewriteCond %{REQUEST_METHOD}  ^(HEAD|TRACE|DELETE|TRACK) [NC,OR]<br />RewriteCond %{THE_REQUEST}     ^.*(\\r|\\n|%0A|%0D).* [NC,OR]</p>
<p>RewriteCond %{HTTP_REFERER}    ^(.*)(<|>|&#8217;|%0A|%0D|%27|%3C|%3E|).* [NC,OR]<br />RewriteCond %{HTTP_COOKIE}     ^.*(<|>|&#8217;|%0A|%0D|%27|%3C|%3E|).* [NC,OR]<br />RewriteCond %{REQUEST_URI}     ^/(,|;|:|<|>|&#8221;>|&#8221;<|/|\\\.\.\\).{0,9999}.* [NC,OR]</p>
<p>RewriteCond %{HTTP_USER_AGENT} ^$ [OR]<br />RewriteCond %{HTTP_USER_AGENT} ^(java|curl|wget).* [NC,OR]<br />RewriteCond %{HTTP_USER_AGENT} ^.*(winhttp|HTTrack|clshttp|archiver|loader|email|harvest|extract|grab|miner).* [NC,OR]<br />RewriteCond %{HTTP_USER_AGENT} ^.*(libwww-perl|curl|wget|python|nikto|scan).* [NC,OR]<br />RewriteCond %{HTTP_USER_AGENT} ^.*(<|>|&#8217;|%0A|%0D|%27|%3C|%3E|).* [NC,OR]</p>
<p>RewriteCond %{QUERY_STRING}    ^.*(;|<|>|&#8217;|&#8221;|\)|%0A|%0D|%22|%27|%3C|%3E|).*(/\*|union|select|insert|cast|set|declare|drop|update|md5|benchmark).* [NC,OR]<br />RewriteCond %{QUERY_STRING}    ^.*(localhost|loopback|127\.0\.0\.1).* [NC,OR]<br />#RewriteCond %{QUERY_STRING}    ^.*\.[A-Za-z0-9].* [NC,OR]<br />RewriteCond %{QUERY_STRING}    ^.*(<|>|&#8217;|%0A|%0D|%27|%3C|%3E|).* [NC]</p>
<p>RewriteRule ^(.*)$ hack.cfm</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.escene.co.nz/?feed=rss2&amp;p=29</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backup FTP/SFTP settings in Aptana/Coldfusion Builder</title>
		<link>http://www.escene.co.nz/?p=28</link>
		<comments>http://www.escene.co.nz/?p=28#comments</comments>
		<pubDate>Tue, 28 Jul 2009 20:26:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.escene.co.nz/?p=28</guid>
		<description><![CDATA[I have had a problem with Aptana in the past and also with Coldfusion Builder now (it appears to use Aptana used under the hood). The problem is if Eclipse/Computer freezes up and you have to restart the computer with Eclipse still open. This process seems to corrupt the workspace and you tend to lose [...]]]></description>
			<content:encoded><![CDATA[<p>I have had a problem with Aptana in the past and also with Coldfusion Builder now (it appears to use Aptana used under the hood). The problem is if Eclipse/Computer freezes up and you have to restart the computer with Eclipse still open. This process seems to corrupt the workspace and you tend to lose all your settings (incl FTP/SFTP settings). So here is how you back them up.</p>
<p>1. Goto &#8216;File&#8217; then &#8216;Export&#8217;<br />2. Select &#8216;Coldfusion&#8217; then select &#8216;Syncing Settings&#8217;<br />3. Name the file and save somewhere</p>
<p>these can be imported in the same way. Hope this saves some time for people.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.escene.co.nz/?feed=rss2&amp;p=28</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing the user of Coldfusion on Linux</title>
		<link>http://www.escene.co.nz/?p=27</link>
		<comments>http://www.escene.co.nz/?p=27#comments</comments>
		<pubDate>Wed, 08 Apr 2009 08:47:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Coldfusion]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.escene.co.nz/?p=27</guid>
		<description><![CDATA[I made the mistake of setting up Coldfusion 8 on a linux system (centOS) with the user set as &#8216;nobody&#8217;. This proved to be a big mistake when it came to using tags like cffile to write to the filesystem. I had a hunt around for some info on how to do this with Adobe [...]]]></description>
			<content:encoded><![CDATA[<p>I made the mistake of setting up Coldfusion 8 on a linux system (centOS) with the user set as &#8216;nobody&#8217;. This proved to be a big mistake when it came to using tags like cffile to write to the filesystem. I had a hunt around for some info on how to do this with Adobe suggesting a <a href="http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_17279">reinstall of coldfusion</a></p>
<p>To change the user running coldfusion to the same as the owner of the web directory I completed the following steps.</p>
<p>1. vi /etc/init.d/coldfusion_8 then change the runtime user to the same as the user of your web folder<br />2.  vi /etc/init.d/cfsearch8 then change the runtime user to the same as the user of your web folder<br />3. vi /opt/coldfusion8/bin/coldfusion then change the runtime user to the same as the user of your web folder<br />4. chown -R /opt/coldfusion8 name_of_new_runtimeuser</p>
<p>This allowed me to then use cffile to copy files to my server, however I was still running into a minor problem with the image functions of Coldfusion. <a href="http://www.bennadel.com/blog/1289-ColdFusion-8-0-1-Bug-Coldfusion-Image-ImageWriter-ImageWritingException.htm">Thanks to Ben Nadal who has a note on installing a hot fix to solve this problem.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.escene.co.nz/?feed=rss2&amp;p=27</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Forbidden 403 Error after installing phpMyAdmin</title>
		<link>http://www.escene.co.nz/?p=26</link>
		<comments>http://www.escene.co.nz/?p=26#comments</comments>
		<pubDate>Thu, 12 Mar 2009 23:25:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[apache]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.escene.co.nz/?p=26</guid>
		<description><![CDATA[After I had installed phpMyAdmin (in my case centos, using YUM) I received a 403 forbidden error. By default phpmyadmin installed path is /usr/share/phpmyadmin and the apache configuration file is located in /etc/httpd/conf.d/phpmyadmin.conf.
To fix:
vi /etc/httpd/conf.d/phpmyadmin.conf
Remove or comment these lines
#Order Allow,Deny#Deny from allAllow from 127.0.0.1
Restart the apache server.
/etc/init.d/httpd restart
You should be able to see phpmyadmin working [...]]]></description>
			<content:encoded><![CDATA[<p>After I had installed phpMyAdmin (in my case centos, using YUM) I received a 403 forbidden error. By default phpmyadmin installed path is /usr/share/phpmyadmin and the apache configuration file is located in /etc/httpd/conf.d/phpmyadmin.conf.</p>
<p>To fix:</p>
<p>vi /etc/httpd/conf.d/phpmyadmin.conf</p>
<p>Remove or comment these lines</p>
<p>#Order Allow,Deny<br />#Deny from all<br />Allow from 127.0.0.1</p>
<p>Restart the apache server.</p>
<p>/etc/init.d/httpd restart</p>
<p>You should be able to see phpmyadmin working by going to http://ipaddress/phpmyadmin</p>
]]></content:encoded>
			<wfw:commentRss>http://www.escene.co.nz/?feed=rss2&amp;p=26</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Resizing a Amazon EBS Volume</title>
		<link>http://www.escene.co.nz/?p=25</link>
		<comments>http://www.escene.co.nz/?p=25#comments</comments>
		<pubDate>Mon, 09 Mar 2009 20:40:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[amazon]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.escene.co.nz/?p=25</guid>
		<description><![CDATA[I struggled to find the answer to resizing an existing Amazon Elastic Block Store Volume.
Here is how I resolved this
1. Created a snapshot of the existing volume (log into Amazons Console for this https://console.aws.amazon.com)
2. Create a new volume based on the snapshot
3. Attach this new volume to my Amazon Instance (after detaching the other volume)
4. [...]]]></description>
			<content:encoded><![CDATA[<p>I struggled to find the answer to resizing an existing Amazon Elastic Block Store Volume.</p>
<p>Here is how I resolved this</p>
<p>1. Created a snapshot of the existing volume (log into Amazons Console for this https://console.aws.amazon.com)</p>
<p>2. Create a new volume based on the snapshot</p>
<p>3. Attach this new volume to my Amazon Instance (after detaching the other volume)</p>
<p>4. SSH into my Amazon Instance</p>
<p>5. Enter the following, this checks the integrity of the disk &#8216;e2fsck -f /dev/sdf&#8217;</p>
<p>6. Enter the following &#8216;resize2fs /dev/sdf&#8217;</p>
<p>7. Mount the volume &#8216;mount /dev/sdf /mnt/data-store&#8217;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.escene.co.nz/?feed=rss2&amp;p=25</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Arrow and delete keys not working in VMWare on Ubuntu</title>
		<link>http://www.escene.co.nz/?p=24</link>
		<comments>http://www.escene.co.nz/?p=24#comments</comments>
		<pubDate>Thu, 19 Feb 2009 23:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[VMware]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.escene.co.nz/?p=24</guid>
		<description><![CDATA[Browse to the hidden directory inside your home directory
.vmware
then create the following file
config
and copy the following info into the file
xkeymap.keycode.108 = 0&#215;138 # Alt_Rxkeymap.keycode.106 = 0&#215;135 # KP_Dividexkeymap.keycode.104 = 0&#215;11c # KP_Enterxkeymap.keycode.111 = 0&#215;148 # Upxkeymap.keycode.116 = 0&#215;150 # Downxkeymap.keycode.113 = 0&#215;14b # Leftxkeymap.keycode.114 = 0&#215;14d # Rightxkeymap.keycode.105 = 0&#215;11d # Control_Rxkeymap.keycode.118 = 0&#215;152 # [...]]]></description>
			<content:encoded><![CDATA[<p>Browse to the hidden directory inside your home directory</p>
<p>.vmware</p>
<p>then create the following file</p>
<p>config</p>
<p>and copy the following info into the file</p>
<p>xkeymap.keycode.108 = 0&#215;138 # Alt_R<br />xkeymap.keycode.106 = 0&#215;135 # KP_Divide<br />xkeymap.keycode.104 = 0&#215;11c # KP_Enter<br />xkeymap.keycode.111 = 0&#215;148 # Up<br />xkeymap.keycode.116 = 0&#215;150 # Down<br />xkeymap.keycode.113 = 0&#215;14b # Left<br />xkeymap.keycode.114 = 0&#215;14d # Right<br />xkeymap.keycode.105 = 0&#215;11d # Control_R<br />xkeymap.keycode.118 = 0&#215;152 # Insert<br />xkeymap.keycode.119 = 0&#215;153 # Delete<br />xkeymap.keycode.110 = 0&#215;147 # Home<br />xkeymap.keycode.115 = 0&#215;14f # End<br />xkeymap.keycode.112 = 0&#215;149 # Prior<br />xkeymap.keycode.117 = 0&#215;151 # Next<br />xkeymap.keycode.78 = 0&#215;46 # Scroll_Lock<br />xkeymap.keycode.127 = 0&#215;100 # Pause<br />xkeymap.keycode.133 = 0&#215;15b # Meta_L<br />xkeymap.keycode.134 = 0&#215;15c # Meta_R<br />xkeymap.keycode.135 = 0&#215;15d # Menu</p>
]]></content:encoded>
			<wfw:commentRss>http://www.escene.co.nz/?feed=rss2&amp;p=24</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Subclipse and Eclipse on Ubuntu</title>
		<link>http://www.escene.co.nz/?p=23</link>
		<comments>http://www.escene.co.nz/?p=23#comments</comments>
		<pubDate>Thu, 19 Feb 2009 20:37:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[eclipse]]></category>

		<guid isPermaLink="false">http://www.escene.co.nz/?p=23</guid>
		<description><![CDATA[Install libsvn-java
The package libsvn-java contains JavaHL. 
Install libsvn-java by typing the following into a command line:
sudo  apt-get install libsvn-java
then make sure you add the following to your Eclipse launcher parameters (ie add it to the end of the shortcut to eclipse):
-vmargs -Djava.library.path=/usr/lib/jni
Restart Eclipse.
]]></description>
			<content:encoded><![CDATA[<p>Install libsvn-java</p>
<p>The package libsvn-java contains JavaHL. </p>
<p>Install libsvn-java by typing the following into a command line:</p>
<p>sudo  apt-get install libsvn-java</p>
<p>then make sure you add the following to your Eclipse launcher parameters (ie add it to the end of the shortcut to eclipse):</p>
<p>-vmargs -Djava.library.path=/usr/lib/jni</p>
<p>Restart Eclipse.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.escene.co.nz/?feed=rss2&amp;p=23</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding a Column to JSON using Coldfusion8</title>
		<link>http://www.escene.co.nz/?p=22</link>
		<comments>http://www.escene.co.nz/?p=22#comments</comments>
		<pubDate>Wed, 16 Apr 2008 00:49:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Coldfusion]]></category>
		<category><![CDATA[Spry]]></category>

		<guid isPermaLink="false">http://www.escene.co.nz/?p=22</guid>
		<description><![CDATA[I use Spry to output a lot of queries that I use in my projects.
So I call my coldfusion function from Spry
var ts = new Date();var spry_ContactList = newSpry.Data.JSONDataSet(&#8220;module_contacts.cfc?method=qry_ContactsList &#038;returnFormat=json&#038; queryFormat=column&#038;TS=&#8221; + ts.toString(),{path:&#8221;DATA&#8221;, pathIsObjectOfArrays:true});
There are a couple of things to note here, first of I am using Coldfusion 8&#8217;s new returnFormat=json to return the query [...]]]></description>
			<content:encoded><![CDATA[<p>I use Spry to output a lot of queries that I use in my projects.</p>
<p>So I call my coldfusion function from Spry</p>
<blockquote><p>var ts = new Date();<br />var spry_ContactList = new<br />Spry.Data.JSONDataSet(&#8220;module_contacts.cfc?method=qry_ContactsList &#038;returnFormat=json&#038; queryFormat=column&#038;TS=&#8221; + ts.toString(),{path:&#8221;DATA&#8221;, pathIsObjectOfArrays:true});</p></blockquote>
<p>There are a couple of things to note here, first of I am using Coldfusion 8&#8217;s new returnFormat=json to return the query that resides in my function, as well as this I am also using queryFormat=column. Finally I have added on a date string to prevent browsers such as IE6 from caching the request.</p>
<p>So based on the above I can return my query as JSON, however I found that any dates were being returned in a fairly ugly way eg. March 21, 2008 00:00:00. I wanted to remove the dates and on consulting with a couple of people I came to the conclusion that doing this in Javascript would not be the best solution so I added the following after the query in my function.</p>
<blockquote><p>&lt;cfset tempArr = arrayNew(1) /&gt;<br />&lt;cfloop query=&#8221;qry_ContactsList&#8221;&gt;<br />&lt;cfset arrayAppend(tempArr, &#8220;#DateFormat(qry_ContactsList.visitdate,&#8217;dd-mm-yyyy&#8217;)#&#8221;)/&gt;<br />&lt;/cfloop&gt;<br />&lt;cfset qry_ContactsList.addColumn(&#8220;PRETTYDATE&#8221;, tempArr) /&gt;</p></blockquote>
<p>This created an additional column in the JSON that was returned, and I could now display the date as I wanted to.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.escene.co.nz/?feed=rss2&amp;p=22</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change the Date and Timezone in Centos</title>
		<link>http://www.escene.co.nz/?p=21</link>
		<comments>http://www.escene.co.nz/?p=21#comments</comments>
		<pubDate>Mon, 14 Apr 2008 21:49:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[guide]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.escene.co.nz/?p=21</guid>
		<description><![CDATA[Log into your server then retrieve the current date and timezone by typing in
date
all timezone information is stored at /usr/share/zoneinfo you can browse to this by typing
cd /usr/share/zoneinfo
you should see a list of all the available timezones including folders for countries which have multiple time zones eg. America
so to change the time zone just enter [...]]]></description>
			<content:encoded><![CDATA[<p>Log into your server then retrieve the current date and timezone by typing in</p>
<blockquote><p>date</p></blockquote>
<p>all timezone information is stored at /usr/share/zoneinfo you can browse to this by typing</p>
<blockquote><p>cd /usr/share/zoneinfo</p></blockquote>
<p>you should see a list of all the available timezones including folders for countries which have multiple time zones eg. America</p>
<p>so to change the time zone just enter the following</p>
<blockquote><p>ln -sf /usr/share/zoneinfo/Europe/London /etc/localtime</p></blockquote>
<p>If you then want to manually set the time to 30/03/2008 09:57, the format to enter the date is &#8216;mmddhhmmyyyy&#8217;<br />
<blockquote>033009572008</p></blockquote>
<p>The following command will update your hardware clock<br />
<blockquote>hwclock &#8211;systohc</p></blockquote>
<p>And now when you type in &#8216;date&#8217; you should see an up to date clock</p>
]]></content:encoded>
			<wfw:commentRss>http://www.escene.co.nz/?feed=rss2&amp;p=21</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up VSFTPD</title>
		<link>http://www.escene.co.nz/?p=20</link>
		<comments>http://www.escene.co.nz/?p=20#comments</comments>
		<pubDate>Sat, 29 Mar 2008 05:43:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[VMware]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.escene.co.nz/?p=20</guid>
		<description><![CDATA[The virtual machine I used was a centos 5 linux distribution, I then installed VSFTP
1. Install VSFTPD 
[root@localhost]# yum install vsftpd
2. Make sure vsftpd starts on bootup 
[root@localhost]# chkconfig vsftpd on
3. Switch of anonymous ftp access
[root@localhost]# vi /etc/vsftpd/vsftpd.conf
then change the line to
anonymous_enable=no
4. You can change the greeting you see when you connect to the ftp [...]]]></description>
			<content:encoded><![CDATA[<p>The virtual machine I used was a centos 5 linux distribution, I then installed VSFTP</p>
<p>1. Install VSFTPD <br />
<blockquote>[root@localhost]# yum install vsftpd</p></blockquote>
<p>2. Make sure vsftpd starts on bootup <br />
<blockquote>[root@localhost]# chkconfig vsftpd on</p></blockquote>
<p>3. Switch of anonymous ftp access<br />
<blockquote>[root@localhost]# vi /etc/vsftpd/vsftpd.conf</p></blockquote>
<p>then change the line to<br />
<blockquote>anonymous_enable=no</p></blockquote>
<p>4. You can change the greeting you see when you connect to the ftp server by changing the line<br />
<blockquote>tpd_banner= New Banner Here</p></blockquote>
<p>5. Create a user group and shared directory. In this case, use /var/www/vhosts and a user group name of ftp-users for the remote users<br />
<blockquote>[root@localhost]# groupadd ftp-users<br />[root@localhost]# mkdir /var/www/vhosts</p></blockquote>
<p>6. Make the directory accessible to the ftp-users group.<br />
<blockquote>[root@localhost]# chmod 775 /var/www/vhosts<br />[root@localhost]# chmod 775 /var/www</p></blockquote>
<p>7. Add users, and make their default directory /var/www/vhosts<br />
<blockquote>[root@localhost]# useradd -g ftp-users -d /var/www/vhosts user1</p></blockquote>
<p>8. Change the permissions of the files in the /var/www/vhosts directory for read/write only access by the group<br />
<blockquote>[root@localhost]# chown root:ftp-users /var/www/vhosts*</p></blockquote>
<p>9. Restart the VSFTPD service using<br />
<blockquote>[root@localhost]# service vsftpd restart</p></blockquote>
<p>10. Make sure you are not blocking ftp ports to the server (ftp requires port 21 to be open)<br />
<blockquote>system-config-securitylevel</p></blockquote>
<p>11. After configuring the vsftpd server on an Amazon ec2 server , I was not able to connect to vsftpd in one server from my ftp client. It throws the error:</p>
<p>500 OOPS: vsf_sysutil_recv_peek</p>
<p>The solution for this problem is to load capability module:</p>
<blockquote><p># modprobe capability</p></blockquote>
<p>12. If you are having trouble connecting with an FTP client (such as FileZilla) and receiving an error like below</p>
<p>Error: Could not read from socket: ECONNRESET &#8211; Connection reset by peer<br />Error: Disconnected from server<br />Error: Failed to retrieve directory listing</p>
<p>Then make sure you change the connection settings in the client to &#8216;active&#8217; rather than &#8216;default&#8217;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.escene.co.nz/?feed=rss2&amp;p=20</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
