We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
系统安装后,登陆后后台无法显示菜单,系统环境为:windows10 ,upupw 套件,apache 2.4 、php5.3
找了很久发现是缓存问题,“系统安装程序”在安装成功后会更新所有缓存,但不知CI默认的缓存驱动器用的是file还是apc,或者其他。
暂时将global_helper.php文件中的setcache全局方法修改为使用file驱动器: $CI->cache->save($name, $data, $timesec); 修改为: $CI->cache->file->save($name, $data, $timesec);
The text was updated successfully, but these errors were encountered:
是在application少了一个文件夹上传应该有一个叫cache的文件夹,少上传了
Sorry, something went wrong.
我也遇到相同的問題 進入后台 看不到菜單 可以請問 要如何做嗎???
新版已经修复了这个问题了
再次感謝 hubinjie thank you
No branches or pull requests
系统安装后,登陆后后台无法显示菜单,系统环境为:windows10 ,upupw 套件,apache 2.4 、php5.3
找了很久发现是缓存问题,“系统安装程序”在安装成功后会更新所有缓存,但不知CI默认的缓存驱动器用的是file还是apc,或者其他。
暂时将global_helper.php文件中的setcache全局方法修改为使用file驱动器:
$CI->cache->save($name, $data, $timesec);
修改为:
$CI->cache->file->save($name, $data, $timesec);
The text was updated successfully, but these errors were encountered: