> > system("e:\\tmp\file.bat")
> > but it gives me "Access is denied
try please:
> > system("e:\\tmp\\file.bat")
furthermore:
if you call the script from the server way..
"http://localhost/executeme.php";
you have to either
1. Login to the machine as a user with "execute" Permission
on th
I'm afraid you can't reach files on network mapped disks. They're impossible
to reach also with commands like fopen and similars, so probably you cannot
use system() or exec() and so on.
I'm wrong?
Alessio.
"jong jong" <[EMAIL PROTECTED]> ha scritto nel messaggio
[EMAIL PROTECTED]">news:[EMAIL
Running jobs from the command line usally uses another userid, with different rights
than when run fram the web server.
the web server normaly installs an uses IUSER_ to execute scripts.
Further more a mapping made from a command line will not be available to other users
on the same maschine.