1 頁 (共 1 頁)

[問題已解決] 論壇程序2.0.10升級到2.0.11的問題

發表於 : 2005-01-04 16:20
arti
參考這裡升級
http://www.phpbb.com/phpBB/viewtopic.php?t=240611
請問各位前輩高手,
我修改之後執行update_to_2011.php就出現這些錯誤,
不知該要修改哪裡,還是哪裡做錯了,好像是少了什麼?
小弟第一次幫人升級可是出現如下訊息,

  • Warning: main(./../extension.inc): failed to open stream: No such file or directory in D:\\www\cofilm.net#qioeurqwe\phpbbs\update_to_2011.php on line 46

    Warning: main(./../extension.inc): failed to open stream: No such file or directory in D:\www\cofilm.net#qioeurqwe\phpbbs\update_to_2011.php on line 46

    Warning: main(): Failed opening './../extension.inc' for inclusion (include_path='.;c:\php4\pear') in D:\www\cofilm.net#qioeurqwe\phpbbs\update_to_2011.php on line 46

    Warning: main(./../config.): failed to open stream: No such file or directory in D:\www\cofilm.net#qioeurqwe\phpbbs\update_to_2011.php on line 47

    Warning: main(./../config.): failed to open stream: No such file or directory in D:\www\cofilm.net#qioeurqwe\phpbbs\update_to_2011.php on line 47

    Warning: main(): Failed opening './../config.' for inclusion (include_path='.;c:\php4\pear') in D:\www\cofilm.net#qioeurqwe\phpbbs\update_to_2011.php on line 47
    Please read: INSTALL.html before attempting to update.

圖檔

這update檔的46、47行內容如下

代碼: 選擇全部

define('IN_PHPBB', 1);
$phpbb_root_path = './../';
46行→[color=red]include($phpbb_root_path . 'extension.inc');[/color]
47行→[color=red]include($phpbb_root_path . 'config.'.$phpEx);[/color]
if(!isset($dbms))

發表於 : 2005-01-04 16:26
webspirit
你如果將 update_to_2011.php 置於 phpBB 安裝目錄下執行
則 $phpbb_root_path = './../'; 要改成 $phpbb_root_path = './';

發表於 : 2005-01-04 17:04
arti
可以了,感謝wedspirit前輩!
再請問一下原本是不是應該放在install這匣子裡進行升級。

發表於 : 2005-01-04 17:24
webspirit
install 資料夾不是在安裝完成時已刪除了嗎?
當然你為了配合升級程式再建立也是可以的 ^^

發表於 : 2005-01-04 23:46
arti
是已經刪除了,但是看您寫的修改UPDATE這檔方法,
才想說如果不修改是不是應該放在install裡進行升級。