顶点网 » 脚本代码 » BeDrive v2.2.0- PHP文件分享和云存储源码破解版
三月 21 2020年

BeDrive v2.2.0- PHP文件分享和云存储源码破解版

reishi  2020-03-21, 02:58   脚本代码  25 672  已测试  预约汉化
13 条评论

BeDrive v2.2.0- PHP文件分享和云存储源码破解版

系统简介


BeDrive可以让你在没有任何编码的基础上在几分钟内创建出一个自托管文件分享的网站来。它有着强大的功能,并且安装使用方便。在起初的时候官方自己的介绍说已经超越了部分同行,例如谷歌和 dropbox,可能也感觉不妥吧,现在找不到这些字眼了。本次给大家带来的是2.2.0目前官方最新版。


在线演示



https://bedrive.vebto.com
https://bedrive.themez.cc 简体中文翻译 有需要的与我联系,需付费,价格合理。


系统需求



PHP 版本大于等于 5.6
PDO PHP 扩展开启
php_fileinfo 扩展开启
MySQL 数据库


系统特性



安装方便
基于Ajax
分享功能
文件上传
共享链接
多语言
响应式设计
文件预览
Amazon S3,DigitalOcean,Dropbox存储
文档
认证管理
角色和权限
禁用注册
网格和列表视图
广告系统
专业设计
外观编辑
设置
Analytics(分析)
多个主页
(可选)付款系统
拖放上传
上下文菜单
回收站
收藏
搜索
文件细节
源代码开源


更新日志



2019 December 29 - Version 2.2.0
New Features
Added dark & light mode as well as multiple theme functionality.
Data tables in admin area now have a number of built-in filters for easier data management.
Added chunked uploading. This allows BeDrive to upload large files in smaller chunks for better upload reliability and avoid server file size limits.
Added resumable uploads functionality.
Added support for XSendFile and XAcceleratedResponse for reducing server RAM and CPU usage.
Email notification can now be sent to user when a file or folder is shared with them.
Public uploads (like user avatars) can now be stored on cloud services (s3, digitalocean, backblaze etc.).
Email addresses can now be suggested when sharing files and folders.
Enhancements
Default view mode for drive can now be select from settings page.
Increased performance when storing files on remote services.
Added several new options to landing page and landing page editor.
Reduced memory usage when creating .zip files from large files.
Improved performance when downloading large files.
Drive view mode changes will now be remembered between requests.
Account confirmation email can now be resent from login page and admin area.
Localization settings page will now show all available timezones.
Admin area is now fully responsive.
Custom HTML can now be entered from "admin -> appearance > custom code" page.
"Admin > ads" page will now show a preview of where specific ad will appear on site.
Default user avatars will now be generated automatically based on their email address.
"iframe" and "script" tags are not supported in custom pages.
Bug Fixes
Fixed a few non-translatable lines.
File list will now scroll properly on mobile.
Completely rebuilt appearance editor "colors" section, which will fix a number of issues with changing default colors.
Fixed an issue where upload progress bar animation would sometimes be "jerky".
When uploading multiple files, if one upload fails, other uploads in the queue will now correctly continue to upload.
Failed uploads in appearance editor will now correctly show error message.
Fixed an issue where user would not be editable sometimes from "admin > users" page.
Unsupported image types should now be uploaded properly.
Prevent files from being dragged and dropped on other files.
Copying large images will now correctly copy auto-generated thumbnails as well.
PDF can now be properly previewed when S3 is set as storage method.
Fixed a few issues with backblaze upload method.
Fixed a few text lines that were not translatable.
Make sure file extension is always appended to downloaded file name.
Removed deprecated google+ sharing and replaced it with email share.
Child plans will now correctly inherit parent plan currency.
.csv files will now be recognized as spreadsheet type.
Fixed an issue with infinite scroll in folder preview page.
Folder preview page will now scroll properly on mobile devices.
Individual files in shared folder can now be downloaded by non-logged in users.
Fixed an issue where image thumbnail would not be shown sometimes in shared folder.
Don't ask password again for nested folders if user has already entered password for parent shared folder.
Shared files will no longer take up user allowed storage space.
Restoring folder from trash will now properly restore child items.


安装方法



咱也为宝塔做点贡献,本测试基于宝塔面板。
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、安装完毕。












下载地址



国内下载
链接: https://pan.baidu.com/s/1cyy2yUNsPqO4TRMpfQp3lg 提取码: cmfk

国外下载
https://yadi.sk/d/mEQC2r3UXDhZCQ


欢迎转载,拒绝贩卖,在淘宝上看到有卖这个的,价格还不低,改个名字就拿去卖,也不嫌恶心?


安装截图




最后附上nginx的伪静态规则


要替换路径的,别拿过来就用。然后说不好使。用宝塔直接就能设置伪静态和运行目录。
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;
    }
}


BeDrive v2.2.0- PHP文件分享和云存储源码破解版

文章最后由 reishi 在 2020-03-21, 02:58 编辑
编辑原因: 更新下载地址


  1. 默认头像

    1426140920  (会员)

    2020-01-07 13:39 96 条评论

    汉化了???

  1. 默认头像

    situdaren  (ViP)

    2020-01-07 15:17 1 条评论

    怎没联系你汉化板?

  1. 默认头像

    dgcl  (会员)

    2020-01-08 10:26 27 条评论

    功能有点简单

  1. 默认头像

    1426140920  (会员)

    2020-01-10 10:02 96 条评论

    <IfModule mod_rewrite.c>
    RewriteEngine On

    ##
    ## You may need to uncomment (remove #) the following line for some hosting environments,
    ## if you have installed to a subdirectory, enter the name here also.
    ## Example: for https://site.com enter: "/", for https://site.com/something enter: "/something/"
    ##
    # RewriteBase /

    ##
    ## Uncomment following lines to force HTTPS.
    ##
    # RewriteCond %{HTTPS} off
    # RewriteRule (.*) https://%{SERVER_NAME}/$1 [R,L]

    RewriteCond %{REQUEST_URI}::$1 ^(/.+)/(.*)::\2$
    RewriteRule ^(.*) - [E=BASE:%1]

    RewriteCond %{REQUEST_URI} !^public
    RewriteRule ^(.*)$ public/$1 [L]
    </IfModule>
    apache规则

  1. 默认头像

    q127100113  (会员)

    2020-01-17 22:38 12 条评论

    最后一步 SQLSTATE[HY000] [1044] Access denied for user ''@'localhost' to database 'forge' (SQL: select * from information_schema.tables where table_schema = forge and table_name = migrations) 怎么回事

  1. 默认头像

    reishi  (管理员)

    2020-01-17 22:44 1 543 条评论

    引用: q127100113
    最后一步 SQLSTATE[HY000] [1044] Access denied for user ''@'localhost' to database 'forge' (SQL: select * from information_schema.tables where table_schema = forge and table_name = migrations) 怎么回事

    看看数据库权限吧,或者数据库的信息是否有误。

  1. 默认头像

    q127100113  (会员)

    2020-01-29 17:24 12 条评论

    引用: reishi
    引用: q127100113
    最后一步 SQLSTATE[HY000] [1044] Access denied for user ''@'localhost' to database 'forge' (SQL: select * from information_schema.tables where table_schema = forge and table_name = migrations) 怎么回事

    看看数据库权限吧,或者数据库的信息是否有误。

    不行啊,config无法写入,手动改数据库文件安装是完成了,但是各种报错

  1. 默认头像

    ryanwu  (会员)

    2020-03-08 16:24 19 条评论

    国内下载的网盘挂了呢 ?

  1. 默认头像

    reishi  (管理员)

    2020-03-08 16:28 1 543 条评论

    引用: ryanwu
    国内下载的网盘挂了呢 ?

    感谢提醒,已经更新下载地址了。

  1. 默认头像

    kiver  (ViP)

    2020-03-17 21:22 1 条评论

    引用: q127100113
    引用: reishi
    引用: q127100113
    最后一步 SQLSTATE[HY000] [1044] Access denied for user ''@'localhost' to database 'forge' (SQL: select * from information_schema.tables where table_schema = forge and table_name = migrations) 怎么回事

    看看数据库权限吧,或者数据库的信息是否有误。

    不行啊,config无法写入,手动改数据库文件安装是完成了,但是各种报错

    我也出现同样的问题,一直无法安装!

  1. 默认头像

    reishi  (管理员)

    2020-03-17 23:23 1 543 条评论

    引用: kiver

    我也出现同样的问题,一直无法安装!

    联系我 附带你的联系方式,比如QQ

  1. 默认头像

    kjch  (ViP)

    2020-04-09 22:36 2 条评论

    安装不了,一打开就是页面无法访问,都已经打开了public目录还是不行

  1. 默认头像

    reishi  (管理员)

    2020-04-09 22:47 1 543 条评论

    引用: kjch
    安装不了,一打开就是页面无法访问,都已经打开了public目录还是不行

    https://bedrive.themez.cc/ 可以安装的,如果有需要帮助,可以联系我。

信息

想要留言? 请 登录 您的账号。还没有? 你可以 点击注册账号

投票调查

对新模板的看法