|
From: Jonathan A. <jo...@sq...> - 2004-10-22 05:27:46
|
Hello Jake20,
On Thursday, October 21, 2004, Jake20 wrote...
> Hi
> If someone is able to offer assistance on this it would be appreciated.
> I run my own version of Squirrelmail (1.4.3a) on space that I purchase from a
> remote Web hosting company (i.e. this is because they don't provide a port 80
> webmail, and I also wanted my own installation for plugin flexibility etc). I
> have the client set to do a auto refresh every 2 minutes. Every now and then
> (about 12 times in a working day) I get the error:
> PHP Fatal error: session_start(): Failed to initialize storage module: user
> (path: /tmp)
> in
> /home/nidts/public_html/nidts/squirrelmail/functions/global.php on
> line 295
SquirrelMail requries the session.save_handler to be set to files and
not user. user seems to allow the author of the PHP applications to
create their own session handler, which we have not yet done.
According to the PHP documentation, you can probably change that
variable in an .htaccess file.
<Directory /path/to/your/squirrelmail>
php_flag session.save_handler files
</Directory>
I believe that is the correct syntax, however you might want to
validate it.
--
Jonathan Angliss
(jo...@sq...)
Posting Hints: http://www.squirrelmail.org/wiki/en_US/MailingListPostingGuidelines
|