Roundcube Community Forum

 

Another blank page issue

Started by SteveE, January 04, 2007, 10:39:03 AM

Previous topic - Next topic

SteveE

I've been looking for a decent and friendly webmail client for a while (squirrelmail is pretty darned ugly :)) and out of everything I've found RoundCube looks the best.
So, on the new mail server I'm setting up I have installed SLES 9 with LDAP Authentication for IMAP mail, which is working great. So I move to setting up RoundCube, got a mySQL database setup and configured, the roundcube user has access, edited the db.inc.php and main.inc.php for the configuration...but still get a blank page

The apache2 error logs only show this error when the page is accessed, no other errors
PHP Fatal error: Call to undefined function: session_set_save_handler() in /srv/www/htdocs/webmail/program/include/session.inc on line 152I can only guess that I maybe missing an install but it looks like everything is in place. This is the line it's failing on, any ideas what I may have missed? info.php shows the PHP is good...I did notice one thing, it's a x86_64 system, could that be the problem?
// set custom functions for PHP session management
session_set_save_handler('sess_open', 'sess_close', 'sess_read', 'sess_write', 'sess_destroy', 'sess_gc');

jpingle

Just a quick guess: Perhaps the PHP session extension (session.so) is not loaded or compiled in?

SteveE

That's exactly what was missing php4-session :-[
Thanks! :D

jpingle

You're welcome, I'm glad it was something simple. :)