Hi,
We are running PHP under IIS. We are currently using the CGI version as opposed to the ISAPI one. We have a script that accesses a path on the file system. It works fine when the file system is on the local (server) computer. Now we want to store these files on a separate computer. The problem is that the php.exe process is running in the system context, which has no access to other computers' shares. Is there a way to make php.exe run in a different user's context so we can give that user permission to the directory on the remote machine? Or do we have to use ISAPI? If so, how do we make the ISAPI version run in a different user context? Thanks for the help.
-Brian