使用phpMyAdmin时出现问题

来源:互联网 发布:w3cschool php 手册 编辑:程序博客网 时间:2024/06/05 18:21
phpMyAdmin   -   错误 

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

解决方法:

将php.ini中的session.auto_start的值改为1(启动),默认是0(禁用),
在php的目录建立个文件夹tmp(如C:/php/tmp),设置tmp属性为ervery one完全控制。  
在php.ini找到session.save_path 这一行,设成session.save_path = "C:/php/tmp"把分号去掉

原创粉丝点击