<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Qashare's Weblog</title>
	<atom:link href="http://qashare.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://qashare.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Thu, 28 May 2009 02:54:10 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='qashare.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/1d1131615bb2bb85a84c6bcf33cdb1cd?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Qashare's Weblog</title>
		<link>http://qashare.wordpress.com</link>
	</image>
			<item>
		<title>Mantis Installation</title>
		<link>http://qashare.wordpress.com/2008/03/18/mantis-installation/</link>
		<comments>http://qashare.wordpress.com/2008/03/18/mantis-installation/#comments</comments>
		<pubDate>Tue, 18 Mar 2008 04:00:58 +0000</pubDate>
		<dc:creator>qashare</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://qashare.wordpress.com/?p=5</guid>
		<description><![CDATA[Installation Package Include
1. apache_2.2.2-win32-x86-no_ssl.msi
2. php-5.2.5-Win32.zip
3. mantis-1.1.0
4. Mysql Server 5.0.18 version
5. Mysql Client(Navicat)
Steps:
1. Install Mysql Server 5.0.18.
a. Install the Mysql.
b. In &#8220;MySQL.com Sign-Up&#8221; step, click the &#8220;Skip Sign-Up&#8221; radio button and go to &#8220;Next.&#8221;
c. Click next keeping the combo “Configure the MySQL Server&#8221; checked in. Click finish.
Configuring Server:
a. Choose Detailed Configuration
b. Keep Clicking Next until Window [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=qashare.wordpress.com&blog=3116295&post=5&subd=qashare&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Installation Package Include<br />
1. apache_2.2.2-win32-x86-no_ssl.msi<br />
2. php-5.2.5-Win32.zip<br />
3. mantis-1.1.0<br />
4. Mysql Server 5.0.18 version<br />
5. Mysql Client(Navicat)</p>
<p>Steps:<br />
1. Install Mysql Server 5.0.18.<br />
a. Install the Mysql.<br />
b. In &#8220;MySQL.com Sign-Up&#8221; step, click the &#8220;Skip Sign-Up&#8221; radio button and go to &#8220;Next.&#8221;</p>
<p>c. Click next keeping the combo “Configure the MySQL Server&#8221; checked in. Click finish.<br />
Configuring Server:<br />
a. Choose Detailed Configuration<br />
b. Keep Clicking Next until Window Options arrives. Check in “Include Bin Directory in Windows PATH”.<br />
c. Set root password. Check in Enable root access from remote machine.<br />
d. Restart the computer.&#8221;<br />
2. Install Mysql Client (Navicat).<br />
3. Create a User named &#8216;mantisdbuser&#8217; and a database &#8216;bugtracker&#8217; and the user needs to have read/write access to the Mantis database.<br />
4. Install apache_2.2.2-win32-x86-no_ssl.msi.<br />
a. During Apache HTTP Server installation set Network Domain = localhost (or the domain the computer belongs); Server Name = localhost (should use the name<br />
of the computer); Administrator Email = admin@localhost (or appropriate).<br />
b. Before going to the next level check in the radio button “only for the Current User, on Port 8080, when started Manually”. Later on we will install Apache as a Service.&#8221;<br />
5. PHP 5.2.5:<br />
a. Create a directory. C:\PHP and extract the zip content into it.<br />
b. Copy the php.ini-dist to the same directory and rename it as php.ini.</p>
<p>Modification in the file PHP\php.ini:<br />
a. Find extension_dir variable and replace the value to &#8220;C:\PHP\ext\&#8221; (extension_dir = &#8220;C:\PHP\ext\&#8221;)<br />
b. Find extension=php_mysql.dll an uncomment it.&#8221;<br />
6. Now modify the file located at &#8230;\Apache2.2\conf\httpd.conf</p>
<p>a. To add php-module, add this line (preferably in the section where other modules are added): LoadModule php5_module &#8220;c:/php/php5apache2_2.dll&#8221;<br />
b. To define php initial directory add the line : PHPIniDir &#8220;c:/php&#8221;<br />
c. To associate php file type to browser add the line: AddType application/x-httpd-php .php<br />
d. DirectoryIndex sets the file that Apache will serve if a directory is requested.Set DirectoryIndex index.php&#8221;<br />
7. Installing New Apache Service:<br />
a. On command line type cd C:\Program Files\Apache Software Foundation\Apache2.2\bin\ . Now execute command httpd.exe –k install –n Apache2. It will<br />
create a service named Apache2. Unblock the port.<br />
b. Start the service from the taskbar.&#8221;<br />
8. Create a file in … \Apache2.2\htdocs directory with .php extension such as phpinfo.php. Paste the following code<br />
&lt;?php<br />
echo phpinfo();<br />
?&gt;&#8221;<br />
9. Go to http://localhost:8080/phpinfo.php . A page like below will appear.</p>
<p>10. Now rename &#8216;mantis-1.1.0&#8242; folder as &#8216;mantis&#8217;. Copy whole mantis project under C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\ directory.<br />
11. Restart Apache2 Service.<br />
12. In browser type http://localhost:8080/mantis/admin/install.php</p>
<p>13. Provide database user name,password,root,database root password and then press Install/Upgrade Database button.<br />
14.On successful completion &#8216;GOOD&#8217; term will appear in each step.<br />
15. now you can login to mantis. Initial userid:&#8217;administrator&#8217; password=&#8217;root&#8217;</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/qashare.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/qashare.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/qashare.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/qashare.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/qashare.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/qashare.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/qashare.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/qashare.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/qashare.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/qashare.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/qashare.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/qashare.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=qashare.wordpress.com&blog=3116295&post=5&subd=qashare&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://qashare.wordpress.com/2008/03/18/mantis-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/14dc2706d816de41abf38f79ca3c49ab?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">qashare</media:title>
		</media:content>
	</item>
		<item>
		<title>PHP deployment in IIS6.0</title>
		<link>http://qashare.wordpress.com/2008/03/18/php-deployment-in-iis60/</link>
		<comments>http://qashare.wordpress.com/2008/03/18/php-deployment-in-iis60/#comments</comments>
		<pubDate>Tue, 18 Mar 2008 03:49:01 +0000</pubDate>
		<dc:creator>qashare</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://qashare.wordpress.com/?p=3</guid>
		<description><![CDATA[1.  Extract php zip folder to C:\php.
2.  Copy php.ini-recommended to a directory that PHP is able to find and rename it to php.ini.
3.  Edit php.ini and Set doc_root = c:\inetpub\wwwroot // for IIS/PWS [optional]
4.  For IS, Set the browscap configuration setting to c:\windows\system32\inetsrv\browscap.ini on XP.
5.  Set Environment variable:
* Click on [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=qashare.wordpress.com&blog=3116295&post=3&subd=qashare&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>1.  Extract php zip folder to C:\php.</p>
<p>2.  Copy php.ini-recommended to a directory that PHP is able to find and rename it to php.ini.</p>
<p>3.  Edit php.ini and Set doc_root = c:\inetpub\wwwroot // for IIS/PWS [optional]</p>
<p>4.  For IS, Set the browscap configuration setting to c:\windows\system32\inetsrv\browscap.ini on XP.<br />
5.  Set Environment variable:</p>
<p>* Click on the &#8216;Environment Variables&#8217; button from MY Computer property.<br />
* Look into the &#8216;System variables&#8217; panel<br />
* Find the &#8216;Path&#8217; entry (may need to scroll to find it)<br />
* Double click on the &#8216;Path&#8217; entry<br />
* Enter PHP directory at the end, including &#8216;;&#8217; before (e.g.<br />
;C:\php)<br />
* Click on &#8216;New&#8217; and enter &#8216;PHPRC&#8217; as the variable name and the<br />
directory where php.ini is located as the variable value (e.g.<br />
C:\php)<br />
* Press OK and restart your computer</p>
<p>6.   Set extension_dir = &#8220;c:\php\ext&#8221;</p>
<p>7. To enable IIS 6.0 to run 32-bit applications on 64-bit Windows</p>
<p>1. Open a command prompt and navigate to the %systemdrive%\Inetpub\AdminScripts directory.<br />
2. Type the following command:<br />
cscript.exe adsutil.vbs set W3SVC/AppPools/Enable32BitAppOnWin64 &#8220;true&#8221;<br />
3. Press ENTER.</p>
<p>8. Need to start the Microsoft Management Console (may appear as &#8216;Internet Services Manager&#8217;, either in your Windows NT 4.0 Option Pack branch or the Control Panel=&gt;Administrative Tools under Windows 2000/XP). Then right click on your Web server node (this will<br />
most probably appear as &#8216;Default Web Server&#8217;), and select &#8216;Properties&#8217;.</p>
<p>To use the ISAPI module, do the following:</p>
<p>* If you don&#8217;t want to perform HTTP Authentication using PHP, you can<br />
(and should) skip this step. Under ISAPI Filters, add a new ISAPI<br />
filter. Use PHP as the filter name, and supply a path to the<br />
php4isapi.dll / php5isapi.dll.<br />
* Under &#8216;Home Directory&#8217;, &#8216;Virtual Directory&#8217;, or &#8216;Directory&#8217;, do the<br />
following:<br />
* Change the Execute Permissions to &#8216;Scripts only&#8217;<br />
* Click on the &#8216;Configuration&#8217; button, and choose the Application<br />
Mappings tab. Click Add and set the Executable path to the<br />
appropriate ISAPI DLL. An example PHP 5 value is:<br />
C:\php\php5isapi.dll Supply .php as the extension. Leave &#8216;Method<br />
exclusions&#8217; blank, and check the &#8216;Script engine&#8217; checkbox. Now,<br />
click OK a few times.<br />
* Stop IIS completely (NET STOP iisadmin)<br />
* Start IIS again (NET START w3svc)</p>
<p>9.   With IIS 6 (2003 Server), open up the IIS Manager, go to Web Service Extensions, choose &#8220;Add a new Web service extension&#8221;, enter in a name such as PHP, choose the Add button and for the value browse to the ISAPI file (p4isapi.dll or php5isapi.dll) and then check &#8220;Set extension status to Allowed&#8221; and click OK.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/qashare.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/qashare.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/qashare.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/qashare.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/qashare.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/qashare.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/qashare.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/qashare.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/qashare.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/qashare.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/qashare.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/qashare.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=qashare.wordpress.com&blog=3116295&post=3&subd=qashare&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://qashare.wordpress.com/2008/03/18/php-deployment-in-iis60/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/14dc2706d816de41abf38f79ca3c49ab?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">qashare</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello world!</title>
		<link>http://qashare.wordpress.com/2008/03/10/hello-world/</link>
		<comments>http://qashare.wordpress.com/2008/03/10/hello-world/#comments</comments>
		<pubDate>Mon, 10 Mar 2008 15:00:13 +0000</pubDate>
		<dc:creator>qashare</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Welcome to my blog&#8230;Step by step i will share my interest and learnings here.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=qashare.wordpress.com&blog=3116295&post=1&subd=qashare&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Welcome to my blog&#8230;Step by step i will share my interest and learnings here.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/qashare.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/qashare.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/qashare.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/qashare.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/qashare.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/qashare.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/qashare.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/qashare.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/qashare.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/qashare.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/qashare.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/qashare.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=qashare.wordpress.com&blog=3116295&post=1&subd=qashare&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://qashare.wordpress.com/2008/03/10/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/14dc2706d816de41abf38f79ca3c49ab?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">qashare</media:title>
		</media:content>
	</item>
	</channel>
</rss>