Hi balkan,
Can you check to make sure that the php.ini setting for maximum upload size does not have a semi-colon in front of it? If it does, that would mean that it is commented out. Also, you can confirm the setting by creating a single PHP file in a web accessible directory and put the following in it:
- Code: Select all
<?php phpinfo(); ?>
When you load that file, you will get a list of all of your PHP configuration directives. Just remember to delete the file once you are finished with it.
Another directive that must be set is the
post_max_size directive. That setting controls how much data can be sent to your server in one request. If it is less than your file upload size, you will also have problems. It should be larger.
Regards,
Jason