• 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.
  • 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