0

私はマジェントとLinuxが初めてです。私のローカルホストにMagentoをインストールするとき。次の警告が表示されます。

Path "/var/www/magic-of-motoring/app/etc" must be writable.
Path "/var/www/magic-of-motoring/var" must be writable.
Path "/var/www/magic-of-motoring/media" must be writable.

いくつかの調査を行いましたが、どのファイル パスまたはディレクトリを変更すればよいかわかりません。ありがとうございました

4

2 に答える 2

1

Magento を実行するには、どのアクセス許可が必要ですか?のスクリプトをお勧めします。

完全を期すために、以下に貼り付けます。

#!/bin/bash

if [ ! -f ./app/etc/local.xml ]; then
    echo "-- ERROR"
    echo "-- This doesn't look like a Magento install.  Please make sure"
    echo "-- that you are running this from the Magento main doc root dir"
    exit
fi

if [ `id -u` != 0 ]; then
    echo "-- ERROR"
    echo "-- This script should be run as root so that file ownership"
    echo "-- changes can be set correctly"
    exit
fi

find . -type f \-exec chmod 644 {} \;
find . -type d \-exec chmod 755 {} \;
find ./var -type d \-exec chmod 777 {} \;
find ./var -type f \-exec chmod 666 {} \;
find ./media -type d \-exec chmod 777 {} \;
find ./media -type f \-exec chmod 666 {} \;
chmod 777 ./app/etc
chmod 644 ./app/etc/*.xml
于 2013-07-23T16:02:23.103 に答える
1

これらのフォルダーの所有者 (3 つすべて、最後のフォルダー (メディア) の所有者を変更するための例) を www-data に変更するか、モードを 777 に変更します。

chown www-data:www-data -R /var/www/magic-of-motoring/media

于 2013-07-23T15:42:48.500 に答える