Magento中文件與文件夾權(quán)限設(shè)置方法
發(fā)布日期:2022-04-05 15:18 | 文章來源:源碼中國
如:安裝插件,批量導(dǎo)入,后臺配置,等等讓人頭痛?,F(xiàn)在提供兩種方式處理該權(quán)限問題
SSH方式(適用于獨立服務(wù)器或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 不可用,圖片不顯示等等,大部分原因都是文件權(quán)限沒設(shè)置或者設(shè)置不當(dāng)引起的。下面是基本的文件及文件夾設(shè)置。
755權(quán)限
magento/app/etc
magento/media
magento/app
magento/skin
magento/var
magento/var/.htaccess
magento/js
magento/downloader
644權(quán)限
magento/index.php
magento/downloader/index.php
php修改權(quán)限
<?php
## 設(shè)置文件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 );
}
}
?>
SSH方式(適用于獨立服務(wù)器或VPS)
復(fù)制代碼
代碼如下: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 不可用,圖片不顯示等等,大部分原因都是文件權(quán)限沒設(shè)置或者設(shè)置不當(dāng)引起的。下面是基本的文件及文件夾設(shè)置。
755權(quán)限
復(fù)制代碼
代碼如下:magento/app/etc
magento/media
magento/app
magento/skin
magento/var
magento/var/.htaccess
magento/js
magento/downloader
644權(quán)限
magento/index.php
magento/downloader/index.php
php修改權(quán)限
復(fù)制代碼
代碼如下:<?php
## 設(shè)置文件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 );
}
}
?>
版權(quán)聲明:本站文章來源標注為YINGSOO的內(nèi)容版權(quán)均為本站所有,歡迎引用、轉(zhuǎn)載,請保持原文完整并注明來源及原文鏈接。禁止復(fù)制或仿造本網(wǎng)站,禁止在非www.sddonglingsh.com所屬的服務(wù)器上建立鏡像,否則將依法追究法律責(zé)任。本站部分內(nèi)容來源于網(wǎng)友推薦、互聯(lián)網(wǎng)收集整理而來,僅供學(xué)習(xí)參考,不代表本站立場,如有內(nèi)容涉嫌侵權(quán),請聯(lián)系alex-e#qq.com處理。
相關(guān)文章