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:
(make sure you hide or delete this file after use as is handy to hackers)PHP Code:<php
phpinfo();
?>
change upload size in .htaccesss:
orCode:php_value post_max_size 50M php_value upload_max_filesize 30M
depending on configuration.Code:php5_value post_max_size 50M php5_value upload_max_filesize 30M
or php.ini
Note: some hosts will not allow you to change these settings.Code:upload_max_filesize = 30M post_max_size = 50M
Comment