I'm trying to run a bash script using shell_exec but It doesnt seem to work. (Nothing seems to happen) I'm using nginx and the latest php5-cgi. Heres what the php file looks like:

<?php

$startserver = "./startserver.sh";
$startserver = shell_exec($startserver);
$getprocess = "pidof hlds_amd";
$pid = shell_exec($getprocess);

$fh = fopen('closeserver.sh', 'w');
$command = "kill -9 $pid";
fwrite($fh, $command);
fclose($fh);


$string = "at -f closeserver.sh now + 1 hour";
$closer = shell_exec($string);  


?>

and this is what the bash script looks like:

#!/bin/bash
cd /home/kraffs/srcds
./hlds_run -game cstrike -autoupdate +maxplayers 12 +map de_dust2 > hlds.log 2>&1 &

Theres no errors in the phpscript and the file gets created just fine but $startserver doesnt seem to get executed and $pid is empty. Did I miss something in the php file or do I need to change permissions for an user? Thanks for your help.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

replace shell_exec, with below function and try again

<?php
function runcmd($EXEC_CMD)

    $handle = popen ($EXEC_CMD, 'r');
    $output = "";
    if ($handle) {
        while(! feof ($handle)) {
            $read = fgets ($handle);
            $output .= $read;
        } 
        pclose($handle);
    }
    return $output;
}  
?>
link|improve this answer
Same issue, no errors. Just a blank page. – Kraffs Mar 29 '11 at 16:09
yeah, it should be a blank page because you didnt print out any output, if you like to see the output, append echo $output; before return $output; in runcmd function. In additon insert <pre> before your first <?php tag and </pre> after your last ?> tag. make sure that you have chmod +x startserver.sh, insert runcmd("chmod +x closeserver.sh"); before $closer = shell_exec($string); – thaolt Mar 29 '11 at 16:15
I did, it says nothing and does nothing. – Kraffs Mar 29 '11 at 16:20
I even tried changing to apache2 and It didn't work there either. – Kraffs Mar 29 '11 at 16:23
is your startserver.sh is located in the same folder with the phpscript? is your hlds.log empty? does display_error turn on in your php.ini? if so, this is as far as I can help – thaolt Mar 29 '11 at 16:27
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.