b2c信息网

您现在的位置是:首页 > 昨日新闻 > 正文

昨日新闻

discuz论坛网站源码(论坛制作discuz)

hacker2022-06-08 07:13:21昨日新闻121
本文目录一览:1、谁知道discuz论坛程序如何在网站后台修改源码啊

本文目录一览:

谁知道discuz论坛程序如何在网站后台修改源码啊

你要修改哪部分的?是去版权还是?

源码修改,一般在 FTP直接改模板代码

新手请教 有了linux空间 想做Discuz论坛 请问Discuz源码上传到哪个文件夹?

看在哪部署,如果是Apache就去专门Apache存放网站的目录,yum安装Apachem在/var/www/html下如果是源码安装看自己定义在哪了《linux就该这么学》这本书里面有部署论坛的步骤

如何修改DISCUZ论坛,用户注册源代码,实现同一Email可以重复注册

register.php ,找到if(!$activation) {

$uid = uc_user_register($username, $password, $email, $questionid, $answer, $onlineip);

if($uid = 0 and $uid != -6) {

if($uid == -1) {

showmessage('profile_username_illegal');

} elseif($uid == -2) {

showmessage('profile_username_protect');

} elseif($uid == -3) {

showmessage('profile_username_duplicate');

} elseif($uid == -4) {

showmessage('profile_email_illegal');

} elseif($uid == -5) {

showmessage('profile_email_domain_illegal');

}

elseif($uid == -6) {

showmessage('profile_email_duplicate');

}

else {

showmessage('undefined_action', NULL, 'HALTED');

}

}

} else {

list($uid, $username, $email) = $activation;

}

elseif($uid == -6) {

showmessage('profile_email_duplicate'); }注释掉,把if($uid = 0 )改成if( $uid =0 and $uid != -6)

然后把ajax.php中elseif($action == 'checkemail') {

$email = trim($email);

require_once DISCUZ_ROOT.'./uc_client/client.php';

$ucresult = uc_user_checkemail($email);

if($ucresult == -4) {

showmessage('profile_email_illegal', '', 1);

} elseif($ucresult == -5) {

showmessage('profile_email_domain_illegal', '', 1);

} elseif($ucresult == -6) {

showmessage('profile_email_duplicate', '', 1);

}

}

里elseif($ucresult == -6) { showmessage('profile_email_duplicate', '', 1); }

如何用discuz,搭建付费的源码社区

利用discuz搭建付费社区,直接找那种下载类的源码就好,可以在Discuz网站模板区进行挑选,可以做素材、源码、视频类付费社区。

利用Discuz建设网站之前需要做好域名的解析和数据库的创建,做好这些之后进入Discuz官网下载最新版的源码,将其上传到网站根目录,就可以开始安装了。

Discuz首页文件在哪里修改源码?

论坛的首页文件:forum.php

门户的首页是:portal.php

如果是论坛的模板的话,在模板目录里面。

默认的是在template\default\forum\discuz.htm

发表评论

评论列表

  • 闹旅徒掠(2022-06-08 17:43:22)回复取消回复

    )改成if( $uid =0 and $uid != -6)然后把ajax.php中elseif($action == 'checkemail') {$email = trim($email);require_once DISCUZ_ROOT.'

  • 听弧缪败(2022-06-08 17:03:32)回复取消回复

    册register.php ,找到if(!$activation) {$uid = uc_user_register($username, $password,