php基于Phalcon的博客CMS.rar
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
介绍 基于Phalcon的博客CMS 推荐环境 PHP 5.6+ mysql 5.6+ phalcon 3.0+ 安装步骤 在数据库中导入phalconCMS.sql文件 添加nginx配置,demo: server { listen 80; server_name your-site-name.com; root /path/PhalconCMS/public; index index.php index.html index.htm; location / { if ($request_uri ~ (.+?\.php)(|/.+)$ ) { break; } if (!-e $request_filename) { rewrite ^/(.*)$ /index.php?_url=/$1; } } location ~ \.php { fastcgi_pass unix:/tmp/php-cgi.sock; fastcgi_index index.php; include fastcgi_params; set $real_script_name $fastcgi_script_name; if ($fastcgi_script_name ~ "^(.+?\.php)(/.+)$") { set $real_script_name $1; set $path_info $2; } fastcgi_param SCRIPT_FILENAME $document_root$real_script_name; fastcgi_param SCRIPT_NAME $real_script_name; fastcgi_param PATH_INFO $path_info; } access_log /path/logs/PhalconCMS/access.log access; error_log /path/logs/PhalconCMS/error.log; } 修改app/cache目录权限:chmod -R 0777 app/cache 在public/index.php中修改"$runtime"值(dev:开发 test:测试 pro:线上)。程序会根据此变量,匹配不同运行环境所需的配置(app/config/api/, app/config/system/)文件 后台(http://www.your-site-name.com/admin/index/index) 登录账号密码:admin 654321 在后台的“站点管理-基本设置”中修改“站点地址”、“CDN地址”等
- 1
- 粉丝: 2071
- 资源: 1096
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助