Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/osuuu/LightPicture
企业/团队/个人图片资源管理系统、图床系统
https://github.com/osuuu/LightPicture
Last synced: 14 days ago
JSON representation
企业/团队/个人图片资源管理系统、图床系统
- Host: GitHub
- URL: https://github.com/osuuu/LightPicture
- Owner: osuuu
- License: other
- Created: 2022-01-16T04:33:04.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-02-27T12:59:27.000Z (over 2 years ago)
- Last Synced: 2024-07-31T08:16:25.434Z (3 months ago)
- Language: PHP
- Homepage: http://picture.h234.cn
- Size: 11.9 MB
- Stars: 433
- Watchers: 24
- Forks: 98
- Open Issues: 27
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- awesome - osuuu/LightPicture - 企业/团队/个人图片资源管理系统、图床系统 (PHP)
README
LightPicture - 企业/团队图床系统
☁ 使用thinkphp+vue开发,前后端分离;本仓库为完整版程序,下载后根据安装教程安装即可使用;[官网](http://picture.h234.cn) - [演示](http://pic.xyaxw.cn) - [使用手册](https://www.kancloud.cn/osuu234/lightpicture/2648408) - [作者博客](https://www.osuu.net)
![b200946b6beab015.png](http://res.eemu.cn/LightPicture/2022/01/b200946b6beab015.png)
![2a2cd7d94cbc9db7.png](http://res.eemu.cn/LightPicture/2022/01/2a2cd7d94cbc9db7.png)## 程序功能
* 支持第三方云储存,本地、阿里云OSS、腾讯云COS、七牛云KODO、又拍云USS、华为云OBS等等
* 支持多桶储存,可同时添加多个对象存储桶管理,适合团队多桶协作
* 多图上传、拖拽上传、粘贴上传、上传预览、全屏预览、一键复制图片外链
* 多用户管理、分组管理;不同分组用户控制不同的存储桶
* 完整的权限控制功能,不同用户组可分配不同的操作权限,控制其上传删除及查看
* 完整的可视化日志功能,记录用户所有操作,方便事件溯源
* 全局配置用户初始剩余储存空间、设置指定用户剩余储存空间
* 支持接口上传、接口删除
* 原创Geek扁平化页面风格,高性能 / 精致 / 优雅 / 简洁而不简单## 安装要求
* PHP 版本 ≥ 7.2
* Mysql版本 ≥ 5.5
* PDO 拓展
* fileinfo 拓展
* curl 拓展
* ZipArchive 支持## 安装教程
1. 下载LightPicture,上传至 web 运行环境,解压。
2. 设置运行目录为 public。
3. 配置网站默认文档:
~~~
index.html
index.php
~~~4. 配置 Rewrite 规则为:thinkphp
#### \[ Apache \]~~~
Options +FollowSymlinks -Multiviews
RewriteEngine OnRewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]~~~
#### \[ Nginx\]~~~
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
}
}
~~~5. 访问 域名/install,根据页面提示安装。
6. 安装完成后默认 账号为admin 密码123456注:完成后若开启前台注册请登录管理员账号配置发信邮箱
## 联系我
- Email: [email protected]## 捐赠/打赏
如果您认可我的作品,并且觉得对你有所帮助我愿意接受来自各方面的捐赠
支付宝
微信
## 鸣谢
- ThinkPHP
- Vue
- iviewUI
- Iconfont
- viewer.js## 开源许可
[GPL 3.0](https://opensource.org/licenses/GPL-3.0)Copyright (c) 2022 [LightPicture](http://picture.h234.cn).