Chevereto是一款挺好用的个图床程序。19年我还买过一个授权,后来也没有使用。今天在网上看到有人发了v3.20.10版本的破解版。
官网:https://chevereto.com/
demo:https://demo.chevereto.com/
pj版来自:https://www.moeloc.com/2435.html
版本更新日志:
Chevereto 3.20.10 (2021-07-20)
– Added namespaced chv.to/v3* links
– Added printed debug support for JSON actions
– Fixed bug with “ad” icon
– Fixed bug with set_time_limit
– Fixed user reported bugs [13496,13601,13605]
– Improved MariaDB 10.1, 10.2 and 10.3 support
– Removed redirect table
伪静态
文件中带有nginx和apache伪静态规则。
nginx
# Chevereto Nginx rewrite rules
# Make sure to place these inside your server{} block
# Disable access to .ht* files
location ~ /\.ht {
deny all;
}
# Disable access to sensitive files in app path
location ~ /(app|content|lib|importer)/.*\.(po|php|lock|sql|txt)$ {
deny all;
}
# Disable log on not found images + image replacement
location ~* (jpe?g|png|gif|webp) {
log_not_found off;
error_page 404 /content/images/system/default/404.gif;
}
# Enable CORS header (needed for CDN)
location ~* \.(ttf|ttc|otf|eot|woff|woff2|css|js)$ {
add_header Access-Control-Allow-Origin "*";
}
# Force serve upload path as static content (match your upload folder if needed)
location /images {}
# Route dynamic request to index.php
location / {
try_files $uri $uri/ /index.php$is_args$query_string;
}
apache
# Apache and Chevereto
Apache should work instantly as the whole configuration is on `.htaccess` files. The folder `chevereto` contains one of
these files (note: dot files may be hidden in your filesystem).
# Troubleshooting
These are the most common issues with Apache:
## 404 /install
Apache virtual host configuration requires that you allow `.htaccess` rules at the virtual host path. Search for
"AllowOverride .htacess".
## RewriteBase
In some servers the configuration requires a RewriteBase. Check the file at chevereto/.htaccess where you will find
instructions about this workaround.
这是一款PHP的图床程序,有免费版和付费版。免费付费区别其实不大,仅仅是技术支持和版本更新的区别。
本人在黑色星期五也就是本文发表当天购买了一个个人授权的付费版。19.5美元
下面给大家介绍下这款程序以及安装的步骤。
官网:https://chevereto.com/
demo:https://demo.chevereto.com/
首页预览图如下
安装要求:
Apache或Nginx Web服务器(推荐服务器)
PHP 5.6(推荐7.3)和标准库。
MySQL 8 / MariaDB 10
本人安装环境:nginx+PHP7.2+mysql5.6,使用的宝塔面板。
官方说是还需要安装PHP的一个扩展程序GD图像处理库,这个是涉及到图片的自动加水印等功能使用,本人没有安装这个支持库。
官方给出的安装文件是一个PHP文件,install.php
我们现需要在网站nginx配置文件中加入以下配置。
# Chevereto nginx generated rules for http://img.cheshirex.com/ ## Disable access to sensitive files location ~* /(app|content|lib)/.*\.(po|php|lock|sql)$ { deny all; } ## CORS headers location ~* /.*\.(ttf|ttc|otf|eot|woff|woff2|font.css|css|js) { add_header Access-Control-Allow-Origin "*"; } ## Upload path for image content only and set 404 replacement location ^~ /images/ { location ~* (jpe?g|png|gif) { log_not_found off; error_page 404 /content/images/system/default/404.gif; } return 403; } ## Pretty URLs location / { index index.php; try_files $uri $uri/ /index.php?$query_string; } # END Chevereto nginx rules
加入的位置如下图
在最后一个}前面粘贴进入即可。
将install.php安装文件上传到网站根目录,然后访问就进入了安装过程
第一步是让你输入序列号,可以不输入安装免费版。
下面就是填入数据库等信息然后市创建管理员账户
然后是输入系统邮件地址等等,按照说明一步步安装下来即可。
安装到最后会自动设置,然后下载程序包,程序包下载可能会出现什么http错误之类的,如果出现错误就刷新网页从头开始重新安装。我的重复了2次才成功。
安装后默认的全局后台位置是你的域名/dashboard/bulk
没一个账户也都可以进行一些自动已设置,根据自己喜好设置即可。
本地下载:Chevereto-v3.20.10图床程序 大小:5.89M
评论留言