我正在网站上工作,其中有一家商店已经上线,而我正试图让第二家商店/网站正常运作。
新网站有一个模板,其中包含一些观察者,即使我通过系统 - >禁用模块配置 - >高级,因为这只禁用模块输出而不是实际模块,因此如果有任何观察者,它们仍将被加载并将运行。
在线搜索并没有找到完整的解决方案。在this other post上,用户Eric Hainer提出了一个解决方案,允许根据$ _SERVER [' MAGE_RUN_CODE']变量加载模块,但如果您将缓存设置为活动状态,则此功能无效加载包含模块的商店会将它们放入缓存中。
所以我的解决方案是修改文件 app / code / core / Mage / Core / Model / Config / Options.php根据商店将缓存保存在不同的文件夹中
首先我将文件复制到app / code / local / Mage / Core / Model / Config / Options.php以避免更改核心文件
并在构造函数中添加了这行
//custom code to save cache on different folders per website
$runCode = (isset($_SERVER['MAGE_RUN_CODE']) ? $_SERVER['MAGE_RUN_CODE'] : 'default');
$this->_data['cache_dir'] = $this->_data['var_dir'].DS.'cache'.$runCode;
以下是构造函数的外观
protected function _construct()
{
$appRoot= Mage::getRoot();
$root = dirname($appRoot);
$this->_data['app_dir'] = $appRoot;
$this->_data['base_dir'] = $root;
$this->_data['code_dir'] = $appRoot.DS.'code';
$this->_data['design_dir'] = $appRoot.DS.'design';
$this->_data['etc_dir'] = $appRoot.DS.'etc';
$this->_data['lib_dir'] = $root.DS.'lib';
$this->_data['locale_dir'] = $appRoot.DS.'locale';
$this->_data['media_dir'] = $root.DS.'media';
$this->_data['skin_dir'] = $root.DS.'skin';
$this->_data['var_dir'] = $this->getVarDir();
$this->_data['tmp_dir'] = $this->_data['var_dir'].DS.'tmp';
//custom code to save cache on different folders per website
$runCode = (isset($_SERVER['MAGE_RUN_CODE']) ? $_SERVER['MAGE_RUN_CODE'] : 'default');
$this->_data['cache_dir'] = $this->_data['var_dir'].DS.'cache'.$runCode;
$this->_data['log_dir'] = $this->_data['var_dir'].DS.'log';
$this->_data['session_dir'] = $this->_data['var_dir'].DS.'session';
$this->_data['upload_dir'] = $this->_data['media_dir'].DS.'upload';
$this->_data['export_dir'] = $this->_data['var_dir'].DS.'export';
}
这可以胜任,但有一些问题:
还有其他办法吗?
这篇文章continues here
答案 0 :(得分:0)
在高级下的后端禁用每个商店的模块输出。然后编辑模块观察器函数并检查该配置以禁用完整的模块功能:
if(Mage::getStoreConfigFlag('advanced/modules_disable_output/YOUR_MODULE'))
return false;
大多数社区模块已经拥有自己的配置来启用/禁用每个商店的功能。