Code Monkey home page Code Monkey logo

toolbox's Introduction

toolbox

🎉 What's this?

这是一款在线工具箱程序,您可以通过安装扩展增强她的功能
通过插件模板的功能,您也可以把她当做网页导航来使用~
觉得该项目不错的可以给个Star~

😺 演示地址

🍹 演示图

🎑 说明

严禁用于非法用途

😺 文档

插件编写
Github Oauth 配置
Plugin Template 使用
Plugin Permission 使用

演示搭建视频

🎊 环境要求

  • PHP >= 7.2.5
  • MySQL >= 5.7
  • fileinfo扩展
  • 使用Redis缓存需安装Redis扩展
  • 去除禁用函数proc_openputenvshell_execproc_get_status( 必须是命令行的PHP版本,你装了多个PHP版本,命令行版本的PHP和你的网站配置的PHP可能不是同一个,嫌麻烦可以下载full包)

🚠 部署

  1. 下载Release代码

  2. 设置运行目录为public

  3. 关闭防跨站(open_basedir

  4. 设置伪静态

  5. 去除静态文件代理

    • 打开nginx配置
    • 删除图中选中的内容
  6. 安装依赖

    full包,已安装依赖,无需重复安装

    • 配置阿里镜像源
      composer config -g repo.packagist composer https://mirrors.aliyun.com/composer/
      
    • 升级compose
      composer self-update
      
    • 安装依赖
      composer install --no-dev
      
  7. 设置目录权限

    • 一般是默认允许的(如有无法上传、无法打开页面或其他未知问题可以设置一下目录权限)

    • Apache的所属组为www-data,那么就请修改wwwwww-data

      chmod -R 755 *
      chown -R www:www *
  8. 打开你的域名/install

🍰 伪静态

  • Nginx
location / {
	if (!-e $request_filename){
		rewrite  ^(.*)$  /index.php?s=$1  last;   break;
	}
}
  • Apache
<IfModule mod_rewrite.c>
  Options +FollowSymlinks -Multiviews
  RewriteEngine On
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>

😊 donate

donate

🍓 鸣谢

toolbox's People

Contributors

aoaostar 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.