I have a script that creates a folder on another PC in the same domain. When I run the script in dos mode, everything works fine. When I try to run it via a web page, it just couldn't create the folder, but it works if I'm creating it on the local machine.
I've configure the IIS web server to use a domain account, so I don't understand why I can create a folder on the local machine (wksta01) and not another machine (wksta02) within the same domain. :-(
Assuming wksta01 is where it script it at.
mkdir("//wksta01/d/tmp", 0777); - success
mkdir("//wksta02/d/tmp", 0777); - failed
I've configure the IIS web server to use a domain account, so I don't understand why I can create a folder on the local machine (wksta01) and not another machine (wksta02) within the same domain. :-(
Assuming wksta01 is where it script it at.
mkdir("//wksta01/d/tmp", 0777); - success
mkdir("//wksta02/d/tmp", 0777); - failed