Code Monkey home page Code Monkey logo

tp5admin's Introduction

TP5Admin

作者QQ:5552123(阿杜)

TP5Admin V2.0使用ThinkPHP5.10核心版框架开发. 其主要目的是为了提高开发效率.需要开发什么功能.后台直接添加菜单.程序里直接写控制器!

首次使用导入数据库,后台账号admin,密码admin

  • 菜单管理
  • 管理员分组
  • 组分配权限
  • 一个管理员可以属于多个组
  • 操作日志管理

运行环境要求PHP5.4以上。

虚拟机配置,v.1.0版需要绑定到public目录中,这样比较安全.

由于大量新手使用时不理解,v2.0版将index.php从public中移出.绑定到根目录即可.

Nginx虚拟机配置如下:

server {
        listen       80; 
        server_name  tp5admin.com;
        root   "/Users/mac/wwwroot/work/tp5admin.com";
        location / { 
            index  index.html index.htm index.php;
            autoindex  on; 
         if (!-e $request_filename) {
                        rewrite ^/(.*)$ /index.php/$1 last;#隐藏index.php文件
                }   
        }   
        location ~ \.php(.*)$ {
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_split_path_info  ^((?U).+\.php)(/?.+)$;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            fastcgi_param  PATH_INFO  $fastcgi_path_info;
            fastcgi_param  PATH_TRANSLATED  $document_root$fastcgi_path_info;
            include        fastcgi_params;
        }   
}

window环境 LAMP 配置



1   在 C:\Windows\System32\drivers\etc\hosts文件底部添加
      127.0.0.1 tp5admin.com


2  在httpd.conf 文件底部添加 tp5admin 网站配置

<virtualhost *:80>

    ServerName tp5admin.com

    DocumentRoot C:\xampp\htdocs\tp5admin

<virtualhost>

3 重启apache 即可 运行tp5admin.com/admin 即可

参与开发

注册并登录 Github 帐号, fork 本项目并进行改动。

更多细节参阅 https://github.com/duzhenxun/TP5Admin

tp5admin's People

Contributors

duzhenxun avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.