:: how to enable php-cgi on lighttpd
+ configure lighttpd for php fast cgi
# vi /etc/lighttpd/lighttpd.conf ### add some line like : ### php fastcgi on lighttpd fastcgi.server = ( ".php" => ( ( "bin-path" => "/usr/bin/php-cgi", "socket" => "/tmp/php.socket" ) ) )
+ restarting lighttpd
# /etc/init.d/lighttpd restart
+ testing file php
# vi /var/www/info.php <?php phpinfo(); ?>
then open the script using your browser.
Yeah, neat and concise tutorial.. Think to bookmarking as useful and reference to call back.. Interesting site with much to explore..
Cheers very much: blackonsole.