changing max filesize size default of 20 megs
PermalinkThanks.
Strange. That folder does not exist.
What's strange is that the 'upload files > incoming' tab automatically points to that location. You do not get point it anywhere else.
I will try creating the folder manually and see if that helps.
Trying to reach it via 'add remote files' does not yield anything either.
We have an 8Mb version made for youTube that will do just fine.
Problem goes away!
thanks
in your home directory, you need to make the following folders:
$ mkdir -p ~/.php/5.3
then inside the 5.3 folder, create a phprc file:
$ cd ~/.php/5.3 $ vim phprc
or whichever editor of choice.
inside the phprc file, just add the variables to override. so if you want up the file size upload, you would put the following into the phprc file:
upload_max_filesize = 20M; post_max_size = 20M;
i believe once you save this, you should be able to see the php settings changed.
thanks
Let me know if that helps.