Hi there
im trying to run and excute a batch file using the exec() function but i am getting this error
Warning: exec(): Unable to fork [C:\IBserver\www\cod_start.bat] in c:\inetpub\wwwroot\xtremecp\dev\server_start.php on line 10
Does anyone know what this means because it works fine locally but not on my webserver. The actual code is below incase it helps.
<?php
$output = `cod_start.bat`;
echo "<pre>$output</pre>";
echo "Your Server Has Been Started Successfully"
?>