How do i get to change the pic upload limit in class.upload.php from 1024 kb (1mb) to 2024 kb (2mb). I've changed it but when i upload a pic that's more than 1024 kb it says uploaded successfully, but the pic doesn't show!!!! It's blank
The pic upload limit
Collapse
X
-
I have answered this question already but spam block keeps blocking it.....
So attempt number 3:
check you max upload size:
info.php:
PHP Code:<php
phpinfo();
?>
change upload size in .htaccesss:
Code:php_value post_max_size 50M php_value upload_max_filesize 30M
Code:php5_value post_max_size 50M php5_value upload_max_filesize 30M
or php.ini
Code:upload_max_filesize = 30M post_max_size = 50M
Comment