报错怎么办

来源:2-5 惯例配置

垂死挣扎

2017-11-02 12:32

数组能打印出来,但是下面报错,这是啥意思

 Fatal error: Uncaught think\exception\ErrorException: mkdir(): Permission denied in /var/www/tp5/thinkphp/library/think/log/driver/File.php:50 Stack trace: #0 [internal function]: think\Error::appError(2, 'mkdir(): Permis...', '/var/www/tp5/th...', 50, Array) #1 /var/www/tp5/thinkphp/library/think/log/driver/File.php(50): mkdir('/var/www/tp5/ru...', 493, true) #2 /var/www/tp5/thinkphp/library/think/Log.php(157): think\log\driver\File->save(Array) #3 /var/www/tp5/thinkphp/library/think/Error.php(84): think\Log::save() #4 [internal function]: think\Error::appShutdown() #5 {main} thrown in /var/www/tp5/thinkphp/library/think/log/driver/File.php on line 50

写回答 关注

1回答

  • 冒雨先生
    2017-11-02 15:55:01

    这个问题一看就知道是权限问题,所以我们可以轻易地切换到tp5目录然后使用chmod -R 777 tp5来解决,当然不太建议这样做,这不符合我们在线上的操作方式。一种比较推荐的做法是执行chmod -R daemon:daemon tp5来进行处理,这是因为在Mac上默认的Apache用户为daemon,当然你也可以通过在配置文件中修改用户名和所属组来解决这一问题。


    垂死挣扎

    试过了,不行,我是centos不是mac,但是不行

    2017-11-03 09:00:49

    共 1 条回复 >

快速入门ThinkPHP 5.0--基础篇

ThinkPHP5已发布多时,想了解ThinkPHP5的新特性吗?老司机带你马上出发~

58655 学习 · 495 问题

查看课程

相似问题