<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.7.1" -->
<rss version="0.92">
<channel>
	<title>IT Answers</title>
	<link>http://answers.ironlasso.com</link>
	<description>Not just another web development blog</description>
	<lastBuildDate>Tue, 24 Aug 2010 18:56:25 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>remove files unix</title>
		<description>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'll be asked to confirm each file deletion. ...</description>
		<link>http://answers.ironlasso.com/?p=52</link>
			</item>
	<item>
		<title>how to select distinct values from array in php</title>
		<description>if you have an array and want to select the unique values in php:

$array_a = array(1=&#62;100,5=&#62;150, 8=100, 12=&#62;300)

$unique_values = array_unique($array_a)

returns

[1]=100

[5]=150

[12]=300

if you wan to "re-key" this numerically so you can step through it

$rekeyed_array = array_values($unique_values)

and you get

[0]=100

[1]=150

[2]=300 </description>
		<link>http://answers.ironlasso.com/?p=48</link>
			</item>
	<item>
		<title>Disable mysql 5.0 &#8220;data Integrity&#8221; strict tables</title>
		<description>Myql 5.0 integrates server side "data  integrity checks" by default 

if your code worked for myql 4 and now your getting messages telling you that '' 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 ...</description>
		<link>http://answers.ironlasso.com/?p=46</link>
			</item>
	<item>
		<title>.htaccess redirect all http://www.domain to http://domain</title>
		<description>RewriteEngine On
rewritecond %{http_host} www.missoulacountryclub.com [nc]
rewriterule ^(.*)$ http://missoulacountryclub.com/$1 [r=301,nc]  </description>
		<link>http://answers.ironlasso.com/?p=45</link>
			</item>
	<item>
		<title>.htacess modwest</title>
		<description>how to make .html run like .php
AddHandler cgi-script .html
 </description>
		<link>http://answers.ironlasso.com/?p=44</link>
			</item>
	<item>
		<title>mysql data directory on windows</title>
		<description>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="C:/ProgramData/MySQL/MySQL Server 5.1/Data/" </description>
		<link>http://answers.ironlasso.com/?p=43</link>
			</item>
	<item>
		<title>how to forward an aliased domain</title>
		<description>RewriteEngine on
Options +FollowSymlinks

RewriteCond %{HTTP_HOST} cindyjimmerson.com$
RewriteRule ^(.*)$ http://leanhealthcarewest.com/$1 [R=301,L] </description>
		<link>http://answers.ironlasso.com/?p=41</link>
			</item>
	<item>
		<title>stop start restart apache plesk fedora core 8</title>
		<description>go to /etc/httpd

httpd -k start

httpd -k restart

httpd -k stop </description>
		<link>http://answers.ironlasso.com/?p=38</link>
			</item>
	<item>
		<title>How to find a file in unix / linux</title>
		<description>this will search the entire file structure for the file httpd.include
 find / -name "httpd.include" -print </description>
		<link>http://answers.ironlasso.com/?p=37</link>
			</item>
	<item>
		<title>find out if you have a 64 or 32 bit processor on linux / unix</title>
		<description>uname -i </description>
		<link>http://answers.ironlasso.com/?p=36</link>
			</item>
</channel>
</rss>
