当前位置: 代码迷 >> 综合 >> tp5配置项目出现错误 session_start(): No session id returned by function
  详细解决方案

tp5配置项目出现错误 session_start(): No session id returned by function

热度:63   发布时间:2023-12-15 06:17:13.0

在本地配置项目是出现如下情况:

本地session配置:

 出现这种情况得原因是,memcache接管了session,而我没有安装memcache扩展,安装memcache扩展就好了

使用PHP info查看自己得扩展是否安装成功,若能搜到表示memcache扩展安装成功

注意:若使用得是memcache缓存,本地则需用memcache,且本地需安装memcached服务

PS:若是用得redis缓存,也可能出现这种情况,安装redis扩展并运行即可

 memcached下载及安装方式:https://www.runoob.com/memcached/window-install-memcached.html

memcache扩展下载地址:https://download.csdn.net/download/robin_sky/12655787

  相关解决方案