wecent 搭建

Posted qiang-qiang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了wecent 搭建相关的知识,希望对你有一定的参考价值。

一,下载源码

  http://www.wecenter.com/downloads/

 

二,编写nginx 配置文件

  

[[email protected] conf.d]# pwd
/etc/nginx/conf.d
[[email protected] conf.d]# cat zhihu.conf 
server {
       listen   80;
       server_name   www.zhihuqiang.com;
       location / {
             root   /html/zhihu;
             index  index.php index.html;
       }
       location ~ .php$ {
             root   /html/zhihu;
             fastcgi_pass  127.0.0.1:9000;
             fastcgi_index index.php;
             fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
             include fastcgi_params;

       }
 }

 

三,上传源码到站点目录 

scp /Users/zhangqiang/Downloads/WeCenter.zip  [email protected]10.0.0.7:/html/zhihu

四,解压

[[email protected] zhihu]# pwd
/html/zhihu

[[email protected] zhihu]#unzip WeCenter.zip

[[email protected] zhihu]#mv WeCenter330/* ./

五,数据库创建用户密码

create database zhihu;

grant all on zhihu.* to zhihu@localhost identified by huhu8023; 

六,打开网页进行测试 

  发现目录权限都显示红叉 

  1,将php-fpm下的www.conf 文件中内容 属主属组改成nginx

技术图片

 

  2,发现目录权限都是红叉 给站点目录nginx 权限

 

[[email protected] html]#chown -R nginx.nginx zhihu/

 

 七,输入数据库账号密码 点击暗账

技术图片

 

以上是关于wecent 搭建的主要内容,如果未能解决你的问题,请参考以下文章

wecenter系统关于标题及seo的修改

做知乎大神不如做个知乎,问答社区建站工具——WeCenter

如何在#神箭手云爬虫#上采集网页数据并发布到WeCenter

wecenter3.3qq登录报错redirect uri is illegal(100010)

WeCenter二次开发教程:熟悉模板结构

WeCenter (最新版) 前台RCE漏洞 (2020-02-22)