I'm currently making a website that balances the load by using different computers for different tasks. I.E, mail server, web server, mysql server, etc.
One of the servers on 192.168.1.2 does the web page and mysql processing. It is also supposed to create the needed directories when someone signs up.
How do I make computer 192.168.1.2 create a directory on 192.168.1.3?
I am currently using the function
mkdir(c:/top-folder/middle-folder/".$username."/videos", 0700, true);
Thanks,
One of the servers on 192.168.1.2 does the web page and mysql processing. It is also supposed to create the needed directories when someone signs up.
How do I make computer 192.168.1.2 create a directory on 192.168.1.3?
I am currently using the function
mkdir(c:/top-folder/middle-folder/".$username."/videos", 0700, true);
Thanks,