• Hey Guest, don't forget to VOTE on each RFC topic. Your voting determine Chevereto development! No votes, no development.
  • 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:

    • 😌 This community is user driven. Be polite with other users.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.

Search images by size

mkerala

👽 Chevereto Freak
I would like to suggest an option to search images by size. This could be added as a parameter in search like show images greater than X MB. Admins doing house keeping could review large images on the site and save space.
 
I don't mind the size of the image as we can already anticipate the expected disc storage requirements by setting the global maximum upload size limit. That being said, there should an option to search by image resolutions.

If you need house cleaning, there can be a system in place that would automatically remove images with 0 views.
 
I don't doubt that in the future there will be search filters like those. In the meanwhile, you can add this tab to route.explorer.php:
 
I don't doubt that in the future there will be search filters like those. In the meanwhile, you can add this tab:

PHP:
            [
                'list'        => TRUE,
                'tools'        => TRUE,
                'label'        => _s('Largest'),
                'id'        => 'list-largest',
                'params'    => 'list=images&sort=size_desc&page=1',
                'current'    => $_REQUEST['sort'] == 'size_desc',
            ]
 
Back
Top