2016-01-18 96 views
0

我們在錯誤日誌文件中收到了以下錯誤,並且無法查看活動頁面上的事件。也無法找到相關的腳本。ezPublish錯誤:index:未定義模塊:eventcalendar

index: Undefined module: eventcalendar 
error/view.php: 
Error ocurred using URI: /dffestival_eng_GB/eventcalendar/fullcalendarprogramme 

我們正在使用eZ Publish Community Project 2012.6版本。

任何人都可以請解釋如何解決這個錯誤。

感謝

+0

您是否在該問題上取得了進展?如果是,請考慮將其標記爲已解決。 – foobar

回答

0

eZ Publish的社區項目2012.6是一個eZ Publish的5.0版本的eZ的發佈和你提到的模塊可能是一個自定義的基礎上,傳統項目。

這意味着它的源代碼應該在ezpublish_legacy/extension /中。

eZ Publish 5要求傳統模塊在其module.ini.append.php中有明確的定義。

首先,找到您的自定義模塊的擴展名。你可能有這樣的ezpublish_legacy/extension/<EXTENSIONNAME>/modules/eventcalendar/

目錄定義了一個名爲fullcalendarprogramme.php一個模塊視圖然後在ezpublish_legacy/extension/<EXTENSIONNAME>/settings/module.ini.append.php編輯相關module.ini文件,並確保它看起來像這樣:

<?php /* #?ini charset="utf-8"? 
[ModuleSettings] 
ExtensionRepositories[]=EXTENSIONNAME 
ModuleList[]=eventcalendar 
*/ 

注意,fullcalendarprogramme觀點可能被定義在另一個腳本。您可以在模塊的module.php文件中找到視圖名稱和腳本之間的映射:

$ViewList['fullcalendarprogramme'] = array(
    'script' => 'fullcalendarprogramme.php' 
); 
相關問題