yabsoft
05-06-2007, 07:51 AM
Issues:
If you are using flash upload to upload files, but download links doesn't show for big files, whereas small files is working fine. This issue may be caused by the PHP upload limitions!
Solution:
Please check values of post_max_size and upload_max_filesize in your php.ini . If their values are smaller then your allowed filesize, you have to raise them to be bigger then the allowed fielsize to store files successfully.
You can also raise the values of post_max_size and upload_max_filesize by adding below lines in your .htaccess file, (Some servers doesn't support this method)
php_value upload_max_filesize 200M # you can change 200M to your value
php_value post_max_size 200M # you can change 200M to your value
If you can't access to php.ini, you can create a phpinfo.php at your server with below lines to view your PHP setting:
<?phpinfo();?> Now you can check the values of post_max_size and upload_max_filesize from http://yoursite.com/phpinfo.php.
If you are using flash upload to upload files, but download links doesn't show for big files, whereas small files is working fine. This issue may be caused by the PHP upload limitions!
Solution:
Please check values of post_max_size and upload_max_filesize in your php.ini . If their values are smaller then your allowed filesize, you have to raise them to be bigger then the allowed fielsize to store files successfully.
You can also raise the values of post_max_size and upload_max_filesize by adding below lines in your .htaccess file, (Some servers doesn't support this method)
php_value upload_max_filesize 200M # you can change 200M to your value
php_value post_max_size 200M # you can change 200M to your value
If you can't access to php.ini, you can create a phpinfo.php at your server with below lines to view your PHP setting:
<?phpinfo();?> Now you can check the values of post_max_size and upload_max_filesize from http://yoursite.com/phpinfo.php.