PHP8.1.21版本已发布
vue8.1.21版本已发布
jquery8.1.21版本已发布

ThinkPHP3.2.2报错:_STORAGE_WRITE_ERROR_,_PHP教程

原创
2016-07-12 09:03:43 1762浏览

ThinkPHP3.2.2报错:_STORAGE_WRITE_ERROR_,

:(
_STORAGE_WRITE_ERROR_:./Application/Runtime/Cache/Home/50c9f5d2ef37c2cf131d5cf1381d3a4b.php
错误位置
FILE: /export/app/admin.xxx.com.cn/ThinkPHP/Library/Think/Storage/Driver/File.class.php  LINE: 47
TRACE
#0 /export/app/admin.xxx.com.cn/ThinkPHP/Library/Think/Storage/Driver/File.class.php(47): E('_STORAGE_WRITE_...')
#1 [internal function]: Think\Storage\Driver\File->put('./Application/R...', ' 
#2 /export/app/admin.xxx.com.cn/ThinkPHP/Library/Think/Storage.class.php(37): call_user_func_array(Array, Array)
#3 /export/app/admin.xxx.com.cn/ThinkPHP/Library/Think/Template.class.php(110): Think\Storage::__callstatic('put', Array) #4 /export/app/admin.xxx.com.cn/ThinkPHP/Library/Think/Template.class.php(110): Think\Storage::put('./Application/R...', '
#5 /export/app/admin.xxx.com.cn/ThinkPHP/Library/Think/Template.class.php(76): Think\Template->loadTemplate('./Application/H...', '')
#6 /export/app/admin.xxx.com.cn/ThinkPHP/Library/Behavior/ParseTemplateBehavior.class.php(32): Think\Template->fetch('./Application/H...', Array, '') #7 /export/app/admin.xxx.com.cn/ThinkPHP/Library/Think/Hook.class.php(119): Behavior\ParseTemplateBehavior->run(Array) #8 /export/app/admin.xxx.com.cn/ThinkPHP/Library/Think/Hook.class.php(89): Think\Hook::exec('Behavior\\ParseT...', 'view_parse', Array) #9 /export/app/admin.xxx.com.cn/ThinkPHP/Library/Think/View.class.php(124): Think\Hook::listen('view_parse', Array) #10 /export/app/admin.xxx.com.cn/ThinkPHP/Library/Think/View.class.php(72): Think\View->fetch('', '', '') #11 /export/app/admin.xxx.com.cn/ThinkPHP/Library/Think/Controller.class.php(56): Think\View->display('', '', '', '', '') #12 /export/app/admin.xxx.com.cn/Application/Home/Controller/LoginController.class.php(40): Think\Controller->display() #13 [internal function]: Home\Controller\LoginController->login() #14 /export/app/admin.xxx.com.cn/ThinkPHP/Library/Think/App.class.php(162): ReflectionMethod->invoke(Object(Home\Controller\LoginController)) #15 /export/app/admin.xxx.com.cn/ThinkPHP/Library/Think/App.class.php(200): Think\App::exec() #16 /export/app/admin.xxx.com.cn/ThinkPHP/Library/Think/Think.class.php(120): Think\App::run() #17 /export/app/admin.xxx.com.cn/ThinkPHP/ThinkPHP.php(96): Think\Think::start() #18 /export/app/admin.xxx.com.cn/index.php(25): require('/export/app/adm...') #19 {main} ThinkPHP3.2.2 { Fast & Simple OOP PHP Framework } -- [ WE CAN DO IT JUST THINK ]

今天服务器报错如上面代码所示,这种情况一般是硬盘满了

登录服务器:

首先查看硬盘占用情况:df -Th

看到/export分区慢了

然后查看 这个分区下的大文件(大于20M的文件)

find /export/ -size +20000k -exec ls -lh {} \;

发现是日志太大,删除后即可

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1078680.htmlTechArticleThinkPHP3.2.2报错:_STORAGE_WRITE_ERROR_, : (_STORAGE_WRITE_ERROR_ :./Application/Runtime/Cache/Home/50c9f5d2ef37c2cf131d5cf1381d3a4b. php错误位置 FILE : /export/app/admin.x...
声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。