0

我正在尝试为本地机器上的 magento 重新索引我的 url 重写。我使用 Mac,所以我有终端。当我运行 /Applications/MAMP/htdocs/..../shell/indexer.php: Permission denied 它说权限被拒绝。

4

2 回答 2

0

indexer.php 不是 shell 脚本(或有 shebang 行)。您必须使用 PHP 运行它:

<path to php>/php <magento root>/shell/indexer.php
于 2013-03-17T01:58:29.243 回答
-2

做一个

sudo chmod -R 777 /path/to/magento

在您的终端中仅用于在您的本地主机上进行测试!!!

在您的生活环境中执行此操作

find top/directory -type f -exec chmod 0644 '{}' \;
find top/directory -type d -exec chmod 0755 '{}' \;
于 2013-02-25T16:17:24.220 回答