使用PHPStudy搭建ModStartCMS

下载安装PHPStudy

访问以下地址进行下载(v8.1)

https://www.xp.cn/download.htmlPHPStudy安装 - 图1 (opens new window)

PHPStudy安装 - 图2

PHPStudy安装 - 图3

PHPStudy环境配置

创建网站

PHPStudy安装 - 图4

PHP版本

php-5.6.9-nts

PHPStudy安装 - 图5

PHP扩展

安装OpenSSL扩展

安装FileInfo扩展

安装Exif扩展

PHPStudy安装 - 图6

复制源码至根目录

PHPStudy安装 - 图7

配置网站根目录至…/public

PHPStudy安装 - 图8

配置伪静态

PHPStudy安装 - 图9

Nginx参考配置

  1. server {
  2. listen 80;
  3. server_name xx.com;x
  4. charset utf-8;
  5. index index.php index.html;
  6. root /var/www/html/xxx.com/public;
  7. autoindex off;
  8. location ^~ /.git {
  9. deny all;
  10. }
  11. location / {
  12. try_files $uri $uri/ /index.php?$query_string;
  13. }
  14. location ~ \.php$ {
  15. fastcgi_pass 127.0.0.1:9000;
  16. fastcgi_index index.php;
  17. fastcgi_param PHP_VALUE "open_basedir=/var/www/html/xxx.com/:/tmp/:/var/tmp/";
  18. fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  19. include fastcgi_params;
  20. }
  21. location ~ \.(gif|jpg|jpeg|png|bmp|ico|css|js)$ {
  22. expires max;
  23. }
  24. location ~* \.(eot|ttf|woff|woff2)$ {
  25. add_header Access-Control-Allow-Origin '*';
  26. }
  27. }

Apache参考配置

  1. <VirtualHost *:80>
  2.   ServerName xxx.com
  3.   DocumentRoot d:/wwwroot/xxx.com/public
  4. </VirtualHost>

增加数据库

PHPStudy安装 - 图10

设置防止警告参数

always_populate_raw_post_data

PHPStudy安装 - 图11

设置前

PHPStudy安装 - 图12

设置后

PHPStudy安装 - 图13

修改hosts

打开hosts文件

在结尾新增一行解析 127.0.0.1 localhost 并保存退出

PHPStudy安装 - 图14

进入安装引导

访问:http://localhost/install.php

PHPStudy安装 - 图15

愉快的使用吧

在使用过程中,如果遇到什么问题请及时在社区 https://modstart.com/forumPHPStudy安装 - 图16 (opens new window) 进行反馈。

同时,如果再使用过程中有更好的建议或者意见,也请直接在社区中提交意见反馈。