Is it possible to background a shell command that is executed via system / exec?
Like in bash:
/bin/command &
Would the following do the same:
system('/bin/command &');
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
it will be the same as the bash, as the text is sent directly to the command line but it’s limited to the user permissions for the user that allocated to php & apache
so you should check user permissions to access these command.