
August 18th, 2003, 10:46 PM
|
|
|
|
Join Date: Apr 2007
Posts: 86
Time spent in forums: < 1 sec
Reputation Power: 2
|
|
|
exec(PERL) winNT IIS hanging
Hi all,
Using PERL 5.6.1.631, PHP 4.3.1, win NT4.0 & iis webserver.
Trying to call a PERL script from within my PHP script. The PERL script works find from the command line, but causes the browser (I.E.) to hang if called by the PHP web script.
tried with path to perl executable:
[highlight=php]
exec("C:\Perl\ntt\perl.exe C:\pathto\PERLscript\test.pl");
[php]
also tried
[highlight=php]
exec("start C:\pathto\PERLscript\test.pl");
[php]
And several other flavors, but can't get the script to execute. The perl binary & path & script has iis guest internet user permissions set to full control. So full paths are being indidated, and the binaries/paths/code has full permissions.
Any ideas why my call to the PERL script would be hanging?
Thanks for any help/suggestions!
|