I have a minor problem with my server and PHP. I hope some of you guys can help or perhaps hint at a solution.
On my server (SME, http://www.e-smith.org) 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?
Regards
Thomas L.