Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

php shell_exec permission denied

shell_exec("touch /Users/Nerses/Downloads/ads.txt 2>&1")

I have a problem with the PHP exec(shel_exec) function. It says that I do not have permissions to execute the command.

How can I open these permissions?

like image 833
user3918128 Avatar asked Aug 18 '15 08:08

user3918128


1 Answers

Your PHP code is trying to access /Users/Nerses/Downloads/ads.txt, as you can see, that folder is owned by the user called "Nerses".

He is the only one (and root) who can access it (unless you change the permissions to that folder).

Normally, the user that executes shell_exec is called www-data, so give permissions to that user, or change the ones in that folder.

Other option is to execute

shell_exec('sudo -S YOUR COMMAND');

You can check out the user you use with the command

shell_exec('whoami');
like image 81
SpongePablo Avatar answered Sep 21 '22 15:09

SpongePablo