• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

Work in progress Chevereto v4.3.0 announcement

Removed maximum upload limit imposed by php.ini

With the introduction of chunked uploads, Chevereto is no longer constrained by php.ini settings for file size limits. In other words, there's no longer a hard cap on maximum file upload size. Chevereto will try to use CHEVERETO_CHUNK_UPLOAD_SIZE as max chunk size, will also match your server setting if needed.

For example, it won't matter if your server/network hard-limits uploads to 2MB because Chevereto will use that size to split the file in chunks of that size, carrying the upload process of any given size.
 
Improved database schema integer types

Chevereto v4.3.0 updates the database definition, improving storage efficiency. The (ab)use of BIGINT as been changed to INT UNSIGNED, the usage of integer width has been also deprecated.
 
Added application-level categories cache

Chevereto v4.3.0 adds application-level cache to categories, which optimizes the usage of the system resources. Categories will be re-cache only when needed.
 
Added application-level top tags cache

In Chevereto v4.3.0 "top tags" are cached in-memory, which avoids calling the database on every request.
 
Back
Top