<?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/"
	>

<channel>
	<title>IT Answers</title>
	<atom:link href="http://answers.ironlasso.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://answers.ironlasso.com</link>
	<description>Not just another web development blog</description>
	<pubDate>Tue, 24 Aug 2010 18:56:25 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>remove files unix</title>
		<link>http://answers.ironlasso.com/?p=52</link>
		<comments>http://answers.ironlasso.com/?p=52#comments</comments>
		<pubDate>Tue, 24 Aug 2010 18:56:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://answers.ironlasso.com/?p=52</guid>
		<description><![CDATA[if the delete in your ftp client doesnt work and you appear to have a bunch of empty folders that cant be deleted
rm
This command will remove (destroy) a file. You should enter this command with the  -i  option, so that you&#8217;ll be asked to confirm each file deletion. To remove a file named [...]]]></description>
			<content:encoded><![CDATA[<p>if the delete in your ftp client doesnt work and you appear to have a bunch of empty folders that cant be deleted</p>
<p>rm</p>
<p>This command will remove (destroy) a file. You should enter this command with the  -i  option, so that you&#8217;ll be asked to confirm each file deletion. To remove a file named junk, enter:<br />
rm -i junk</p>
<p>Note: Using rm will remove a file permanently, so be sure you really want to delete a file before you use rm.</p>
<p>To remove a non-empty subdirectory, rm accepts the  -r  option. On most systems this will prompt you to confirm the removal of each file. This behavior can be prevented by adding the  -f  option. To remove an entire subdirectory named oldstuff and all of its contents, enter:<br />
rm -rf oldstuff</p>
<p>Note: Using this command will cause rm to descend into each subdirectory within the specified subdirectory and remove all files without prompting you. Use this command with caution, as it is very easy to accidently delete important files. As a precaution, use the ls command to list the files within the subdirectory you wish to remove. To browse through a subdirectory named oldstuff, enter:<br />
ls -R oldstuff | less</p>
]]></content:encoded>
			<wfw:commentRss>http://answers.ironlasso.com/?feed=rss2&amp;p=52</wfw:commentRss>
		</item>
		<item>
		<title>how to select distinct values from array in php</title>
		<link>http://answers.ironlasso.com/?p=48</link>
		<comments>http://answers.ironlasso.com/?p=48#comments</comments>
		<pubDate>Tue, 13 Jul 2010 14:28:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://answers.ironlasso.com/?p=48</guid>
		<description><![CDATA[How to select unique values from an array and put them in a numerically keyed array]]></description>
			<content:encoded><![CDATA[<p>if you have an array and want to select the unique values in php:</p>
<p>$array_a = array(1=&gt;100,5=&gt;150, 8=100, 12=&gt;300)</p>
<p>$unique_values = array_unique($array_a)</p>
<p>returns</p>
<p>[1]=100</p>
<p>[5]=150</p>
<p>[12]=300</p>
<p>if you wan to &#8220;re-key&#8221; this numerically so you can step through it</p>
<p>$rekeyed_array = array_values($unique_values)</p>
<p>and you get</p>
<p>[0]=100</p>
<p>[1]=150</p>
<p>[2]=300</p>
]]></content:encoded>
			<wfw:commentRss>http://answers.ironlasso.com/?feed=rss2&amp;p=48</wfw:commentRss>
		</item>
		<item>
		<title>Disable mysql 5.0 &#8220;data Integrity&#8221; strict tables</title>
		<link>http://answers.ironlasso.com/?p=46</link>
		<comments>http://answers.ironlasso.com/?p=46#comments</comments>
		<pubDate>Mon, 03 May 2010 23:30:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[mysql 5.0]]></category>

		<guid isPermaLink="false">http://answers.ironlasso.com/?p=46</guid>
		<description><![CDATA[Myql 5.0 integrates server side &#8220;data  integrity checks&#8221; by default 
if your code worked for myql 4 and now your getting messages telling you that &#8221; isnt an integer for a new record auto inc key this may be your problem.
to fix i changed the following in my mysql.ini and restarted and everything worked [...]]]></description>
			<content:encoded><![CDATA[<p>Myql 5.0 integrates server side &#8220;data  integrity checks&#8221; by default </p>
<p>if your code worked for myql 4 and now your getting messages telling you that &#8221; isnt an integer for a new record auto inc key this may be your problem.</p>
<p>to fix i changed the following in my mysql.ini and restarted and everything worked tip top again</p>
<p># Set the SQL mode to strict<br />
#sql-mode=&#8221;STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION&#8221;<br />
sql-mode=&#8221;NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION&#8221; </p>
]]></content:encoded>
			<wfw:commentRss>http://answers.ironlasso.com/?feed=rss2&amp;p=46</wfw:commentRss>
		</item>
		<item>
		<title>.htaccess redirect all http://www.domain to http://domain</title>
		<link>http://answers.ironlasso.com/?p=45</link>
		<comments>http://answers.ironlasso.com/?p=45#comments</comments>
		<pubDate>Fri, 30 Apr 2010 13:21:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://answers.ironlasso.com/?p=45</guid>
		<description><![CDATA[RewriteEngine On
rewritecond %{http_host} www.missoulacountryclub.com [nc]
rewriterule ^(.*)$ http://missoulacountryclub.com/$1 [r=301,nc] 
]]></description>
			<content:encoded><![CDATA[<p>RewriteEngine On<br />
rewritecond %{http_host} www.missoulacountryclub.com [nc]<br />
rewriterule ^(.*)$ http://missoulacountryclub.com/$1 [r=301,nc] </p>
]]></content:encoded>
			<wfw:commentRss>http://answers.ironlasso.com/?feed=rss2&amp;p=45</wfw:commentRss>
		</item>
		<item>
		<title>.htacess modwest</title>
		<link>http://answers.ironlasso.com/?p=44</link>
		<comments>http://answers.ironlasso.com/?p=44#comments</comments>
		<pubDate>Fri, 30 Apr 2010 13:20:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://answers.ironlasso.com/?p=44</guid>
		<description><![CDATA[how to make .html run like .php
AddHandler cgi-script .html
]]></description>
			<content:encoded><![CDATA[<p>how to make .html run like .php<br />
AddHandler cgi-script .html</p>
]]></content:encoded>
			<wfw:commentRss>http://answers.ironlasso.com/?feed=rss2&amp;p=44</wfw:commentRss>
		</item>
		<item>
		<title>mysql data directory on windows</title>
		<link>http://answers.ironlasso.com/?p=43</link>
		<comments>http://answers.ironlasso.com/?p=43#comments</comments>
		<pubDate>Wed, 03 Mar 2010 16:39:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://answers.ironlasso.com/?p=43</guid>
		<description><![CDATA[for some reason i cant see the programdata folder on windows vista
i have to type the path in the address bar
thanks windows! 
datadir=&#8221;C:/ProgramData/MySQL/MySQL Server 5.1/Data/&#8221;
]]></description>
			<content:encoded><![CDATA[<p>for some reason i cant see the programdata folder on windows vista<br />
i have to type the path in the address bar</p>
<p>thanks windows! </p>
<p>datadir=&#8221;C:/ProgramData/MySQL/MySQL Server 5.1/Data/&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://answers.ironlasso.com/?feed=rss2&amp;p=43</wfw:commentRss>
		</item>
		<item>
		<title>how to forward an aliased domain</title>
		<link>http://answers.ironlasso.com/?p=41</link>
		<comments>http://answers.ironlasso.com/?p=41#comments</comments>
		<pubDate>Tue, 23 Feb 2010 13:16:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://answers.ironlasso.com/?p=41</guid>
		<description><![CDATA[RewriteEngine on
Options +FollowSymlinks
RewriteCond %{HTTP_HOST} cindyjimmerson.com$
RewriteRule ^(.*)$ http://leanhealthcarewest.com/$1 [R=301,L]
]]></description>
			<content:encoded><![CDATA[<p>RewriteEngine on<br />
Options +FollowSymlinks</p>
<p>RewriteCond %{HTTP_HOST} cindyjimmerson.com$<br />
RewriteRule ^(.*)$ <a href="http://leanhealthcarewest.com/$1">http://leanhealthcarewest.com/$1</a> [R=301,L]</p>
]]></content:encoded>
			<wfw:commentRss>http://answers.ironlasso.com/?feed=rss2&amp;p=41</wfw:commentRss>
		</item>
		<item>
		<title>stop start restart apache plesk fedora core 8</title>
		<link>http://answers.ironlasso.com/?p=38</link>
		<comments>http://answers.ironlasso.com/?p=38#comments</comments>
		<pubDate>Tue, 23 Feb 2010 12:20:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://answers.ironlasso.com/?p=38</guid>
		<description><![CDATA[go to /etc/httpd
httpd -k start
httpd -k restart
httpd -k stop
]]></description>
			<content:encoded><![CDATA[<p>go to /etc/httpd</p>
<p>httpd -k start</p>
<p>httpd -k restart</p>
<p>httpd -k stop</p>
]]></content:encoded>
			<wfw:commentRss>http://answers.ironlasso.com/?feed=rss2&amp;p=38</wfw:commentRss>
		</item>
		<item>
		<title>How to find a file in unix / linux</title>
		<link>http://answers.ironlasso.com/?p=37</link>
		<comments>http://answers.ironlasso.com/?p=37#comments</comments>
		<pubDate>Tue, 23 Feb 2010 12:13:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://answers.ironlasso.com/?p=37</guid>
		<description><![CDATA[this will search the entire file structure for the file httpd.include
 find / -name &#8220;httpd.include&#8221; -print
]]></description>
			<content:encoded><![CDATA[<p>this will search the entire file structure for the file httpd.include<br />
 find / -name &#8220;httpd.include&#8221; -print</p>
]]></content:encoded>
			<wfw:commentRss>http://answers.ironlasso.com/?feed=rss2&amp;p=37</wfw:commentRss>
		</item>
		<item>
		<title>find out if you have a 64 or 32 bit processor on linux / unix</title>
		<link>http://answers.ironlasso.com/?p=36</link>
		<comments>http://answers.ironlasso.com/?p=36#comments</comments>
		<pubDate>Fri, 19 Feb 2010 01:26:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://answers.ironlasso.com/?p=36</guid>
		<description><![CDATA[uname -i
]]></description>
			<content:encoded><![CDATA[<p>uname -i</p>
]]></content:encoded>
			<wfw:commentRss>http://answers.ironlasso.com/?feed=rss2&amp;p=36</wfw:commentRss>
		</item>
	</channel>
</rss>
