I'd like to be able to remotely remove/add development banners using shell_exec() in a php file. The sed -i function is not working when run from php/apache. SELINUX is disabled. Running test.sh from terminal as another user works just fine. Browser returns the following:
Reset/Set Environments
Running now...
/sbin/nologin
sed is /bin/sed
sed: couldn't open temporary file /var/www/html/folder/folder/folderwithoutwritepermission/sed63Klhk: Permission denied
EOF
Here's the code:
PHP File:
<!DOCTYPE HTML>
<html>
<head>
<title>Reset/Set Environments</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body>
<h1>Reset/Set Environments</h1>
<?php
$output = shell_exec('sh /var/www/html/pages/test.sh');
echo("<pre>{$output}</pre>");
?>
</body>
</html>
test.sh:
#!/bin/bash
cd /var/www/html/pages/;
echo "Running now...";
echo $SHELL;
type -a sed;
find -L /var/www/html/ -name 'template.php' 2>&1 | xargs sed -i 's/<body>/<body><div style=\"position: fixed; padding: 14px; background-color: #00ff00; width:100%; opacity: 0.5;\"><span style=\"color: #009900; font-size: 14px; font-weight: bold;\">DEVELOPMENT ENVIRONMENT<\/span><\/div>/g' 2>&1
echo "EOF";
2>&1to the end of thesedcall so you can see STDERR -shell_exec()and friends only pipe STDOUT by default. My first thought is permissions somewhere, maybe that/home/myusername/projectpath/is not writable by the user PHP is running as. – DaveRandom Jun 18 '12 at 21:42shmay actually be some completely different shell. e.g. on Ubuntu it's reallydash. Shebangs are ignored when you feed a script directly to a shell, so you're not running this as a bash script, you're running this as whatever shell yourshreally is. – Marc B Jun 18 '12 at 21:45/bin/bash /var/www/html/pages/test.sh– DaveRandom Jun 18 '12 at 21:46shell_exec('sh ...'), tryshell_exec('/bin/bash ...'). – Marc B Jun 18 '12 at 21:47