3
在本地主機上重新安裝我的網站後出現以下錯誤。致命錯誤:require_once()與模塊.install文件,drupal 7
Fatal error: require_once() [function.require]: Failed opening required '/Applications/XAMPP/xamppfiles/htdocs/sites/all/modules/custom/redirect/redirect.install'
的.install文件確實存在,而且是下面:
1 <?php
2 /**
3 * @file
4 *
5 */
6
7 /**
8 * Implementation of hook_install().
9 */
10 function redirect_install() {
11
12 }
13
14 /**
15 * Implementation of hook_uninstall().
16 */
17 function redirect_uninstall() {
18 variable_del('desktop_site_home');
19 variable_del('mobile_site_home');
20 }
該模塊有沒有要求或包括所有語句。
有沒有人有任何想法在這裏可能會出錯?
在此先感謝...
難道XAMPP沒有權限讀取文件?該錯誤沒有具體說明該文件不存在,只是它未能打開它 – Clive 2012-01-27 17:45:38