最大的网站策划、网站运营、网络营销人才免费学习、培训、认证、展示、交流、工作平台,服务国家经济建设与民族伟大复兴!
Google
 
发新话题
打印

[分享]discuz论坛的优化!!!!!!!!!!!!

 除新人区外,看帖均消费积分,请认真发帖与回帖获得积分,新人区外灌水三次永封。QQ:9901259赠积分。

[分享]discuz论坛的优化!!!!!!!!!!!!

打开模板 css.htm 文件
查找:

.altbg2 {
        background: {ALTBG2};
        font: {FONTSIZE} {FONT};
}
在下面添加:

#top {
        width: 100%;
        border: none;
        margin: 0 auto;
        text-align: center;
}
.Banner {
        width: {MAINTABLEWIDTH};
        background: {MAINTABLECOLOR};
        background-image: URL('{IMGDIR}/topbg.gif');
        border: none;
        margin: 0 auto;
        text-align: center;
}
.maincolumn {
        width: {MAINTABLEWIDTH};
        margin-right: auto;
        margin-left: auto;
        background: {MAINTABLECOLOR};
        text-align: center;
}
更新缓存 和 更新css文件缓存 OK!
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
登陆,退出无提示自动直接跳转!
打开根目录: logging.PHP 文件
查找:

showmessage('login_succeed', dreferer());
改为:

updatesession();
header("Location: $referer");
再查找:

showmessage('logout_succeed', dreferer());
改为:

        $referer = dreferer();
        updatesession();
        header("Location: $referer");

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
搜索无提示自动直接跳转!
打开根目录:search.php 文件
查找:

showmessage('search_redirect', "search.php?searchid=$searchid&orderby=$orderby&ascdesc=$ascdesc&searchsubmIT=yes");
改为:

header("Location: search.php?searchid=$searchid&orderby=$orderby&ascdesc=$ascdesc&searchsubmit=yes");
        exit();

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~   
发贴无提示自动直接跳转!
打开: include/newthread.inc.php 文件
查找:

showmessage('post_newthread_succeed', "viewthread.php?tid=$tid&extra=$extra");
改为:

header("Location: viewthread.php?tid=$tid&extra=$extra");



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~`   
回贴无提示自动直接跳转!
打开: include/newreply.inc.php 文件
查找:

showmessage('post_reply_succeed', "viewthread.php?tid=$tid&pid=$pid&page=".(@ceil(($thread['replies'] + 2) / $ppp))."&extra=$extra#pid$pid");
改为:

header("Location: viewthread.php?tid=$tid&pid=$pid&page=".(@ceil(($thread['replies'] + 2) / $ppp))."&extra=$extra#pid$pid");

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
编辑贴无提示自动直接跳转!
打开: include/editpost.inc.php 文件
查找:

showmessage('post_edit_delete_succeed', "forumdISPlay.php?fid=$fid");
改为:

header("Location:forumdISPlay.php?fid=$fid");
再查找:

showmessage('post_edit_succeed', "viewthread.php?tid=$tid&page=$page&extra=$extra#pid$pid");
改为:

header("Location:viewthread.php?tid=$tid&page=$page&extra=$extra#pid$pid");

本站内容仅对天梯会员开放。查看全部内容:请登录或者注册

TOP

 除新人区外,看帖均消费积分,请认真发帖与回帖获得积分,新人区外灌水三次永封。QQ:9901259赠积分。
好,不错!
眼光+魄力;左手胆略、右手战略

TOP

发新话题