tags:

views:

36

answers:

1

i can't upload large files, but i've set

php.ini

max_execution_time = 3600
max_input_time = 600
memory_limit = 100M
post_max_size = 100M
file_uploads = On
upload_max_filesize = 100M 

it returns a 500 error - [an error occurred while processing this directive] could you say why? thanks

+1  A: 

500 error is not an error itself, it's just a banner that reads "There is an error somewhere! See error log for the details".

Looks like it's not a php problem, but a web-server one. But I hate to guess anyway. Better to take a look into error log.

Col. Shrapnel
@Col. Shrapnel where is error log?
Syom
@Syom In the `logs` directory of your web server. If you're on shared hosting, you'll need to look into the control panel, or talk to the provider.
Pekka
@Pekka thanks man;)
Syom
@Syom if it's windows and apache installed in default location, it's "C:\Program Files\Apache Software Foundation\Apache2.2\logs\error.log"
Col. Shrapnel