• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space
  • Chevereto Support CLST

    Support response

    Support checklist

    • Got a Something went wrong message? Read this guide and provide the actual error. Do not skip this.
    • Confirm that the server meets the System Requirements
    • Check for any available Hotfix - your issue could be already reported/fixed
    • Read documentation - It will be required to Debug and understand Errors for a faster support response

Error Message (Empty)

Status
Not open for further replies.

bobbysamai

Chevereto Member
When uploading an image, I noticed with larger images over 2000px wide I see an error message. When I click to review what the error was, it's blank. Is that right? I figured it should say something like "your photo was too large" or something that can help the user figure out what to do to fix their upload...
 

Attachments

  • error.jpg
    error.jpg
    100.3 KB · Views: 9
Is just a display issue, the actual error is a general "Request denied" which won't add anything to the understanding of this error. The actual problem here is related to upload_max_filesize and post_max_size.

Turns out that I forgot to take into consideration the value of post_max_size which affects file uploads. In other words, post_max_size also limits image uploads and in the demo these values are:

Code:
upload_max_filesize = 20M;
post_max_size = 8M;

So when you upload anything bigger than that you will get a request denied.

I will have to add this into the post validation and in the dashboard panel.
 
Last edited:
I've tried uploading photos that are 4K resolution but 1MB file size, still unable to.

Those issues are always because of your server settings, the script has nothing to do if the server limits are too low or if your server is getting too much heat. As a general recommendation, test it on the demo. If the demo fails then is a bug, otherwise isn't.
 
This also happening with me
Some times when I upload a group of photos, 1 or 2 of them fails.
Although almost all images the same size.
 
This also happening with me
Some times when I upload a group of photos, 1 or 2 of them fails.
Although almost all images the same size.
You have to be more specific if you want me to be able to reproduce the bug.
 
You have to be more specific if you want me to be able to reproduce the bug.

After enabling "PHP error reporting"
Shows an error "duplicate image"
This does not happen very often.
But strangely, the picture is not a duplicate.
 
Status
Not open for further replies.
Back
Top