<?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>999 solutions &#187; All Tutorials</title>
	<atom:link href="http://www.999solutions.com/category/all-tutorials/feed" rel="self" type="application/rss+xml" />
	<link>http://www.999solutions.com</link>
	<description></description>
	<lastBuildDate>Thu, 13 May 2010 18:59:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Mysql common queries</title>
		<link>http://www.999solutions.com/mysql-common-queries</link>
		<comments>http://www.999solutions.com/mysql-common-queries#comments</comments>
		<pubDate>Fri, 22 Jan 2010 14:23:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[All Tutorials]]></category>

		<guid isPermaLink="false">http://www.999solutions.com/?p=205</guid>
		<description><![CDATA[To view database tables details:
SHOW TABLE STATUS ; 
How change tables database engine:
ALTER TABLE bug_details ENGINE = MyISAM; 
How read and import csv file data:

LOAD DATA
   LOCAL INFILE &#8216;C:/uk.csv&#8217;
INTO TABLE myTable
FIELDS TERMINATED BY &#8216;,&#8217; ENCLOSED BY &#8216;&#8221;&#8216; LINES TERMINATED BY &#8216;\n&#8217; (
    id,
    tableField1,
    [...]]]></description>
		<wfw:commentRss>http://www.999solutions.com/mysql-common-queries/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install Mysql server</title>
		<link>http://www.999solutions.com/how-to-install-mysql-server</link>
		<comments>http://www.999solutions.com/how-to-install-mysql-server#comments</comments>
		<pubDate>Fri, 22 Jan 2010 14:18:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[All Tutorials]]></category>

		<guid isPermaLink="false">http://www.999solutions.com/?p=202</guid>
		<description><![CDATA[Step:1 Download latest Mysql from:
http://dev.mysql.com/downloads/mysql/5.1.html#win32 (Windows Essentials (x86))
Step:2 Then run installer.
]]></description>
		<wfw:commentRss>http://www.999solutions.com/how-to-install-mysql-server/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP file upload</title>
		<link>http://www.999solutions.com/php-file-upload</link>
		<comments>http://www.999solutions.com/php-file-upload#comments</comments>
		<pubDate>Sat, 19 Dec 2009 02:58:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[All Tutorials]]></category>

		<guid isPermaLink="false">http://www.999solutions.com/?p=54</guid>
		<description><![CDATA[Ideas about PHP file upload Security
    * Check the referrer
    * Restrict file types
    * Rename files (check double-barreld extensions like upload.php.gif and eliminate extensions you don&#8217;t allow)
    * Change permissions
]]></description>
		<wfw:commentRss>http://www.999solutions.com/php-file-upload/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Apache Configurations with PHP5</title>
		<link>http://www.999solutions.com/apache-configurations-with-php5</link>
		<comments>http://www.999solutions.com/apache-configurations-with-php5#comments</comments>
		<pubDate>Sat, 19 Dec 2009 02:56:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[All Tutorials]]></category>

		<guid isPermaLink="false">http://www.999solutions.com/?p=52</guid>
		<description><![CDATA[We need to edit the httpd.conf in C:\ server\Apache\conf to make sure that Apache knows where is php modules.
Step 1:
Add the following lines at the end of httpd.conf.
LoadModule php5_module &#8220;C:/server/php/php5apache2_2.dll&#8221;
PHPIniDir &#8220;C:/server/php/&#8221;
AddType application/x-httpd-php .php
Step 2:
Find this line in  httpd.conf.
DirectoryIndex index.html
and add:
DirectoryIndex index.html index.php
Step 3:
Find this line in httpd.conf.

    Options FollowSymLinks
   [...]]]></description>
		<wfw:commentRss>http://www.999solutions.com/apache-configurations-with-php5/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How install Php 5</title>
		<link>http://www.999solutions.com/how-install-php-5</link>
		<comments>http://www.999solutions.com/how-install-php-5#comments</comments>
		<pubDate>Sat, 19 Dec 2009 02:53:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[All Tutorials]]></category>

		<guid isPermaLink="false">http://www.999solutions.com/?p=46</guid>
		<description><![CDATA[Download PHP5 the Windows Binaries: http://uk3.php.net/get/php-5.2.9-2-Win32.zip
Step1.
Unzip the file to C:\server\php.
Step2.
You must include the Windows PATH environment variable by using following steps.



Step 3.
Go to C:\server\php and find the php.ini-recommended. Rename this file to php.ini.
Find the line with extension_dir = &#8220;./&#8221; and change it to: extension_dir = &#8220;C:\server\php\ext&#8221;
Find the line with ;session.save_path = &#8220;/tmp&#8221; and change it [...]]]></description>
		<wfw:commentRss>http://www.999solutions.com/how-install-php-5/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Insall Apache</title>
		<link>http://www.999solutions.com/insall-apache</link>
		<comments>http://www.999solutions.com/insall-apache#comments</comments>
		<pubDate>Thu, 17 Dec 2009 19:00:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[All Tutorials]]></category>

		<guid isPermaLink="false">http://www.999solutions.com/?p=3</guid>
		<description><![CDATA[Install Apache on Windows XP
Download latest Apache from::http://httpd.apache.org/download.cgi  (apache_2.2.11-win32-x86-no_ssl.msi)
Create a folder with a name &#8220;server&#8221; on C:\
This is the folder where all of our apache, php, mysql and tmp files will be kept.

Installing Apache:
On the downloaded &#8220;apache_2.2.11-win32-x86-no_ssl&#8221; click and this will start the installation of Apache server










click Finish to exit setup
To test if Apache [...]]]></description>
		<wfw:commentRss>http://www.999solutions.com/insall-apache/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
