2016年4月23日 星期六

Magento檔案權限

在安裝Magento2後.

Magento檔案權限


問題是常有的事情.

產品圖片無法顯示.

管理者選單執行無反應.

這些事情大多因為檔案權限設定有誤.

造成功能不全或無反應.

這時候可到

vender/Magento/framework/Filesystem

找到DriverInterface.php

找到以下程式碼並修改為:

  /**
     * Permissions to give read/write/execute access to owner and owning group, but not to all users
     */

    const WRITEABLE_DIRECTORY_MODE = 0775;

    /**
     * Permissions to give read/write access to owner and owning group, but not to all users
     */

    const WRITEABLE_FILE_MODE = 0665;

修改後清除快取就能開始使用Magento2

沒有留言: