MY-SQL Cannot start session without errors | Database

phpMyAdmin - 오류
Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.


1. <? phpinfo; ?>에서 session.save_path 를 확인합니다.
일반적으로  session.save_path = /var/lib/php/session    로 지정됩니다.


# cd /usr/local/Zend/etc/php.ini

[방법1]
session.save_path = /var/lib/php/session   -->   session.save_path = /tmp

[방법2]
session.save_path 의 경로의 퍼미션을 777 로 변경
# chmod 777 /var/lib/php/session


2. 아파치 재실행하기

[방법1] <강추>
# cd /usr/local/apache
# ./bin/apachectl restart

[방법2]
# service httpd restart

Comment Write
Comment List
등록된 코멘트가 없습니다.