在管理使用Magento的,當我點擊配置標籤,我得到以下錯誤:Magento的錯誤:Class_Magestore_Magenotification_Helper_Data找不到
"Fatal error: Class 'Magestore_Magenotification_Helper_Data' not found in."
有誰知道爲什麼會發生,以及如何解決它?
在管理使用Magento的,當我點擊配置標籤,我得到以下錯誤:Magento的錯誤:Class_Magestore_Magenotification_Helper_Data找不到
"Fatal error: Class 'Magestore_Magenotification_Helper_Data' not found in."
有誰知道爲什麼會發生,以及如何解決它?
通常,只有在您的幫助器數據丟失時纔會出現此錯誤。檢查您的Data.php
文件在your_code_pool/Magestore/Magenotification/Helper
。如果該文件不存在,請檢查您的下載模塊,或聯繫@Magestore如果通過Magento的安裝進行連接此模塊或創建Data.php
文件與下面的代碼:哪些文件有(這可能僅修復上述錯誤)
<?php
class Magestore_Magenotification_Helper_Data extends Mage_Core_Helper_Abstract
{
}
您需要禁用該模塊。在您的代碼庫中轉至app/etc/modules
並打開文件Magestore_Magenotification.xml
並將<active>
節點更改爲false
。清除magento緩存並重新加載頁面。
在我的magento文件夾中,在此路徑應用程序\ etc \ modules中,我沒有任何名稱文件,如'Magestore_Magenotifcation.xml'。 Elangovan, – Elangovan
這是小錯誤。我感覺它是Magestore_Magenotification.xml。再檢查一次 –
請檢查模塊的3210,並驗證模塊名稱空間必須與app/etc/modulename_namespace.xml
下的模塊名稱空間相匹配。
?如果你沒有看到xml文件那裏。把你的擴展目錄結構。 –