CODE
fastcgi.server += ( ".php" =>
( "Localhost" =>
(
"socket" => "/var/run/lighttpd/php-fastcgi.socket",
"bin-path" => "/usr/bin/php-cgi"
)
)
)
( "Localhost" =>
(
"socket" => "/var/run/lighttpd/php-fastcgi.socket",
"bin-path" => "/usr/bin/php-cgi"
)
)
)
With out the += it would give me errors. Also modified /etc/php5/cgi/php.ini adding cgi.fix_pathinfo = 1
When i do <?php phpinfo();?> there is no reference to mysql.
Phpmyadmin also gives me the following error: Cannot load mysql extension.
Any ideas suggestions I really need to get this to work.