I got error 403 Request entity too large! Where can I change this? apache conf?
max upload file size in php.ini is 20M
regards Thomas A
Have you checked the max_post_size directive in the php.ini file?
When trying to upload via HTTP, As i mentioned earlier max_upload ... is set to 20M
regards, Thomas A.
Check php.ini and adjust the following directives:
Set upload_max_filesize to the size of the files you need to upload (or 1 meg larger, just to be safe). Set post_max_filesize 1 meg more than upload_max_filesize. That seemed to do the trick for me.