雷傲转动网的程序可以到下面地址下载:
http://www.discuz.net/viewthread.php?tid=232205&extra=page=1&filter=digest
转换完成后,记得到后台管理那更新各项统计信息。
同时记得把雷傲的所有附件移到D:/WEB/discuz/attachments/LBuploads/下
最后来完成对附件的关联
升级数据库,执行:
| SELECT MAX(tid) FROM cdb_threads; |
请在./include/discuzcode.func.php中找到
| for($i = 0; $i <= $discuzcodes['pcodecount']; $i++) {
$message = str_replace("[\tDISCUZ_CODE_$i\t]", $discuzcodes['codehtml'][$i], $message); } |
上面加
|
//LB转换数据后专用 $tid是你主题的最大id global $fid,$tid; if ($tid < 11253) { $lbfilepath = './attachments/lbupfile/'; $message = preg_replace(array( "/\[UploadFile=([^\[]+?)\.(gif|jpg|png|bmp|jpeg)\]/ies", "/\[UploadFile=(.*)\]/ies"), array( "bbcodeurl('\\1', '<center><img src=\"".$lbfilepath.$fid."/\\1.\\2\" border=\"0\"
onload=\"if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt=\'Click here to open new
window\';}\" onmouseover=\"if(this.resized) this.style.cursor=\'hand\';\" onclick=\"if(this.resized) {window.open(\'%s\');}
\"></center><br>')", "bbcodeurl('\\1', '【<a href=\"".$lbfilepath.$fid."/\\1\" target=\"_blank\"
style=\"color:#0000FF;font-weight:bold\">点击下载文件</a>】')"), $message); } unset($fid,$tid,$lbfilepath); //LB转换数据后专用 |



相关教程