graceCMS 部署步骤
1、联系客服 QQ 1265928288 购买获取源码包;
2、解压后获取以下文件夹及文件
|_ graceCMS //核心代码包 |_ graceCMS.sql //数据库文件
3、将 graceCMS 内的全部文件部署到您的网站目录
4、建立数据库(自定义库名称),导入 graceCMS.sql
5、伪静态配置:
apache 开启伪静态即可,nignx配置如下:
server { listen 80; server_name ; root "D:/webs/www.phpgrace.com"; location /admin { index index.html index.htm index.php; if (!-e $request_filename){ rewrite ^/admin/(.*)$ /admin/index.php?pathInfo=$1; } } location / { index index.html index.htm index.php; if (!-e $request_filename){ rewrite ^(.*)$ ./index.php?pathInfo=$1; } } }
6、配置数据库
打开 phpGrace/config.php,正确填写以下配置:
<?php return array( //数据库配置 'db' => array( 'host' => '127.0.0.1', 'port' => '3306', 'user' => 'root', 'pwd' => '******', 'dbname' => '您创建的数据库名称', 'charset' => 'utf8', 'pre' => 'grace_' //表前缀 ),
7、浏览器访问项目;
重要说明:
在 linux 环境下,请保证网站目录的权限配置正确,以保证 session、缓存、头像等动态增加的文件可以正常写入。如:
chmod -R 777 /www/您的网站目录;