<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:series="http://unfoldingneurons.com/"
		>
<channel>
	<title>Comments on: Red Hat / CentOS Apache 2 FastCGI PHP Configuration</title>
	<atom:link href="http://www.cyberciti.biz/tips/rhel-centos-fedora-apache2-fastcgi-php-configuration.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.cyberciti.biz/tips/rhel-centos-fedora-apache2-fastcgi-php-configuration.html</link>
	<description>This is a Linux sys admin journal by Vivek about sys admin work, Linux tips &#38; tricks, hacks, news and more.</description>
	<lastBuildDate>Sun, 21 Mar 2010 14:15:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Kok Wen Yen</title>
		<link>http://www.cyberciti.biz/tips/rhel-centos-fedora-apache2-fastcgi-php-configuration.html#comment-154168</link>
		<dc:creator>Kok Wen Yen</dc:creator>
		<pubDate>Mon, 08 Mar 2010 12:10:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/?p=4168#comment-154168</guid>
		<description>My bad. It is indeed Fast CGI. Only thing is th in this case, Apache is the one spawning the fastcgi processes. Also, does that mean there is no need to install the mod_fastcgi module? Simply using PHP&#039;s php-cgi is sufficient?</description>
		<content:encoded><![CDATA[<p>My bad. It is indeed Fast CGI. Only thing is th in this case, Apache is the one spawning the fastcgi processes. Also, does that mean there is no need to install the mod_fastcgi module? Simply using PHP&#8217;s php-cgi is sufficient?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas</title>
		<link>http://www.cyberciti.biz/tips/rhel-centos-fedora-apache2-fastcgi-php-configuration.html#comment-152102</link>
		<dc:creator>Thomas</dc:creator>
		<pubDate>Fri, 04 Dec 2009 22:33:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/?p=4168#comment-152102</guid>
		<description>Kok Wen Yen is right, the configuration is only using CGI and NOT FastCGI.</description>
		<content:encoded><![CDATA[<p>Kok Wen Yen is right, the configuration is only using CGI and NOT FastCGI.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kok Wen Yen</title>
		<link>http://www.cyberciti.biz/tips/rhel-centos-fedora-apache2-fastcgi-php-configuration.html#comment-151973</link>
		<dc:creator>Kok Wen Yen</dc:creator>
		<pubDate>Wed, 02 Dec 2009 03:47:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/?p=4168#comment-151973</guid>
		<description>Hi, 

Are you sure the above example is executed via mod_fastcgi? The &quot;Action php5-fastcgi /cgi-bin/php.fcgi&quot; will fire the php-cgi to handle all incoming php script, i.e. only using CGI instead of FastCGI. Isn&#039;t it? 

Nowhere in your example shows the use of FastCgiServer directive which is the one that starts the fast cgi server, right? I&#039;m a bit confused here.</description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>Are you sure the above example is executed via mod_fastcgi? The &#8220;Action php5-fastcgi /cgi-bin/php.fcgi&#8221; will fire the php-cgi to handle all incoming php script, i.e. only using CGI instead of FastCGI. Isn&#8217;t it? </p>
<p>Nowhere in your example shows the use of FastCgiServer directive which is the one that starts the fast cgi server, right? I&#8217;m a bit confused here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: juggs</title>
		<link>http://www.cyberciti.biz/tips/rhel-centos-fedora-apache2-fastcgi-php-configuration.html#comment-151376</link>
		<dc:creator>juggs</dc:creator>
		<pubDate>Fri, 30 Oct 2009 19:14:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/?p=4168#comment-151376</guid>
		<description>Hi,
Nice tutorial, php /w fastcgi is up and running except for one thing,  no php-cgi processes are spawned:

root     27780  0.0  0.0 183296  3420 ?        Ss   15:09   0:00 /usr/sbin/httpd
apache   27781  0.0  0.0 183208  2292 ?        S    15:09   0:00  \_ /usr/sbin/fcgi-
apache   27782  0.0  0.0 183428  3084 ?        S    15:09   0:00  \_ /usr/sbin/httpd
apache   27783  0.0  0.0 183428  3076 ?        S    15:09   0:00  \_ /usr/sbin/httpd

I set PHP_FCGI_CHILDREN=4.  Not sure where to start troubleshooting</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Nice tutorial, php /w fastcgi is up and running except for one thing,  no php-cgi processes are spawned:</p>
<p>root     27780  0.0  0.0 183296  3420 ?        Ss   15:09   0:00 /usr/sbin/httpd<br />
apache   27781  0.0  0.0 183208  2292 ?        S    15:09   0:00  \_ /usr/sbin/fcgi-<br />
apache   27782  0.0  0.0 183428  3084 ?        S    15:09   0:00  \_ /usr/sbin/httpd<br />
apache   27783  0.0  0.0 183428  3076 ?        S    15:09   0:00  \_ /usr/sbin/httpd</p>
<p>I set PHP_FCGI_CHILDREN=4.  Not sure where to start troubleshooting</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mvug</title>
		<link>http://www.cyberciti.biz/tips/rhel-centos-fedora-apache2-fastcgi-php-configuration.html#comment-151076</link>
		<dc:creator>mvug</dc:creator>
		<pubDate>Fri, 16 Oct 2009 08:11:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/?p=4168#comment-151076</guid>
		<description>Hi,

thanx for the tutorial! But, I am getting the error: 
command not in docroot (/home/website/cgi-bin/php.fcgi)

What can I do? thanx!</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>thanx for the tutorial! But, I am getting the error:<br />
command not in docroot (/home/website/cgi-bin/php.fcgi)</p>
<p>What can I do? thanx!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ecmidas</title>
		<link>http://www.cyberciti.biz/tips/rhel-centos-fedora-apache2-fastcgi-php-configuration.html#comment-150620</link>
		<dc:creator>ecmidas</dc:creator>
		<pubDate>Sat, 12 Sep 2009 07:25:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/?p=4168#comment-150620</guid>
		<description>First of all, thank you for the helpful article.
and i have a question about Zend Optimizer, in these combination, can Zend Optimizer be used together?
Any helpful comment would be great.
Thanks in advance.</description>
		<content:encoded><![CDATA[<p>First of all, thank you for the helpful article.<br />
and i have a question about Zend Optimizer, in these combination, can Zend Optimizer be used together?<br />
Any helpful comment would be great.<br />
Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: celik</title>
		<link>http://www.cyberciti.biz/tips/rhel-centos-fedora-apache2-fastcgi-php-configuration.html#comment-150346</link>
		<dc:creator>celik</dc:creator>
		<pubDate>Tue, 25 Aug 2009 08:43:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/?p=4168#comment-150346</guid>
		<description>hi all of this ok . it is  run in console but not in browser

get a message 
&quot;The requested URL /var/www/cgi-bin/php.fcgi/index.php was not found on this server.&quot;

conf -&gt;
	
		DirectoryIndex index.php index.htm index.html 
		Options Indexes FollowSymLinks +ExecCGI
		AllowOverride None
		AddHandler php5-fastcgi .php
		Action php5-fastcgi /var/www/cgi-bin/php.fcgi 
		Order allow,deny
		Allow from all
	

can u help me ?</description>
		<content:encoded><![CDATA[<p>hi all of this ok . it is  run in console but not in browser</p>
<p>get a message<br />
&#8220;The requested URL /var/www/cgi-bin/php.fcgi/index.php was not found on this server.&#8221;</p>
<p>conf -&gt;</p>
<p>		DirectoryIndex index.php index.htm index.html<br />
		Options Indexes FollowSymLinks +ExecCGI<br />
		AllowOverride None<br />
		AddHandler php5-fastcgi .php<br />
		Action php5-fastcgi /var/www/cgi-bin/php.fcgi<br />
		Order allow,deny<br />
		Allow from all</p>
<p>can u help me ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Caspar Schutte</title>
		<link>http://www.cyberciti.biz/tips/rhel-centos-fedora-apache2-fastcgi-php-configuration.html#comment-148850</link>
		<dc:creator>Caspar Schutte</dc:creator>
		<pubDate>Fri, 05 Jun 2009 14:54:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/?p=4168#comment-148850</guid>
		<description>Thank you!!!  These instructions worked for me on CentOS 5.2.  You saved me many hours of frustration.</description>
		<content:encoded><![CDATA[<p>Thank you!!!  These instructions worked for me on CentOS 5.2.  You saved me many hours of frustration.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tomcat</title>
		<link>http://www.cyberciti.biz/tips/rhel-centos-fedora-apache2-fastcgi-php-configuration.html#comment-148523</link>
		<dc:creator>Tomcat</dc:creator>
		<pubDate>Tue, 12 May 2009 14:01:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/?p=4168#comment-148523</guid>
		<description>Anyone got this working with Plesk 8.x on CentOS? I am getting a PHP source dump on accessing PHP files. Came to know that Plesk 9.2 supports PHP as FastCGI on Linux. But I need to get it working on Plesk 8.x.</description>
		<content:encoded><![CDATA[<p>Anyone got this working with Plesk 8.x on CentOS? I am getting a PHP source dump on accessing PHP files. Came to know that Plesk 9.2 supports PHP as FastCGI on Linux. But I need to get it working on Plesk 8.x.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vivek Gite</title>
		<link>http://www.cyberciti.biz/tips/rhel-centos-fedora-apache2-fastcgi-php-configuration.html#comment-147758</link>
		<dc:creator>Vivek Gite</dc:creator>
		<pubDate>Thu, 19 Mar 2009 18:51:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/?p=4168#comment-147758</guid>
		<description>Set top_dir=/usr/lib/httpd and install httpd-devel package.</description>
		<content:encoded><![CDATA[<p>Set top_dir=/usr/lib/httpd and install httpd-devel package.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jason</title>
		<link>http://www.cyberciti.biz/tips/rhel-centos-fedora-apache2-fastcgi-php-configuration.html#comment-147757</link>
		<dc:creator>jason</dc:creator>
		<pubDate>Thu, 19 Mar 2009 18:36:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/?p=4168#comment-147757</guid>
		<description>i cant compile mod_fastcgi on centos 4!
Makefile:13: /usr/local/apache2/build/special.mk: No such file or directory
make: *** No rule to make target `/usr/local/apache2/build/special.mk&#039;.  Stop.
Whats the problem :S</description>
		<content:encoded><![CDATA[<p>i cant compile mod_fastcgi on centos 4!<br />
Makefile:13: /usr/local/apache2/build/special.mk: No such file or directory<br />
make: *** No rule to make target `/usr/local/apache2/build/special.mk&#8217;.  Stop.<br />
Whats the problem :S</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: omega13a</title>
		<link>http://www.cyberciti.biz/tips/rhel-centos-fedora-apache2-fastcgi-php-configuration.html#comment-146795</link>
		<dc:creator>omega13a</dc:creator>
		<pubDate>Tue, 20 Jan 2009 03:52:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/?p=4168#comment-146795</guid>
		<description>I tried that but now all I get is a blank page on my website. I followed all the instructions... Maybe it has something to do with the fact I have Plesk also installed?</description>
		<content:encoded><![CDATA[<p>I tried that but now all I get is a blank page on my website. I followed all the instructions&#8230; Maybe it has something to do with the fact I have Plesk also installed?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: solshark</title>
		<link>http://www.cyberciti.biz/tips/rhel-centos-fedora-apache2-fastcgi-php-configuration.html#comment-146626</link>
		<dc:creator>solshark</dc:creator>
		<pubDate>Fri, 09 Jan 2009 14:39:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/?p=4168#comment-146626</guid>
		<description>Thx. Simple and clean. Have just tested on my live CentOS server and all works fine.</description>
		<content:encoded><![CDATA[<p>Thx. Simple and clean. Have just tested on my live CentOS server and all works fine.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.188 seconds -->
