GithubHelp home page GithubHelp logo

cdlaimin / toolbox Goto Github PK

View Code? Open in Web Editor NEW

This project forked from aoaostar/toolbox

0.0 1.0 0.0 14.95 MB

🚀傲星工具箱,一个在线工具箱

License: GNU General Public License v3.0

PHP 48.95% Shell 0.11% HTML 39.53% CSS 0.69% JavaScript 3.88% Smarty 6.84%

toolbox's Introduction

toolbox

🎉 What's this?

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

😺 演示地址

🍹 演示图

🎑 说明

严禁用于非法用途

😺 文档

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

🎊 环境要求

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

🚠 部署

  • 下载源代码

  • 设置运行目录为public

  • 关闭防跨站(open_basedir

  • 设置伪静态

  • 去除静态文件代理

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

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

    • 一般是默认允许的(如有无法上传、无法打开页面或其他未知问题可以设置一下目录权限)
    • Apache的所属组为www-data,那么就请修改wwwwww-data
    chmod -R 755 *
    chown -R www:www *
  • 打开你的域名/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

🍓 鸣谢

  • thinkphp
  • vuejs
  • daisyui
  • tailwindcss
  • naive UI
  • naive UI admin

toolbox's People

Contributors

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