Fatal error: session_start(): Failed to initialize storage module:

SUMMARY

Fatal error: session_start(): Failed to initialize storage module: user (path: /tmp) in /clientdata/www/au/d/directoryassist.com.au/phplive/index.php on line 5

SOLUTION

Try changing your current php.ini settings for session.save_handler user to session.save_handler files.

Edit your php.ini file from:

[Session]
; Handler used to store/retrieve data.
session.save_handler = user

to

[Session]
; Handler used to store/retrieve data.
session.save_handler = files

 

If you do not have access to the php.ini file, you may try an alternate .htaccess rewrite method.

Edit your .htaccess and place the following lines:

RewriteEngine On
php_value session.save_handler files

 Article ID: 97
 Created: October 26, 2005
 Updated: November 4, 2005
 Rating: 3.41 (266 votes)
(266 votes)

Can't find your answer? Ask a Question, and we'll get back with you.

  © OSI Codes, Inc. All Rights Reserved