开放分类许可问题

时间:2016-09-22 05:21:53

标签: php file-permissions

尝试上传图片时出现错误“目录无法写入”

在日志中我得到:

  

2016-09-22 00:00:22 ---错误:Kohana_Exception [0]:目录必须   可写:~APPATH / kohana / modules / image / classes / Kohana / Image.php   [633]   /home/oddsnend/public_html/oc/kohana/system/classes/Kohana/Kohana/Exception.php:110

我在查找哪个目录需要可写时遇到问题,因为它没有明确说明。请帮我解决这个问题。

2 个答案:

答案 0 :(得分:1)

对于Open Classifieds,这些目录必须是可写的:

/oc/cache
/oc/logs
/images

这些是从Open Classified documentation复制的命令。

sudo chmod -R 755 /var/ww/openclassifieds/oc/cache
sudo chown -R www-data:www-data  /var/ww/openclassifieds/oc/cache

我不确定为什么他们的文档遗漏了755 - 我不知道chmod以这种方式工作,所以我把它包括在内。

如果有任何错误,文档还会提到清除缓存:

sudo rm -f /var/ww/openclassifieds/oc/cache

答案 1 :(得分:1)

Chema,Open Classifieds创始人;)

您可以随时使用我们的论坛寻求帮助:https://forums.open-classifieds.com/

我们还安装了1个文件,用于检查安装的所有要求: https://raw.githubusercontent.com/open-classifieds/openclassifieds2/master/install-openclassifieds.php

但正如安德鲁提到的那样改变了许可方面的工作。感谢您在文档中指出权限问题,缺少xD