<?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>The Css Bug &#187; Apache</title>
	<atom:link href="http://thecssbug.com/category/apache/feed" rel="self" type="application/rss+xml" />
	<link>http://thecssbug.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Wed, 29 Jul 2009 15:52:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Wamp wamp</title>
		<link>http://thecssbug.com/wamp-wamp</link>
		<comments>http://thecssbug.com/wamp-wamp#comments</comments>
		<pubDate>Mon, 06 Jul 2009 20:37:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[article]]></category>
		<category><![CDATA[Sitepoint]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[wamp]]></category>

		<guid isPermaLink="false">http://thecssbug.com/?p=102</guid>
		<description><![CDATA[With the lunch of the 4th edition of the &#8220;Build Your Own Database Driven Web Site Using PHP &#38; MySQL&#8221; book, the SitePoint team starts by offering a superb free tutorial on installing the WAMP platform.
WampServer (where Wamp stands for Windows, Apache, MySQL, and PHP) is a free, all-in-one program that includes built-in copies of [...]]]></description>
			<content:encoded><![CDATA[<p>With the lunch of the 4th edition of the &#8220;Build Your Own Database Driven Web Site Using PHP &amp; MySQL&#8221; book, the SitePoint team starts by offering a superb free tutorial on installing the WAMP platform.</p>
<p>WampServer (where Wamp stands for Windows, Apache, MySQL, and PHP) is a free, all-in-one program that includes built-in copies of recent versions of the Apache web server, PHP, and MySQL.</p>
<p>Full article on  <a href="http://www.sitepoint.com/article/php-amp-mysql-1-installation/">SitePoint</a></p>
]]></content:encoded>
			<wfw:commentRss>http://thecssbug.com/wamp-wamp/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change php max_execution_time value without having access to php.ini</title>
		<link>http://thecssbug.com/change-php-max_execution_time-value-without-having-access-to-phpini</link>
		<comments>http://thecssbug.com/change-php-max_execution_time-value-without-having-access-to-phpini#comments</comments>
		<pubDate>Sun, 12 Apr 2009 21:16:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[max_execution_time]]></category>
		<category><![CDATA[php.ini]]></category>
		<category><![CDATA[web serve]]></category>

		<guid isPermaLink="false">http://thecssbug.com/?p=75</guid>
		<description><![CDATA[If you are in a shared server environment, and you don&#8217;t have access to the php.ini file,  or you want to set php parameters on a per-site basis, you can use the .htaccess file (when running on an Apache webserver).
For instance, in order to change the max_execution_time value, all you need to do is edit [...]]]></description>
			<content:encoded><![CDATA[<p>If you are in a shared server environment, and you don&#8217;t have access to the php.ini file,  or you want to set php parameters on a per-site basis, you can use the .htaccess file (when running on an Apache webserver).</p>
<p>For instance, in order to change the max_execution_time value, all you need to do is edit .htaccess (located in the root of your website, usually accesible by FTP), and add this line:</p>
<pre class="brush: php">

php_value max_execution_time 120
</pre>
<p>where 120 is the number of seconds you wish to set the maximum execution time for a php script.<br />
There are 2 types of variables that can be set:</p>
<dl>
<dt class="varlistentry"><span class="term"> </span> </dt>
</dl>
<dl>
<dt class="varlistentry"><span class="term"> </span> </dt>
</dl>
<p>1. The values of  specific directives can be set using <code class="systemitem systemitem">php_value</code> <em><tt class="parameter">name</tt></em> <em><tt class="parameter">value</tt></em><span class="term"><code class="systemitem systemitem">. Ex:</code></span></p>
<pre class="brush: php">

php_value memory_limit 128M
</pre>
<p>2.Boolean varibles can be set using <span class="term"><code class="systemitem systemitem">a </code></span><code class="systemitem systemitem">php_flag</code> <em><tt class="parameter">name</tt></em> <em><tt class="parameter">on|off </tt></em><span class="term"><code class="systemitem systemitem">directive. Ex:</code></span></p>
<pre class="brush: php">

php_flag magic_quotes_gpc Off
</pre>
<dl>
<dt class="varlistentry"> <span class="term"> <code class="systemitem systemitem"><br />
</code><em><tt class="parameter"></tt></em> </span> </dt>
</dl>
<p>Other values that can be changed through the .htaccess are:<br />
<span class="link">allow_url_fopen</span><br />
<span class="link">allow_url_inc</span><span class="link">l</span><span class="link">ude</span><br />
<a class="link" href="http://us2.php.net/manual/en/apc.configuration.php#ini.apc.cache-by-default"></a>arg_separator<br />
<span class="link">arg_separator.input</span><br />
<span class="link">arg_separator.output</span><br />
<span class="link">asp_tags</span><br />
<span class="link">default_charset</span><br />
<span class="link">default_mimetype</span><br />
<span class="link">default_socket_timeout</span><br />
<span class="link">define_syslog_variables</span><br />
detect_unicode<br />
<span class="link">display_errors</span><br />
<span class="link">display_startup_errors</span><br />
<span class="link">docref_ext</span><br />
<span class="link">docref_root<br />
</span><span class="link">engine<br />
</span><span class="link">error_append_string</span><a class="link" href="http://us2.php.net/manual/en/errorfunc.configuration.php#ini.docref-root"><br />
</a><span class="link">error_log<br />
</span><span class="link">error_prepend_string</span><a class="link" href="http://us2.php.net/manual/en/errorfunc.configuration.php#ini.docref-root"><br />
</a><span class="link">error_reporting<br />
</span><span class="link">gpc_order<br />
</span><span class="link">html_errors<br />
http.allowed_methods</span><a class="link" href="http://us2.php.net/manual/en/errorfunc.configuration.php#ini.docref-root"><br />
</a><span class="link">log_errors<br />
</span><span class="link">log_errors_max_len</span><a class="link" href="http://us2.php.net/manual/en/errorfunc.configuration.php#ini.docref-root"><br />
</a><span class="link">magic_quotes_gpc<br />
</span><span class="link">magic_quotes_runtime</span><a class="link" href="http://us2.php.net/manual/en/errorfunc.configuration.php#ini.docref-root"><br />
</a><span class="link">max_execution_time<br />
</span><span class="link">max_input_time<br />
</span><span class="link">memory_limit<br />
</span><span class="link">msql.allow_persistent<br />
</span><span class="link">mysql.allow_persistent<br />
mysql.cache_size</span><a class="link" href="http://us2.php.net/manual/en/errorfunc.configuration.php#ini.docref-root"><br />
</a><span class="link">mysql.connect_timeout<br />
</span><span class="link">mysql.default_host<br />
</span><span class="link">mysql.default_port<br />
</span><span class="link">mysql.max_persistent<br />
</span><span class="link">post_max_s</span><span class="link">i</span><span class="link">ze<br />
</span><span class="link">regis</span><span class="link">t</span><span class="link">er_glo</span><span class="link">b</span><span class="link">als<br />
</span><span class="link">register_long_arrays<br />
</span><span class="link">safe_mode<br />
</span><span class="link">sendmail_from</span><span class="link"><br />
</span><span class="link">session.auto_start<br />
</span><span class="link">session.cache_expire<br />
</span><span class="link">session.cache_limiter<br />
</span><span class="link">session.use_cookies<br />
</span><span class="link">short_open_tag<br />
</span><span class="link">smtp_port<br />
</span><span class="link">upload_max_filesize<br />
</span><span class="link">url_rewriter.tags<br />
</span><span class="link">user_agent<br />
</span><span class="link">user_dir<br />
</span><span class="link">zlib.output_compression</span></p>
<p><em>Note: You will need      &#8220;AllowOverride Options&#8221; or &#8220;AllowOverride All&#8221; privileges in order to be able to use htaccess to modify php variables.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://thecssbug.com/change-php-max_execution_time-value-without-having-access-to-phpini/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
