Session Error

TheBiaatch

Verified User
Joined
Jul 30, 2007
Messages
8
Hi,


Since I messed a few thing up during the weekend, I had to replace my php.ini file with the default one. Since then I can't get any sessiosn to work. This means I can't login with anything that uses Sessions.

Also whenever I try to access phpMyAdmin I get this error:
Code:
"Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly."

here is phpinfo:

Code:
PHP Version 5.2.5

System 	Linux server.XXXXX.XXXX 2.6.18-8.1.8.el5 #1 SMP Tue Jul 10 06:50:22 EDT 2007 i686
Build Date 	Dec 11 2007 20:52:24
Configure Command 	'./configure' '--with-apxs2' '--with-curl=/usr/local/lib' '--with-gd' '--enable-gd-native-ttf' '--with-ttf' '--with-gettext' '--with-jpeg-dir=/usr/local/lib' '--with-freetype-dir=/usr/local/lib' '--with-kerberos' '--with-openssl' '--with-mcrypt' '--with-mhash' '--with-mysql=/usr' '--with-mysqli=/usr/bin/mysql_config' '--with-pear' '--with-png-dir=/usr/local/lib' '--with-zlib' '--with-zlib-dir=/usr/local/lib' '--enable-zip' '--with-iconv=/usr/local' '--enable-bcmath' '--enable-calendar' '--enable-ftp' '--enable-magic-quotes' '--enable-sockets' '--enable-mbstring'
Server API 	Apache 2.0 Handler
Virtual Directory Support 	disabled
Configuration File (php.ini) Path 	/usr/local/lib
Loaded Configuration File 	/usr/local/lib/php.ini
PHP API 	20041225
PHP Extension 	20060613
Zend Extension 	220060519
Debug Build 	no
Thread Safety 	disabled
Zend Memory Manager 	enabled
IPv6 Support 	enabled
Registered PHP Streams 	zip, php, file, data, http, ftp, compress.zlib, https, ftps
Registered Stream Socket Transports 	tcp, udp, unix, udg, ssl, sslv3, sslv2, tls
Registered Stream Filters 	string.rot13, string.toupper, string.tolower, string.strip_tags, convert.*, consumed, convert.iconv.*, zlib.*


Any help and/or suggestions would be appreciated.

Thx
 
Also whenever I try to access phpMyAdmin I get this error:
Code:
"Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly."
For certain Php scripts, sessions are saved in /tmp directory. Make sure the permission is set properly:
chmod 777 /tmp
 
Back
Top