如题, 本以为是由于某些冲突导致, 细查之后, 发现是开了缓存了, 把缓存关掉或是在后台清理缓存就OK了

后台清理缓存, 全局--性能优化--内存优化  清理缓存

关闭缓存, 修改全局配置文件, config/config_global.php

$_config['memory']['apc'] = 0;
$_config['memory']['xcache'] = 1;
$_config['memory']['eaccelerator'] = 1;
$_config['memory']['wincache'] = 1;

都修改为 0 , 就可以了.

相关文章:

  • 2021-06-23
  • 2022-01-06
  • 2022-12-23
  • 2022-12-23
  • 2021-10-07
  • 2021-06-09
  • 2021-10-06
猜你喜欢
  • 2022-12-23
  • 2021-10-03
  • 2022-12-23
  • 2021-09-17
  • 2021-07-06
  • 2022-12-23
  • 2022-02-16
相关资源
相似解决方案