The shell_exec() command provides the ability to run shell commands during the execution of a script.

learn more… | top users | synonyms

0
votes
0answers
34 views

Executing bash script as root from a php script [duplicate]

I have a command that can only be executed as root. I have put this command in a bash script called testscript. My testscript is placed at /home/$USER/. I want to execute this script using Php from a ...
0
votes
1answer
9 views

Permission denied executing shell_exec (PhantomJS)

I installed PhantomJS on my server and it's running great from the terminal. When I try to run form PHP using SHELL_EXEC, I get the following error: phantomjs: Permission denied I set the ...
0
votes
1answer
25 views

PHP exec() functioning strangely

I am trying to execute /path/to/script.pl in PHP; the script, among other things, sends an email when it's done executing. When I try exec( "/path/to/script.pl" ); Nothing happens. Some other ...
2
votes
1answer
60 views

Output of shell_exec gets truncated to 100 characters

When run in shell the following command, curl -F file=@filename http://192.168.0.1 produces the following output: Accuracy = 0% (0/1) (classification) Accuracy = 0% (0/1) (classification) Accuracy ...
0
votes
0answers
28 views

Centos - killing process owned by apache safely

I am trying to kill a background process it is not killing in php script. I followed this post still no cheers. Can anybody help me out. thank you My process is .. ps -ef | grep command apache ...
0
votes
1answer
43 views

exec functions not working from linux daemon

I have been writing a linux daemon which listens on TCP/IP for a request and launches an application on receiving that request. My problem is when I run this daemon from command prompt or IDE (eclipse ...
1
vote
5answers
68 views

Passing Variables to shell_exec()?

I am calling test.sh from PHP using shell_exec method. $my_url="http://www.somesite.com/"; $my_refer="http://www.somesite.com/"; $page = shell_exec('/tmp/my_script.php $my_url $my_refer'); However, ...
0
votes
0answers
20 views

grep is not working in shell_exec()

I'm writing a script from Apache's docroot. Here's the snippet I'm trying to get to work: echo shell_exec("grep -r --include='$glob' $current $dir"); Which returns nothing. Running the command via ...
0
votes
1answer
45 views

How to make a php file execute shell commands

I made a php file to fetch any changes in my repository hosted on github using this code: <?php `git pull`; ?> And I gave the url of this php script(hosted on my server) as a service hook url ...
1
vote
1answer
44 views

Having trouble automating the opening of a non-exe file using INNO Setup and Shellexec

I have done a considerable amount of searching for a solution to what i believe is a very simple answer. I am a very novice INNO Setup Users, so please excuse the question. I have an Excel file which ...
1
vote
1answer
30 views

PHP Curl with Variables

I am trying to pass a few variables to the shell_exec command, but for some reason it's not picking up the data in the php variables. Please help me, and the below is what I got: $out = exec('curl ...
0
votes
1answer
33 views

shell_exec() is acting strange

I have a C program that I've written that turns IP addresses into countries by looking up a big CSV database. I'm trying to call it via shell_exec but something is going wrong. <?php ...
0
votes
0answers
36 views

Executing AppleScript with PHP shell_exec() and OSAScript

My goal is to be able to submit a search query from a web form and have an AppleScript execute the search in DEVONagent. The AppleScript works fine in terminal but I get an error when having PHP do a ...
0
votes
1answer
21 views

launch an application stored on google drive

I'm building a little web app as a data store for a client. User can navigate around the site and download the files they need. I also have an .exe program stored and installed server side. Is ...
1
vote
2answers
58 views

php- how to get shell_exec() output from linux terminal while executing the command? [duplicate]

i am running one linux command with shell_exec() in my php script. $output = shell_exec('/usr/bin/linux-command '); After execution of the command i am getting the value into a variable. That's ...
0
votes
1answer
52 views

exec cannot find the PHP file to execute

I am trying to call a PHP script from another PHP script using the shell_exec command. when I enter the same command in the shell using the same user, everything works as expected. However, when I ...
0
votes
1answer
35 views

Execut bash script in PHP

I need to execut a bash script which mainly contains a pg_dump and some log, clean,... stuff through a PHP file located in the /var/www/ folder My server is a Debian Squeeze 6.0.6 with PHP5 and ...
0
votes
0answers
21 views

unable to send mail from server [migrated]

I am trying to write a script which sends an alert to a few email ids. The script will fetch its data from pmta log file. As my script is ready but it's not sending out the mail. The server on which ...
0
votes
1answer
52 views

Composer.phar don't want to run by shell_exec from PHP script. Why?

Trying to execute it with all possible params, such as -d and full path etc.. No errors. When running another commands, all is ok, when running composer from CMD, all is ok too. Have tried exec, ...
0
votes
1answer
69 views

PHP exec or shell_exec not returning process id (PID) on Windows Wamp

I am on windows 7, using a WampServer, and trying to use FFMPEG. The encoding works, but I can't get a process id back from either the exec() method nor the shell_exec() methods. This is my code : ...
0
votes
1answer
12 views

Can the shell created from PHP shell_exec is reusable?

I am working on a project, where I need to execute multiple unix script from PHP environment. Could this be possible to open a single unix shell and execute all the unix scripts. Currently im using ...
0
votes
1answer
32 views

Unable to execute child_process.exec() when path has spaces

I am using appjs and I want to execute a command to open a folder. What I have var path = __dirname + '/folder to open/'; // path = C:\Program Files\myapplication/folder to open/ ...
0
votes
2answers
53 views

ffmpeg being called via PHP exec batch file

I'm using ffmpeg to extract images from a video file through PHP shell_exec method. This is all ok except if the image already exsists then ffmpeg won't overwrite it even with the -y option in the ...
0
votes
2answers
40 views

How to catch the result of a background PHP script launched from inside PHP?

I've got some PHP code that I want to run as a background process. That code checks a database to see if it should do anything, and either does it or sleeps for awhile before checking again. When it ...
0
votes
1answer
72 views

calling shell_exec(“php myscript.php”) goes into infinite loop

I decided to fork out my php script because it takes too long to run. When I ran it shell_exec() call on a local linux machine, I did not see the infinite loop problem, but on a hosted machine, the ...
0
votes
3answers
56 views

Need shell_exec command to wait before it executes

I'm currently having a problem with a shell command that is running before I want it to. For example I've got 6 commands that I all want to run in succession, and the first 5 are doing fine, but once ...
0
votes
2answers
73 views

PHP shell_exec - how to terminate the process if the connection is closed?

I have a working php script using shell_exec to execute an external program that take about 30 seconds to complete. Problem is that if an user close the browser or the connection is closed for some ...
1
vote
1answer
73 views

PHP shell_exec does not work with ssh

Shell_exec works correctly in PHP, but when using ssh it does not return any output.. <?php echo shell_exec("/usr/bin/ssh -i /tmp/key server 'ls'"); ?> The above command works fine in a ...
2
votes
1answer
66 views

Github pull via shell_exec in ubuntu not working

Hi im trying to setup a WebHook in Github. I have used these instructions : http://net.tutsplus.com/tutorials/other/the-perfect-workflow-with-git-github-and-ssh/ But for some reasons I'm not able ...
0
votes
1answer
68 views

Running phantomjs from shell_exec with cron

This is really frustrating. Simple thing like this will not work when called by crontab: $responseFull = shell_exec("phantomjs --version"); I must say that phantomjs works fine from terminal, ...
1
vote
2answers
55 views

php stripping a particular result from an output

I am using php to grab a shell output that lists all the meetme channels for me. I just want to grab the Conf Num that has 0001 from the bottom up. In my example below, I would like to assign ...
0
votes
1answer
62 views

what does ## in shell script means

While compiling a script , I came across the command do f=${file##*/}. I am curious to know what does ## in this line means. Thanks for a reply in advance
0
votes
0answers
101 views

PHP Apache shell exec script unable to run a program

I'm fairly new to linux and I have been struggling with this for quite some time and any help is greatly appreciated. I'm trying to run a ruby program located here ...
1
vote
2answers
80 views

How to write a multi-line shell script

I have a remote machine where I want to replace the contents of the file. I am using the following commands ssh abc@host abc sed -i s/enable=false/enable=true/g /config/pqr.properties where abc is ...
0
votes
3answers
225 views

exec and shell_exec not working in php

I am having problems with exec and shell_exec i have looked at every post on here and cant seem to find the problem. the code i am using : chdir('/'); $handle = shell_exec("/usr/bin/php ...
1
vote
1answer
249 views

shell_exec return null - monitoring of linux services

I need monitoring services of my linux server without shell and i write a new php script, which do this function. After run, script not write status of service. For example - if i write this command ...
0
votes
0answers
74 views

My shell_exec Command not working on browser but works fine when i load same php page from putty by calling php filename.php

$STATUS = shell_exec("service bearerbox stop"); echo $STATUS; It says on browser:Stopping Bearerbox: [FAILED]. I tried giving full path als it also didn't worked for me. My safe_mode is also ...
0
votes
1answer
58 views

How to close a string the way that bash does in php CLI or suppress error output?

If you create a simple php script with this code: shell_exec('"'); And run it with: php myscript.php It gives the following error in bash on my Mac: sh: -c: line 0: unexpected EOF while looking ...
0
votes
1answer
117 views

Can't execute certain CMD commands through PHP shell_exec()

I'm having a problem with executing CMD commands on shell_exec() (all further mentioned commands work fine when I go directly through cmd.exe). <?php //$cmd="echo it works"; this one works fine ...
0
votes
0answers
18 views

Using antiword in asp.net on mono (debian)

It is possible to use antiword in asp.net? Server is mono debian. php code => $content = shell_exec('/usr/local/bin/antiword '.$filename); asp.net? string text = ...
1
vote
1answer
87 views

php impersonate user

What I am trying to do is run shell commands as the system root user from a web page. From what I have researched, there is no way to impersonate a system user in PHP on Linux (CentOS 6.3 with PHP ...
0
votes
0answers
154 views

PHP shell_exec() sometimes doesn't work

I have a PHP script that performs an import of data from a vendor partner. One of the things that it needs to do is to call another script via shell_exec() that then processes an image file and ...
0
votes
2answers
64 views

Launching a Java server from a Shell script

I developed a Server/Client application using Java socket. My Server is Always Running as this code shows. while(SERVER_STATUT) //Server Statut is always true unless the client launches the stop ...
0
votes
0answers
85 views

PHP shell_exec() doesn't return the correct status

I'm trying to run a sh script file from the php function shell_exec() but every time the return is uncorrect. This is the sh file content: if [[ -z $1 ]] then echo "svn st: NULL" else ...
-2
votes
1answer
73 views

php exec('cd executables/') alternative [closed]

My server does not run exec() functions. But a PHP script of me have this exec() functios in it: exec('cd executables/ && php executables/import_run.php 3 en_US > ...
2
votes
1answer
54 views

Variable inside shell_exec

I am total noob in scripting, and try to find out where is the problem in my code. I have a text files with customer details, first line of the file is username, second is real name. This details i ...
0
votes
1answer
101 views

It seems php exec is not waiting for execution

Here's the thing, $file="myjpg.jpg"; $runme="/var/www/html/facedetect/facedetect ".$file; $output=shell_exec($runme); var_dump($output); Turns NULL But in reality the exact same command run ...
0
votes
2answers
102 views

PHP exec operator doesn't execute specific command

One of my lines of shell command is not executing despite other similar lines working. I am running on a linux machine using a Ubuntu 12.04 based OS. I have tried using exec as well, still doesn't ...
0
votes
1answer
75 views

Executing shell script in different directory using PHP

I have a shell script in the /home/ directory. I'd like to execute it by using a web page. The webserver is located in /var/www/. I'm wondering how would I execute the shell script from within the ...
0
votes
0answers
25 views

shell_exec bad work

i have a server with windows xp pro, with bitnami WAMP stack. when I use the function shell_exec, the process starts, gets the job done, but it stops and remains the page to load. If I instead launch ...

1 2 3 4 5 7