- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我相信这是常见的问题,当您收到警告
Warning: Your Magento folder does not have sufficient write permissions.
find . -type d -exec chmod 777 {} ;
find . -type f -exec chmod 755 {} ;
777
不同的权限,但我想使其更加安全...
/var/www/example.com/public_html
,VirtualHost部分起作用,因为
example.com
将您带到我的站点。
./mage
是否可以正确处理所有问题,有点麻烦,但是我使用SSH,因此这是我唯一的解决方案。
最佳答案
这将不是您的Apache设置-此警告与PHP将文件写入文件系统的能力有关。这就是Magento Connect的工作方式-当您与GUI前端交互时,PHP将tgz
Connect软件包下载到本地文件系统,然后将其解压缩并解压缩到您的Magento安装中。 PHP需要具有创建文件夹的功能。如果您以非特权用户身份运行apache,并且您的文件夹/文件由特权用户(通常是您的用户帐户)拥有,这意味着如果您想使用Magento Connect GUI安装软件包,则需要来提供文件夹777
。 。777
的意思是计算机上的任何用户帐户都有权在该目录中创建文件。安全风险是,如果黑客设法访问了非特权用户帐户,则他们将能够在此文件夹中创建文件,以帮助他们进一步利用服务器或利用Web应用程序本身。如果您使用的服务器上有多个用户帐户(共享主机),则这也意味着其他用户有权在这些文件夹中创建文件。
好的共享托管公司会进行监视以帮助防止这种情况的发生,但是大多数共享托管公司都不好,并且此权限问题可能是利用攻击任何基于基于PHP的Web应用程序的最常见原因。
同样,Magento Connect GUI因传递有关权限的错误信息而臭名昭著。您经常会遇到这样的情况,即它报告已成功安装某些东西,但未成功安装。如果遇到这种情况,我会在不久前写了一个n98-magerun
命令,可以正确安装或不正确安装validate a connect extension。
因此,对于您的特定问题,最好的跟踪方法是查看Magento Connect的源代码并确定它认为具有错误权限的文件/文件夹。
$ ack 'Your Magento folder does not have sufficient write permissions' downloader
downloader/lib/Mage/Connect/Command/Install.php
105: 'Your Magento folder does not have sufficient write permissions, which downloader requires.'
downloader/template/install/writable.phtml
32:<p>Your Magento folder does not have sufficient write permissions, which this web based downloader requires.</p>
downloader/template/writable.phtml
28: <h4>Warning: Your Magento folder does not have sufficient write permissions.</h4>
#File: downloader/lib/Mage/Connect/Command/Install.php
if (!$isWritable) {
$this->doError($command, $err);
throw new Exception(
'Your Magento folder does not have sufficient write permissions, which downloader requires.'
);
}
isWritable
可以设置为false的两个地方
$isWritable = is_writable($config->magento_root)
&& is_writable($config->magento_root . DIRECTORY_SEPARATOR . $config->downloader_path)
&& is_writable($config->magento_root . $dirCache)
&& is_writable($config->magento_root . $dirTmp)
&& is_writable($config->magento_root . $dirMedia);
$isWritable = $isWritable && is_writable($config->magento_root . $dirMedia)
&& is_writable($config->magento_root . $dirCache)
&& is_writable($config->magento_root . $dirTmp);
if(!$isWritable)
{
var_dump($config->magento_root);
var_dump(is_writable($config->magento_root));
var_dump($config->magento_root . $dirCache);
var_dump(is_writable($config->magento_root . $dirCache));
//etc..
}
writable.phtml
模板文件。 Magento connect有其自己的简单模板系统,因此我们要搜索呈现这些
writable.phtml templates
的位置
$ ack 'writable.phtml' downloader
downloader/template/connect/packages.phtml
28:<?php if ($this->get('writable_warning')) echo $this->template('writable.phtml');?>
packages.phtml
模板文件
$ ack 'packages.phtml' downloader
downloader/Maged/Controller.php
315: echo $this->view()->template('connect/packages.phtml');
writable_warning
变量设置为
isWritable
方法
File: downloader/Maged/Controller.php
if (!$this->isWritable() && empty($remoteConfig)) {
$this->view()->set('writable_warning', true);
}
public function isWritable()
{
if (is_null($this->_writable)) {
$this->_writable = is_writable($this->getMageDir() . DIRECTORY_SEPARATOR)
&& is_writable($this->filepath())
&& (!file_exists($this->filepath('config.ini') || is_writable($this->filepath('config.ini'))));
}
return $this->_writable;
}
if (is_null($this->_writable)) {
var_dump(is_writable($this->getMageDir() . DIRECTORY_SEPARATOR));
var_dump(is_writable($this->filepath()));
var_dump((!file_exists($this->filepath('config.ini') || is_writable($this->filepath('config.ini'));
//etc...
$this->_writable = is_writable($this->getMageDir() . DIRECTORY_SEPARATOR)
&& is_writable($this->filepath())
&& (!file_exists($this->filepath('config.ini') || is_writable($this->filepath('config.ini'))));
}
关于php - Magento Connect权限不正确(尝试了许多解决方案均无效)如何解决此问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28115138/
我是一名优秀的程序员,十分优秀!