xiuno论坛部署及常见问题处理

xiuno论坛安装

描述:
xiuno是一款特别简介的论坛,基于:PHP,MySQL,Apache2
下面给大家讲一下xiuno论坛的安装部署过程及常见问题处理方法。

1、下载安装包:
在这里插入图片描述
2、创建MySQL用户:

create database xiuno character set utf8;
create user xiuno@’%’ identified by ‘xiuno’;
grant all privileges on xiuno.* to xiuno@’%’;
flush privileges;
exit;

3、安装Apache2:

4、安装PHP:

yum -y install php php-mysql php-mbstring

php-mbstring
此项必须安装,如果不安装,在页面配置时会报错如下:
mb_substr() 系统依赖该函数,

注意:

Linux主机请添加编译参数 --with-mbstring,
Windows 主机请配置 php.ini 注释掉 extension=php_mbstring.dll*

发布了36 篇原创文章 · 获赞 46 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/qq_31457413/article/details/98941530