Furry stuff, oekaki stuff, and other stuff.
You are not logged in.
hi ._.
I wanted to change the max. ani. filesize to 2MB (2000000)..
but ..it only allows 1MB or lesser
(when i type 2000000 it change it to 1000000 automaticly)
can someone tell me how I can change it to 2MB?
maybe....you should know..that I have no knowledge with php,html and so on...
I'm happy that I could installed the wacintaki correctly on my server^^"
Offline
You actually want to accept 2 megs of data for an image submission? Well, OK...
You'll have to open up cpanel.php, and look for this line:
$verify_max = array (10000, 50, 500, 10000, 10000, 10000, 10000, 500, 500, 100000000, 1000000, 15000000, 500, 1000, 2000000);
replace it with this one:
$verify_max = array (10000, 50, 500, 10000, 10000, 10000, 10000, 500, 500, 100000000, 2000000, 15000000, 500, 1000, 2000000);
(The fifth from last number is changed to 2000000).
Be careful when doing this. If the array positions get messed up, or you accidently delete a comma, your config file can get all kinds of wrong values written to it. Make a backup of your config.php file, just in case.
Offline