服务报价 | 域名主机 | 网络营销 | 软件工具| [加入收藏]
 热线电话: #
当前位置: 主页 > php教程 > magento教程 >

Magento文件夹文件权限设置与缓存清理的PHP脚本

时间:2016-01-26 14:16来源: 作者: 点击:
Magento权限设置与缓存清理的PHP脚本 有很多linux下的命令来修改Magento文件夹问价的权限设置,这里给大家推荐个PHP实现的权限设置,直接扔到根目录运行即可。 ?php ## 设置文件644,目录

Magento权限设置与缓存清理的PHP脚本

有很多linux下的命令来修改Magento文件夹问价的权限设置,这里给大家推荐个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 );
}
}

## 清除指定目录
function cleandir($dir) {
if ($handle = opendir($dir)) {
while (false !== ($file = readdir($handle))) {
if ($file != ‘.’ && $file != ‘..’ && is_file($dir.’/’.$file)) {
if (unlink($dir.’/’.$file)) { }
else { echo $dir . ‘/’ . $file . ‘ (file) NOT deleted!<br />’; }
}
else if ($file != ‘.’ && $file != ‘..’ && is_dir($dir.’/’.$file)) {
cleandir($dir.’/’.$file);
if (rmdir($dir.’/’.$file)) { }
else { echo $dir . ‘/’ . $file . ‘ (directory) NOT deleted!<br />’; }
}
}
closedir($handle);
}
}

## 判断目录是否为空
function isDirEmpty($dir){
return (($files = @scandir($dir)) && count($files) <= 2);
}

echo “———————– CLEANUP START ————————-<br/>”;
$start = (float) array_sum(explode(‘ ‘,microtime()));
echo “<br/>*************** SETTING PERMISSIONS ***************<br/>”;
echo “Setting all folder permissions to 755<br/>”;
echo “Setting all file permissions to 644<br/>”;
AllDirChmod( “.” );
echo “Setting pear permissions to 550<br/>”;
chmod(“pear”, 550);

echo “<br/>****************** CLEARING CACHE ******************<br/>”;

if (file_exists(“var/cache”)) {
echo “Clearing var/cache<br/>”;
cleandir(“var/cache”);
}

if (file_exists(“var/session”)) {
echo “Clearing var/session<br/>”;
cleandir(“var/session”);
}

if (file_exists(“var/minifycache”)) {
echo “Clearing var/minifycache<br/>”;
cleandir(“var/minifycache”);
}

if (file_exists(“downloader/pearlib/cache”)) {
echo “Clearing downloader/pearlib/cache<br/>”;
cleandir(“downloader/pearlib/cache”);
}

if (file_exists(“downloader/pearlib/download”)) {
echo “Clearing downloader/pearlib/download<br/>”;
cleandir(“downloader/pearlib/download”);
}

if (file_exists(“downloader/pearlib/pear.ini”)) {
echo “Removing downloader/pearlib/pear.ini<br/>”;
unlink (“downloader/pearlib/pear.ini”);
}

echo “<br/>************** CHECKING FOR EXTENSIONS ***********<br/>”;
If (!isDirEmpty(“app/code/local/”)) {
echo “-= WARNING =- Overrides or extensions exist in the app/code/local folder<br/>”;
}
If (!isDirEmpty(“app/code/community/”)) {
echo “-= WARNING =- Overrides or extensions exist in the app/code/community folder<br/>”;
}
$end = (float) array_sum(explode(‘ ‘,microtime()));
echo “<br/>——————- CLEANUP COMPLETED in:”. sprintf(“%.4f”, ($end-$start)).” seconds ——————<br/>”;
?>

 

(责任编辑:最模板)
顶一下
(0)
0%
踩一下
(0)
0%
------分隔线----------------------------
栏目列表
热点内容