• 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

[Issue] HTTP Error (500)

Gunz

Chevereto Member
Hello guys,

When i try to upload a big image the script give me error "HTTP Error (500)". This is only with big images, so i think is a server issue. I enabled php error but nothing is showed up.

I searched on forum and i found this solution, modify php max execution, input and memory. But the modification didn't solve the problem.

Now i'm looking on google a solution, if someone had the same issue, please post here.

Thank you
 
Problem solved. I saw that on .htacess kloxo modify these parametres. I changed them and now it works perfect.

If anyone had the same problem he must modify these values on php.ini or .htaccess.

;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;

max_execution_time = 300 ; Maximum execution time of each script, in seconds
max_input_time = 120 ; Maximum amount of time each script may spend parsing request data
;max_input_nesting_level = 64 ; Maximum input variable nesting level
memory_limit = 32M ; Maximum amount of memory a script may consume (16MB)

Cheers
 
Problem solved. I saw that on .htacess kloxo modify these parametres. I changed them and now it works perfect.

If anyone had the same problem he must modify these values on php.ini or .htaccess.

;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;

max_execution_time = 300 ; Maximum execution time of each script, in seconds
max_input_time = 120 ; Maximum amount of time each script may spend parsing request data
;max_input_nesting_level = 64 ; Maximum input variable nesting level
memory_limit = 32M ; Maximum amount of memory a script may consume (16MB)

Cheers



I still have http error (500) I don't know why

my php.ini config

max_execution_time = 1000
max_input_time = 1000
memory_limit = 128M
post_max_size = 8M
file_uploads = On
upload_max_filesize = 8M
max_file_uploads = 20
 
Back
Top