<?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>Srinath's blog &#187; Web Servers</title>
	<atom:link href="http://srinath.co.in/category/web-servers/feed/" rel="self" type="application/rss+xml" />
	<link>http://srinath.co.in</link>
	<description>dinga linga ling !!!</description>
	<lastBuildDate>Wed, 03 Jun 2009 07:11:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Fixing Php Max execution time</title>
		<link>http://srinath.co.in/2009/04/23/fixing-php-max-execution-time/</link>
		<comments>http://srinath.co.in/2009/04/23/fixing-php-max-execution-time/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 15:15:17 +0000</pubDate>
		<dc:creator>Srinath</dc:creator>
				<category><![CDATA[Web Servers]]></category>
		<category><![CDATA[Fatal error: Maximum execution time of 30 seconds exceeded]]></category>
		<category><![CDATA[max execution time]]></category>
		<category><![CDATA[max_execution_time]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://srinath.co.in/?p=50</guid>
		<description><![CDATA[When you execute a php script you might come across this error
Fatal error: Maximum execution time of 30 seconds exceeded

What does it mean ?
It means that your execution of your php script time has exceeded.
How to fix it ?
Its simple if you have root access then edit the php.ini
/usr/local/lib/php.ini 
if it&#8217;s not found there then [...]]]></description>
			<content:encoded><![CDATA[<p>When you execute a php script you might come across this error</p>
<p><code>Fatal error: Maximum execution time of 30 seconds exceeded</code></p>
<p><span id="more-50"></span><br />
What does it mean ?<br />
It means that your execution of your php script time has exceeded.</p>
<p>How to fix it ?<br />
Its simple if you have root access then edit the php.ini</p>
<p><code>/usr/local/lib/php.ini</code> </p>
<p>if it&#8217;s not found there then try</p>
<p><code>$ find /etc -name "php.ini"</code><br />
or if it is not there then<br />
<code>$find / -name "php.ini"</code></p>
<p>edit php.ini find<br />
<code>max_execution_time</code><br />
now change the number to your needs.</p>
<p>if you don&#8217;t have root access and you are on shared hosting then open notepad<br />
copy paste this and save as php.ini and upload it to your script folder.<br />
<code>max_execution_time = 600</code> /// 600 in seconds. you might need to change it for your needs.</p>
]]></content:encoded>
			<wfw:commentRss>http://srinath.co.in/2009/04/23/fixing-php-max-execution-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Running Xampp and IIS on same PC</title>
		<link>http://srinath.co.in/2009/04/23/running-xampp-and-iis-on-same-pc/</link>
		<comments>http://srinath.co.in/2009/04/23/running-xampp-and-iis-on-same-pc/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 12:19:08 +0000</pubDate>
		<dc:creator>Srinath</dc:creator>
				<category><![CDATA[Web Servers]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[ssl port]]></category>
		<category><![CDATA[xampp]]></category>

		<guid isPermaLink="false">http://srinath.co.in/?p=48</guid>
		<description><![CDATA[I tried to run both IIS and Xampp (apache) on same server but at first it didnt work. All web servers work on default port 80. So inorder to make Xampp work on IIS installed server then you need to change the xampp (apache) port to different. In order to run xampp on different port [...]]]></description>
			<content:encoded><![CDATA[<p>I tried to run both IIS and Xampp (apache) on same server but at first it didnt work. All web servers work on default port 80. So inorder to make Xampp work on IIS installed server then you need to change the xampp (apache) port to different. In order to run xampp on different port you need to edit the httpd.conf file.</p>
<p><code>C:\xampp\apache\conf\httpd.conf:</code></p>
<blockquote><p>
Search for “Listen 80″, change to “Listen 70″<br />
Search for “ServerName localhost:80″, change to “ServerName localhost:70″
</p></blockquote>
<p>To make SSL work edit the following file</p>
<p><code>C:\xampp\apache\conf\extra\httpd-ssl.conf</code></p>
<blockquote><p>
Search for “Listen 443″, change to “Listen 4421″<br />
Search for “ServerName localhost:443″, change to “ServerName localhost:4421″<br />
Search for  VirtualHost _default_:443>, change to VirtualHost _default_:4421>
</p></blockquote>
<p>Now restart Apache and you are done now. you have to access xampp throught http://localhost:70 and SSL via https://localhost:4421</p>
<p>Alternatively you can run Xampp by disabling IIS and vice verse.</p>
]]></content:encoded>
			<wfw:commentRss>http://srinath.co.in/2009/04/23/running-xampp-and-iis-on-same-pc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
