最近我裝這隻外掛也是遇到此問題,不過後來還是解決了.
如果你是照
這篇安裝的話,試試看以下修改!
#
#-----[ OPEN ]------------------------------------------
#
代碼: 選擇全部
includes/bbcode.php
#
#-----[ FIND ]------------------------------------------
#
代碼: 選擇全部
$bbcode_tpl['stream'] = str_replace('{URL}', '\\\1', $bbcode_tpl['stream']); //Stream BBCode
#
#-----[ REPLACE ]----------------------------------------------
#
代碼: 選擇全部
$bbcode_tpl['stream'] = str_replace('{URL}', '\\1', $bbcode_tpl['stream']); //Stream BBCode
#
#-----[ FIND ]------------------------------------------
#
代碼: 選擇全部
// [stream]stream_url_here[/stream] code..
$text = preg_replace("#\[stream\]((ht|f)tp://)([^\t<\"]*?)\[/stream\]#sie", "'[stream:$uid]\\\1' . str_replace(' ', '%20', '\\\3') . '[/stream:$uid]'", $text);
#
#-----[ REPLACE ]----------------------------------------------
#
代碼: 選擇全部
// [stream]stream_url_here[/stream] code..
$text = preg_replace("#\[stream\]((ht|f)tp://)([^\r\n\t<\"]*?)\[/stream\]#sie", "'[stream:$uid]\\1' . str_replace(' ', '%20', '\\3') . '[/stream:$uid]'", $text);
這是我解決的方法,不知道您適不適用。
如果不行的話,建議您貼出相關修改的檔案方便讓前輩參考幫忙!^_^