西部数码主机 | 阿里云主机| 虚拟主机 | 服务器 | 返回乐道官网
当前位置: 主页 > php教程 > magento教程 >

magento快速清空缓存PHP脚本

时间:2015-07-14 13:42来源:未知 作者:好模板 点击:
require app/Mage.php;if (!Mage::isInstalled()) { echo Application is not installed yet, please complete install wizard first.; exit;}Mage::app()-getCacheInstance()-flush();echo Flushed cache successfully; 把代码保存在网站根目录下,

require 'app/Mage.php';

if (!Mage::isInstalled()) {
    echo "Application is not installed yet, please complete install wizard first.";
    exit;
}


Mage::app()->getCacheInstance()->flush();
echo 'Flushed cache successfully';

把代码保存在网站根目录下,通过浏览器访问则可快速清空magento站点缓存

(责任编辑:好模板)
顶一下
(0)
0%
踩一下
(1)
100%
------分隔线----------------------------