警告:您的Magento的文件夹没有足够的写权限(Warning: Your Magento fol

2019-08-31 12:54发布

我是新来的Magento,我试图通过安装Magento的主题连接管理器,我复制和粘贴再延长密钥点击安装,然后proceed.I得到错误“警告:您的Magento的文件夹没有足够的写权限。”

请给一些解决方案。任何帮助将高度赞赏。

Answer 1:

去Magento的主目录,并只给权限的根目录。

e.g. (in ubuntu) : sudo chown -R www-data .

您还可以更改权限

chmod 777  -R downloader/*

我希望它能帮助。

[编辑]

怎么样在你的Magento目录(使用sudo下面,如果需要的命令。):

find . -type d -exec chmod 775 {} \;
find . -type f -exec chmod 664 {} \;

对于Magento的商店的正常运行或安装,只有2个文件夹需要是可写的:

/media - for web accessible files, such as product images
/var - for temporary (cache, session) and import/export files

这里来源



Answer 2:

若要将文件的权限运行:

find . -type d -exec chmod 775 {} \;
find . -type f -exec chmod 664 {} \;
chmod 777 -R downloader var media


Answer 3:

在我而言,这是不够的。 我必须设置777 permision还父文件夹 - 的public_html(不递归)。



Answer 4:

下面是我写的,以帮助你的Magento安装的,你安装权限/所有权的完整shell脚本: MAGE-设置烫发

shell脚本是基于Magento的官方文章中建议, 在这里



Answer 5:

随着我的作品与此重置权限:

chmod -R 777 media/
chmod -R 755 var/

我按照这个网址的一些说明: http://www.magentocommerce.com/wiki/groups/227/resetting_file_permissions



Answer 6:

我用其他的解决方案上市,例如:

cd /var/www/html
find . -type d -exec chmod 775 {} \;
find . -type f -exec chmod 664 {} \; 
chmod -R 777 downloader var media

但我也不得不这样做:

chown apache:apache /var/www/html

“:根根”,造成的问题(通过继续显示Magento的错误消息)由于网站根目录仍然归。



Answer 7:

所有这些的什么工作是public_html# find . -type d -exec chmod 775 {} \; public_html# find . -type d -exec chmod 775 {} \;chgrp -R www-data

这将返回使用本地文件系统的能力,而不是FTP

755没有群创建和删除权限,使775工作

返回/媒体和/ var权限回/public_html/media# find . -type d -exec chmod 777 {} \; /public_html/media# find . -type d -exec chmod 777 {} \; /public_html/var# find . -type d -exec chmod 777 {} \;



文章来源: Warning: Your Magento folder does not have sufficient write permissions
标签: magento