【305】Thinkphp5 后台管理系统 集成后台系统常用功能
基于 Thinkphp5 的后台管理系统集成后台系统常用功能。项目安装请参考ThinkPHP官方文档及下面的服务环境说明,数据库sql文件存放于项目根目录下。注意:项目测试请另行搭建环境并创建数据库(数据库配置application/database.php), 切勿直接使用测试环境数据!
http://www.woaidaima.com/forum.php?mod=image&aid=3179&size=300x300&key=cdd15325920fd732&nocache=yes&type=fixnone
Think.Admin已集成模块
[*]简易RBAC权限管理(用户、权限、节点、菜单控制)
[*]自建秒传文件上载组件(本地存储、七牛云存储可选)
[*]基站数据服务组件(唯一随机序号、表单更新)
[*]Http服务组件(原生CURL封装,兼容PHP多版本)
[*]微信公众号服务组件(基于wechat-php-sdk,微信网页授权获取用户信息、已关注粉丝管理、自定义菜单管理等等)
[*]微信商户支付服务组件(基于wechat-php-sdk,支持JSAPI支付、扫码模式一支付、扫码模式二支付)
[*]更多组件开发中...
服务器环境
[*]PHP版本不低于PHP5.4,推荐使用PHP7以达到最优效果
[*]项目运行需支持PATHINFO,项目不支持ThinkPHP的URL兼容模式运行(源于如何优雅的展示)
Apache:已在项目根目录加入.htaccess文件,只需开启rewrite模块
[*]<IfModule mod_rewrite.c>
[*]Options +FollowSymlinks -Multiviews
[*]RewriteEngine On
[*]RewriteCond %{REQUEST_FILENAME} !-d
[*]RewriteCond %{REQUEST_FILENAME} !-f
[*]RewriteRule ^(.*)$ index.php/$1
[*]</IfModule>
复制以上内容
Nginx:配置参考下面的demo代码
[*]server {
[*] listen 80;
[*] server_name wealth.demo.cuci.cc;
[*] root /home/wwwroot/Think.Admin;
[*] index index.php index.html index.htm;
[*]
[*] add_header X-Powered-Host $hostname;
[*] fastcgi_hide_header X-Powered-By;
[*]
[*] if (!-e $request_filename) {
[*] rewrite^/(.+?\.php)/?(.*)[ DISCUZ_CODE_3 ]nbsp; /$1/$2last;
[*] rewrite^/(.*)[ DISCUZ_CODE_3 ]nbsp; /index.php/$1last;
[*] }
[*]
[*] location ~ \.php($|/){
[*] fastcgi_index index.php;
[*] fastcgi_pass 127.0.0.1:9000;
[*] include fastcgi_params;
[*] set $real_script_name $fastcgi_script_name;
[*] if ($real_script_name ~ "^(.+?\.php)(/.+)[ DISCUZ_CODE_1 ]quot;) {
[*] set $real_script_name $1;
[*] }
[*] fastcgi_split_path_info ^(.+?\.php)(/.*)$;
[*] fastcgi_param PATH_INFO $fastcgi_path_info;
[*] fastcgi_param SCRIPT_NAME $real_script_name;
[*] fastcgi_param SCRIPT_FILENAME $document_root$real_script_name;
[*] fastcgi_param PHP_VALUE open_basedir=$document_root:/tmp/:/proc/;
[*] access_log /home/wwwlog/domain_access.log access;
[*] error_log /home/wwwlog/domain_error.log error;
[*] }
[*]
[*] location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ {
[*] access_logoff;
[*] error_log off;
[*] expires 30d;
[*] }
[*]
[*] location ~ .*\.(js|css)?$ {
[*] access_log off;
[*] error_log off;
[*] expires 12h;
[*] }
[*]}
复制以上内容
下载地址(回复可见):
**** Hidden Message *****
解压密码默认为:www.woaidaima.com
如链接失效请联系QQ:394999482
页:
[1]