介绍
Chevereto图片托管是一款非常简洁的PHP图片上传程序,它支持本地上传和在线获取两种图像上传方式,并集成了TinyURL网址缩短服务,让使用者更加方便。
更新日志:
Released on February 20th 2019
- Removed old links (G Library)
- Fixed bug in content privacy mode [11022]
- Fixed bug in page manager [11013]
- Fixed bug in Exif parser [10997]
- Fixed bug in homepage split listing [11036]
- Fixed bug in album thumbnails when not using 1:1 aspect ratio [11002]
- Updated Dutch and Polish translations
Chevereto 3.12.10 下载
地址来源于网络,真假自辨
链接: https://pan.baidu.com/s/1L6y46lXg8mIw23JxWujPiw 提取码: 6n2p
chevereto 安装出现404原因
使用了Nginx提醒404 Not Found解决办法:
规则一:
location / { if (-f $request_filename/index.html){ rewrite (.*) $1/index.htmlbreak; } if (-f $request_filename/index.php){ rewrite (.*) $1/index.php; } if(!-f $request_filename){ rewrite (.*) /index.php; } try_files $uri $uri/ /api.php; } location /admin { try_files $uri /admin/index.php?$args; }
规则二:
location / { try_files $uri $uri/ /index.php?$query_string; }
用Appnode面板安装搭建Chevereto
伪静态为:
try_files $uri $uri/ /index.php?$query_string;
-
打开你的网站, 网站里面可能会提示:
Chevereto can’t create the app/settings.php file. You must manually create this file
.
意思是说:/app / 目录下少要一个settings.php
的文件,我们在对应路径创建一个空文件,命名为 settings.php 即可 - 再刷新你的网站就会出现安装界面。(如果出现权限不够要记得改权限哦)
- 填入数据库等信息,这个按照你自己创建的数据库用户、数据库名字、密码填写即可
转载于:妹妹iの博客