search
HomeBackend DevelopmentPHP Tutorialphpcms2008调整discuz1.5+ucenter1.5

phpcms2008整合discuz1.5+ucenter1.5

?

1.??? 软件版本

1.??? phpcms : phpcms2008sp4_utf8_110406.zip

2.??? discuz : Discuz_X1.5_SC_UTF8.zip

3.??? ucenter : Ucenter_1.5.2_SC_UTF8.z

2.??? 安装

1.??? phpcms2008的安装

1.??? 根据源码的说明修改相应文件的访问权限

2.??? 创建数据库phpcms

3.??? phpcms 选择必要的模块:财务,广告管理,评论管理,友情链接,短消息,网站公告,全站搜索,专题,错误报告,表单向导,采集管理,视频。

4.??? 配置数据库信息

5.??? 设定管理员和密码(最好与discuzucenter的管理员账户设置成相同的。)

2.??? ucenter的安装

1.??? 根据源码的说明修改相应文件的访问权限

2.??? 创建数据库ucenter

3.??? 配置数据库信息

4.??? 设定管理员和密码(最好与discuzphpcms的管理员账户设置成相同的。)

3.??? discuz的安装

1.??? 根据源码的说明修改相应文件的访问权限

2.??? 创建数据库discuz

3.??? 单独安装discuz指定ucenter,填写ucenter相应的信息

4.??? 配置数据库信息

5.??? 设定管理员和密码(最好与ucenterphpcms的管理员账户设置成相同的。)

3.??? 整合

1.??? phpcms配置

1.??? 我的面板-》常用操作-》网站配置-》基本信息

1.??? Phpcms 官方网站帐号:phpcms

2.??? Phpcms 官方网站密码:phpcms

2.??? 我的面板-》常用操作-》网站配置-》通行证

1.??? 正向通行证设置,反向通行证设置 选择否不用设置

2.??? Ucenter Client 配置是要配置的;

1.??? 启用选择是

2.??? ucenter api地址:ucenter的根目录地址

3.??? ip地址:本地:127.0.0.1,如果不是本地填写相应的ip地址

4.??? 填写ucenter数据库相应的信息

5.??? 应用id2 (稍后在ucenter中设置phpcms时将产生phpcms的应用id,要和这里的一致)

6.??? ucenter通信密钥:phpcms(要和ucenter配置phpcms应用时的密钥要一致)

7.??? 测试数据库链接是否成功

8.??? 提交,成功。


2.??? Ucenter配置

1.??? 应用管理

1.??? 查看discuz!的通信情况,通信成功

2.??? -》添加新应用-》自定义安装

1.??? 应用名称:phpcms

2.??? 应用的主urlphpcms.wolf.com (phpcms2008网站的url

3.??? 应用ip 本地:127.0.0.1 如果不本地的填写相应的ip地址

4.??? 通信密钥:phpcms(和phpcms配置时的ucenter通信密钥要一致)

5.??? 应用类型:其他

6.??? 是否开启同步登录:是

7.??? 是否接受通知:是

8.??? 其他项目保留默认值

9.??? 提交,并查看时候提交成功,在列表中查看时候通信成功。


? ?

3.??? Discuz配置

1.??? 站长-ucenter配置:将ucenter连接方式改为接口方式,其他保留原来的数据。


?

?

4.??? 代码修改解决用户同步免激活

1.??? discuz代码修改:/api/uc.php : 168 synlogin 函数修改为一下代码:

function synlogin($get, $post) {

?

?? global $_G;

?

?? if(!API_SYNLOGIN) {

?

??? return API_RETURN_FORBIDDEN;

?

?? }

?

?? header('P3P: CP="CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"');

?

?? $cookietime = 31536000;

?

?? $uid = intval($get['uid']);

?

?? $query = DB::query("SELECT uid, username, password FROM ".DB::table('common_member')." WHERE uid='$uid'");

?

?? if($member = DB::fetch($query)) {

?

??? dsetcookie('auth', authcode("$member[password]\t$member[uid]", 'ENCODE'), $cookietime);

?

?? }else{

?

?????? $username = $get['username'];???????????????????????

?

???????????? $password = md5(time().rand(100000, 999999));

?

???????????? $email = $get['email'];

?

???????????? $ip = $_SERVER['REMOTE_ADDR'];

?

???????????? $time = time();??

?

???????????? $userdata = array(

?

??????? ?????????????????'uid' => $uid,

?

???????????????????????? 'username' => $username,

?

???????????????????????? 'password' => $password,

?

???????????????????????? 'email' => $email,

?

???????????????????????? 'adminid' => 0,

?

???????????????????????? 'groupid' => 10,

?

???????????????????????? 'regdate' => $time,

?

???????????????????????? 'credits' => 0,

?

???????????????????????? 'timeoffset' => 9999

?

???????????? );

?

???????????? DB::insert('common_member', $userdata);

?

???????????? $status_data = array(

?

???? ????????????????????'uid' => $uid,

?

???????????????????????? 'regip' => $ip,

?

???????????????????????? 'lastip' => $ip,

?

???????????????????????? 'lastvisit' => $time,

?

???????????????????????? 'lastactivity' => $time,

?

???????????????????????? 'lastpost' => 0,

?

???????????????????????? 'lastsendmail' => 0,

?

???????????? );

?

???????????? DB::insert('common_member_status', $status_data);

?

???????????? DB::insert('common_member_profile', array('uid' => $uid));

?

???????????? DB::insert('common_member_field_forum', array('uid' => $uid));

?

???????????? DB::insert('common_member_field_home', array('uid' => $uid));

?

???????????? DB::insert('common_member_count', array('uid' => $uid));

?

???????????? $query = DB::query("SELECT uid, username, password FROM ".DB::table('common_member')." WHERE uid='$uid'");

?

???????????? if($member = DB::fetch($query)) {

?

???????????????? dsetcookie('auth', authcode("$member[password]\t$member[uid]", 'ENCODE'), $cookietime);

?

???????????? }

?

?? }

?

?}

?

2.??? phpcms2008代码修改:/member/register.php : 66 if语句if($memberinfo['modelid'] && $M['choosemodel'] && !$M['enablemailcheck'] && !$M['enableadmincheck'])中的内容替换成

?list($uc_uid, $uc_username, $uc_password, $uc_email) =? uc_call("uc_user_login", array($memberinfo['username'], $memberinfo['password']));

?

$synlogin_code = uc_call('uc_user_synlogin', array($uc_uid));

?

showmessage('开始填写详细资料!'.$script.$synlogin_code, $M['url'].'register_model.php');

5.??? 更新phpcmsucenterdiscuz的缓存

?

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
phpcms是什么框架phpcms是什么框架Apr 20, 2024 pm 10:51 PM

PHP CMS 是一种基于 PHP 的开源内容管理系统,用于管理网站内容,其特点包括易用性、强大功能、可扩展性、安全性高和免费开源。它可以节省时间、提升网站质量、增强协作并降低开发成本,广泛应用于新闻网站、博客、企业网站、电子商务网站和社区论坛等各种网站。

phpcms怎么跳转到详情页phpcms怎么跳转到详情页Jul 27, 2023 pm 05:23 PM

phpcms跳转到详情页方法:1、使用header函数来生成跳转链接;2、循环遍历内容列表;3、获取内容的标题和详情页链接;4、生成跳转链接即可。

微信登录集成指南:PHPCMS实战微信登录集成指南:PHPCMS实战Mar 29, 2024 am 09:18 AM

标题:微信登录集成指南:PHPCMS实战在今天的互联网时代,社交化登录已经成为网站必备的功能之一。微信作为国内最流行的社交平台之一,其登录功能也被越来越多的网站所采用。本文将介绍如何在PHPCMS网站中集成微信登录功能,并提供具体的代码示例。第一步:注册微信开放平台账号首先,我们需要在微信开放平台上注册一个开发者账号,申请相应的开发权限。登录[微信开放平台]

phpcms是什么意思phpcms是什么意思Apr 20, 2024 pm 10:39 PM

PHPCMS 是一款免费开源的内容管理系统 (CMS),特点包括:开放源码、模块化、灵活、用户友好和社区支持。它可用于创建各种类型的网站,包括企业网站、电子商务网站、博客和社区论坛。技术要求包括:PHP 5.6 或更高版本、MySQL、MariaDB 或 PostgreSQL 数据库以及 Apache 或 Nginx Web 服务器。

2023年最新phpcms视频教程推荐(二次开发必学)2023年最新phpcms视频教程推荐(二次开发必学)Oct 25, 2019 pm 03:45 PM

很多站长使用PHPCMS进行二次开发建站,PHP中文网特意推出了phpcms视频教程,大家可以随时随地免费观看视频教程,不需要从百度网盘下载,非常方便。

phpcms不是免费吗phpcms不是免费吗Mar 01, 2023 am 10:24 AM

phpcms不是完全免费的。phpcms属于开源cms系统,但是开源并不等于免费,它有两个版本:免费版和商业版,免费版仅限于个人非商业用途,而商业版需要购买授权;个人可以作为研究使用,如果商业应用,需要支付一定费用。

phpcms用什么数据库phpcms用什么数据库Feb 21, 2023 pm 06:57 PM

phpcms用mysql数据库。phpcms是一个PHP开源网站管理系统,采用PHP+MYSQL做为技术基础进行开发。PHPCMS V9采用OOP方式进行基础运行框架搭建,支持的PHP版本是PHP5及以上、支持的MYSQL版本是MySql 4.1以上版本。

phpcms怎么修改站点名称phpcms怎么修改站点名称Feb 24, 2023 am 09:29 AM

phpcms修改站点名称的方法:1、使用管理员登录后台页面;2、在顶部的菜单栏找到“设置”选项单击,然后在左侧的菜单出找到“站点管理”;3、找到需要修改的站点,点击该站点域名右面的修改链接;4、在弹出的窗口中修改站点名称即可。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.