中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Magento中怎么設置文件與文件夾權限

發布時間:2021-07-23 11:33:45 來源:億速云 閱讀:179 作者:Leah 欄目:系統運維

這期內容當中小編將會給大家帶來有關Magento中怎么設置文件與文件夾權限,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。



SSH方式(適用于獨立服務器VPS


代碼如下:


find . -type f -exec chmod 644 {} ;
find . -type d -exec chmod 755 {} ;
chmod o+w var var/.htaccess app/etc
chmod 550 mage
chmod -R o+w media
If that is not working, try setting all directories to 777 by doing this:
find . -type f -exec chmod 644 {} ;
find . -type d -exec chmod 777 {} ;
chmod o+w var/.htaccess
chmod 550 mage



magento中操作

比如二級菜單不可用,Magento Connect 不可用,圖片不顯示等等,大部分原因都是文件權限沒設置或者設置不當引起的。下面是基本的文件及文件夾設置。

755權限


代碼如下:


magento/app/etc
magento/media
magento/app
magento/skin
magento/var
magento/var/.htaccess
magento/js
magento/downloader
644權限
magento/index.php
magento/downloader/index.php


php修改權限

代碼如下:


<?php
## 設置文件644,目錄755
function AllDirChmod( $dir = "./", $dirModes = 0755, $fileModes = 0644 ){
$d = new RecursiveDirectoryIterator( $dir );
foreach( new RecursiveIteratorIterator( $d, 1 ) as $path ){
if( $path->isDir() ) chmod( $path, $dirModes );
else if( is_file( $path ) ) chmod( $path, $fileModes );
}
}
?>

上述就是小編為大家分享的Magento中怎么設置文件與文件夾權限了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

永吉县| 邵东县| 依安县| 汽车| 黄骅市| 青海省| 纳雍县| 修文县| 颍上县| 阿勒泰市| 宜阳县| 汉沽区| 越西县| 甘孜| 河北省| 高淳县| 金川县| 庄浪县| 富蕴县| 青海省| 山丹县| 古浪县| 东乡| 台东县| 靖远县| 阜新| 武汉市| 和顺县| 巴林左旗| 庆阳市| 永兴县| 邵武市| 永德县| 塔河县| 四川省| 巴彦淖尔市| 读书| 奉贤区| 平乡县| 普陀区| 桑植县|