I'm tho having a wee bit of problems understanding how to do, because I'm newbie so maybee it's minor problem I have with my server and PHP.
On my server (SME 5.6) I have 4 domains. 1 is my own, the rest belongs to other people. What I need is a way to have different php.ini settings for different domains. Basically I need the following settings.
For mydomain.bla:
file_uploads=On
upload_tmp_dir=/home/e-smith/blabla/mydomainpath
upload_max_filesize=10M
For domain otherdomain1.bla:
file_uploads=off
;upload_tmp_dir=
;upload_max_filesize=
For domain otherdomain2.bla:
file_uploads=On
upload_tmp_dir=/home/e-smith/blabla/otherdomain2path
upload_max_filesize=1M
For domain otherdomain3.bla:
file_uploads=On
upload_tmp_dir=/home/e-smith/blabla/otherdomain3path
upload_max_filesize=5M
Is this possible in any way?
I've read the link over and over but .... man, I feel like such a newbie..
I will read it again...
...and for sure I hope some of you guys can help with this template. Maybee there's a HOWTO?
Thomas