1 頁 (共 1 頁)

[已解決]phpBB 從 2.0.20 升級至 2.0.21 後,引言功能故障

發表於 : 2007-04-24 08:12
小斌
我使用了 phpBB 官方網站的 codechanges 搭配 EasyMOD 進行升級。在升級完後,發現引言的功能故障了,情況如下所述。

以下的內容

代碼: 選擇全部

[quote="Line 1"]Hello![/quote]
在預覽時與發表後,就會變成這樣的東西

代碼: 選擇全部

[quote=\"Line 1\"]Hello![/quote]
這裡有一張螢幕擷取圖,表示了這樣的情況: http://img355.imageshack.us/img355/3581/90371567jb5.gif

因為不太方便讓這個問題持續在站上,所以目前已經先暫時還原到 2.0.20 的樣子,故抱歉沒辦法在目前的站台上看到這個問題並進行測試。
在此提供升級時已更動過的檔案,希望能派上用場。不知道是否有較好的作法,還請各位能給予建議,感謝。

phpBB 升級至 2.0.21 的相關檔案:(Powered by pastebin - collaborative debugging tool)
phpbb-2.0.20_to_2.0.21.txt (這個檔案並沒有修改過)
common.php
login.php
privmsg.php
profile.php
search.php
viewtopic.php
admin/admin_ranks.php
admin/admin_smilies.php
admin/admin_styles.php
admin/admin_words.php
includes/functions.php
includes/functions_post.php
includes/sessions.php
includes/usercp_avatar.php
includes/usercp_confirm.php
includes/usercp_register.php

在此感謝您的閱讀與關注。

----------------------------------
●架設主機作業系統:Windows Server 2003 SP1
●上網方式:學術網路
●安裝的程式:IIS 6.0+ php 4.4.6+ MySql 5.0.27
●phpBB2 版本:phpBB 2.0.21
●domain(網域名稱) :otakus.dyndns.org
●phpBB2 連結網址:http://otakus.dyndns.org/phpBB2/

Re: [問題]phpBB 從 2.0.20 升級至 2.0.21 後,引言功能故障

發表於 : 2007-04-24 15:08
心靈捕手
小斌 寫:我使用了 phpBB 官方網站的 codechanges 搭配 EasyMOD 進行升級。在升級完後,發現引言的功能故障了,情況如下所述。

以下的內容

代碼: 選擇全部

[quote="Line 1"]Hello![/quote]
在預覽時與發表後,就會變成這樣的東西

代碼: 選擇全部

[quote="Line 1"]Hello![/quote]
這裡有一張螢幕擷取圖,表示了這樣的情況: http://img355.imageshack.us/img355/3581/90371567jb5.gif

因為不太方便讓這個問題持續在站上,所以目前已經先暫時還原到 2.0.20 的樣子,故抱歉沒辦法在目前的站台上看到這個問題並進行測試。
在此提供升級時已更動過的檔案,希望能派上用場。不知道是否有較好的作法,還請各位能給予建議,感謝。

phpBB 升級至 2.0.21 的相關檔案:(Powered by pastebin - collaborative debugging tool)
phpbb-2.0.20_to_2.0.21.txt (這個檔案並沒有修改過)
common.php
login.php
privmsg.php
profile.php
search.php
viewtopic.php
admin/admin_ranks.php
admin/admin_smilies.php
admin/admin_styles.php
admin/admin_words.php
includes/functions.php
includes/functions_post.php
includes/sessions.php
includes/usercp_avatar.php
includes/usercp_confirm.php
includes/usercp_register.php

在此感謝您的閱讀與關注。

----------------------------------
●架設主機作業系統:Windows Server 2003 SP1
●上網方式:學術網路
●安裝的程式:IIS 6.0+ php 4.4.6+ MySql 5.0.27
●phpBB2 版本:phpBB 2.0.21
●domain(網域名稱) :otakus.dyndns.org
●phpBB2 連結網址:http://otakus.dyndns.org/phpBB2/
以下的修改, 提供您參考:
#
#-----[ OPEN ]-----
#
includes/functions_post.php

#
#-----[ FIND ]-----
#

代碼: 選擇全部

                $message = addslashes($message);
                $message = str_replace('"', '\"', $message);
 
                $message = str_replace('"', '\\"', $message);
#
#-----[ REPLACE WITH ]-----
#

代碼: 選擇全部

                $message = addslashes($message);
                $message = str_replace('"', '\"', $message);
#
#-----[ SAVE & CLOSE ]-----
#

ps.
底下那一行, 乃升級 phpBB 2.0.20 時, 額外的修正;
升級 phpBB 2.0.21 時, 建議移除.

發表於 : 2007-04-24 18:32
小斌
問題已經解決了,感謝心靈捕手老師的指導。:-D