I am trying to install drupal on a lighttpd+php fastcgi setup on a gentoo box
drupal - 4.6.0
php - 5.0.3 (w/eaccelerator and php-cgi ebuilds)
lighttpd - 1.3.13
mysql - 4.0.22-r2
I tried googling for drupal+fastcgi and drupal+lighttpd , but didnt turn out helpful.
my lighttpd php fastcgi setup is:
fastcgi.server = ( ".php" =>
( "localhost" =>
(
"socket" => "/tmp/php-fastcgi.sock",
"bin-path" => "/usr/bin/php-cgi",
"bin-environment" => (
"PHP_FCGI_CHILDREN" => "10",
"PHP_FCGI_MAX_REQUESTS" => "10000"
),
"bin-copy-environment" => (
"PATH", "SHELL", "USER"
)
)
)
)
my /etc/php/cgi-php5/php.ini :
cgi-php.ini
after setting up the database and sites/default/settings.php with proper database values, when i try to access the index.php, the following error occurs:
Fatal error: Call to undefined function session_set_save_handler() in /.../includes/session.inc on line 9
any pointers ?
cheers,
Ganesh.