系统简介
在线演示
PDO PHP 扩展开启
php_fileinfo 扩展开启
MySQL 数据库
基于Ajax
分享功能
文件上传
共享链接
多语言
响应式设计
文件预览
Amazon S3,DigitalOcean,Dropbox存储
文档
认证管理
角色和权限
禁用注册
网格和列表视图
广告系统
专业设计
外观编辑
设置
Analytics(分析)
多个主页
(可选)付款系统
拖放上传
上下文菜单
回收站
收藏
搜索
文件细节
源代码开源
Enhancements
Added full supported for S3 presigned urls.
Bug Fixes
Fixed an issue where page refresh would be needed sometimes for deeply nested folders to appear after upload.
Fixed an issue where deeply nested folders would not be shared automatically with parent folder users after upload.
Access token in account settings page will no longer be changed when clicking “copy” button.
Add “localizations.view” permission to guests role by default.
Fixed a few issues on macos with uploading nested folders while chunked uploading is enabled.
Fixed an issue where folders might appear in currently open folder and not in the one they were uploaded to originally until page is refreshed.
Correct expiration date input format for shareable link.
Made some previously missing validation lines translatable.
Centos安装命令:
yum install -y wget && wget -O install.sh http://download.bt.cn/install/install_6.0.sh && sh install.sh
Ubuntu/Deepin安装命令:
wget -O install.sh http://download.bt.cn/install/install-ubuntu_6.0.sh && sudo bash install.sh
Debian安装命令:
wget -O install.sh http://download.bt.cn/install/install-ubuntu_6.0.sh && bash install.sh
Fedora安装命令:
wget -O install.sh http://download.bt.cn/install/install_6.0.sh && bash install.sh
安装完面板后,进入面板,根据提示,然后选择安装PHP、Nginx或Apache、Mysql。新建网站。
1、下载文件解压缩上传到服务器
2、建立mysql数据库
3、将网站运行目录设置为public (public 目录包含了应用入口文件 index.php 和前端资源文件(图片、jаvascript、CSS等),该目录也是 Apache 或 Nginx 等 Web 服务器所指向的应用根目录,这样做的好处是隔离了应用核心文件直接暴露于 Web 根目录之下,如果权限系统没做好或服务器配置有漏洞的话,很可能导致应用敏感文件被黑客窃取,进而对网站安全造成威胁;设置方法请百度。)
4、打开http://www.yourdomain.tld
5、检查环境和扩展,通过点击下一步。
6、输入数据库信息和管理员登录信息。
7、安装完毕。
要替换路径的,别拿过来就用。然后说不好使。用宝塔直接就能设置伪静态和运行目录。
server {
listen 80 default_server;
server_name default;
root /home/forge/default/public;
index index.html index.htm index.php;
charset utf-8;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
access_log off;
error_log /var/log/nginx/default-error.log error;
error_page 404 /index.php;
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
location ~ /\.ht {
deny all;
}
}
的部份代码及教程来源于互联网,仅供网友学习交流,未经作者或上传书面授权,请勿作他用。
若您的权利被侵害,请联系站长 QQ: 84087680 或 点击
yy