Tagged Questions

3
votes
1answer
78 views

PHP exec: hangs, doesn't continue to next line

I have a php file 'run.php' which I'm running from the terminal. Within this file I have the following lines: exec("open-crawlers $port 2>&1",$out,$code); echo 'hello'; The problem that I'm ...
3
votes
5answers
773 views

How To Execute SSH Commands Via PHP

I am looking to SSH out via PHP. What is the best/most secure way to go about this? I know I can do: shell_exec("SSH user@host.com mkdir /testing"); Anything better? That feels so 'naughty' :).
3
votes
2answers
217 views

Is using shell commands from PHP/CGI bad practice?

Are shell commands considered a legitimate programming interface? Specifically, is there anything wrong with executing bash shell commands on a linux application server from PHP pages or CGI files? ...
3
votes
8answers
3k views

Using shell_exec('passwd') to change a user's password

I need to be able to change the users' password through a web page (in a controlled environment). So, for that, I'm using this code: <?php $output = shell_exec("sudo -u dummy passwd testUser ...
2
votes
2answers
43 views

Running a C compiled program through a PHP webpage under linux

My page.php file looks like this at the moment: <?php $cmd = './foo < input.txt > output.txt'; $result = shell_exec($cmd); echo system('date'); //just to see change when ...
2
votes
3answers
47 views

PHP shell_exec with parameters is not working

I have a problem with the shell_exec option in my server. I am running CentOS 5.7 with CPanel and PHP installed on it. In our coding we are passing parameters to a php file using shell_exec. Our ...
2
votes
1answer
70 views

Running Linux Command from PHP

I have a bit of a unique situation. I'm trying to run a video encoding program from a PHP script called Diascope, which relies on the 'convert' command provided by ImageMagick. I have a bash script ...
2
votes
1answer
77 views

running shell_exec in php causes web server to hang

I am running the following code. What it does is take a text file, splits it into parts that end with '_part' ending and than calls the same script with a flag to process the files - uploading the ...
2
votes
1answer
196 views

PHP shell_exec wait for script to finish?

I have a PHP script that queries a database for a list of jobs to be done and fires off other PHP scripts based on what it finds in the database (basically a process queue). Some of the scripts that ...
2
votes
4answers
421 views

php system() shell_exec() hangs the browser [closed]

Possible Duplicate: Asynchronous shell exec in PHP i need to run a java program in the background. process.php contains shell_exec("php php_cli.php") php_cli.php contains ...
2
votes
4answers
473 views

PHP sudo in shell_exec

I want to execute a command as root with shell_exec. Now I know this is dangerous, but believe me, you need to login with MOD_AUTH and have the right privilleges to come to this page. It's secure. How ...
2
votes
4answers
858 views

Querying an audio/video file for information

I want a PHP function which receives the path to a file and returns an array of information about it. The PHP file can call FFmpeg. Returned data should be something like Array( [mime] ...
2
votes
1answer
550 views

php shell_exec executing java program

In PHP code I try to execute Java program using shell_exec but I get empty line. When I tried to execute program in bash: #bin/bash echo "aaa" I get "aaa" but when i tried to execute the same ...
2
votes
3answers
283 views

shell_exec() in PHP

<?php // Execute a shell script $dump = shell_exec('bigfile.sh'); // This script takes some 10s to complete execution print_r($dump); // Dump log to screen ?> When the script above is ...
1
vote
1answer
36 views

php shell_Exec not working while the command works in shell

I have to use imagemagick convert command from php. So I'm using shell_exec but the output of that is null string. I know that the command convert doesn't print anyting on STDOUT but the desired ...
1
vote
2answers
37 views

php shell_exec with realtime updating

I have this shell program that I want to execute by php. The problem is that it can potentially take a long time, and as of that I need it to have real-time updating to the user's browser. I read ...
1
vote
1answer
59 views

PHP select text from a complex string

I am getting output from my linux box running the ifconfig command. I do so by running the shell_exec command. I found an example but I can't seem to work further with it. This is my current code. ...
1
vote
2answers
151 views

PHP shell_exec ssh connection

I know this question has been asked before in many different ways but I'm still scratching my head over why I can't get this to work. Firstly I have two SLES servers setup, these are Server A & ...
1
vote
1answer
62 views

PHP shell_exec() result in txt file?

I'd like to try to see the output of two shell_exec() calls in a .txt file.So i tried this: $data_server = shell_exec('./c5.0demo -f $username -r'); $errorFile = "error.txt"; $fileopen = ...
1
vote
0answers
92 views

shell_exec not execute some programs (e.g 7z) but start another (e.g zip) [closed]

i make shell_exec("7z a /blablabla/arc /blablabla/file"); i need archive file with 7z, but its not working. But it works if i use zip instead 7z or start script manually This not only with 7z, ...
1
vote
4answers
159 views

how to print on client printer from server using php

I want to print a pdf file(pdf file is on server) using php (php is also running on server) on client computer. How can I do this. Thanks in advance for you help
1
vote
2answers
121 views

How to execute a shell command from a php script

I would like to create a php script to execute a shell command and return its output. The server requires a private key. When I first decided to test this out I created this: <?php $command = ...
1
vote
2answers
104 views

PHP gather server statistics

I am building a custom component for my webapp that will benchmark each service, so far the plan is to benchmark the usual stuff: Response Time Memory Current server activity etc. I have built ...
1
vote
1answer
297 views

WordNet access using php

I tried to access the wordnet dictionary as mentioned in: Calling wordnet from php (Wordnet class or API for PHP). It worked fine through command line. Then I tried to use the php function ...
1
vote
1answer
163 views

Limit execution time of shell_exec and grab whatever output is generated

I'm trying to limit the max execution time of shell_exec in PHP to say 20 seconds and fetch whatever output is generated during this time. If shell_exec finishes in less than 20 seconds the script ...
1
vote
2answers
329 views

php shell_exec touch redirect and adduser

I am trying to ultimately use php's shell_exec function to create new Linux users. I am, however, running into problems even with the debugging. Here is my code <?PHP function ...
1
vote
2answers
469 views

Git fetch from PHP file with shell_exec using private keys

I have built a php script that performs a git fetch on a specific folder: the exact command is : usr/bin/git --git-dir=/home/bathan/www/sync_test/repo3//.git ...
1
vote
1answer
394 views

shell_exec return NULL

when i run the code shell_exec('ping -c 4 127.0.0.1') it returns NULL, but when I run the same command (ping -c 4 127.0.0.1) in ssh, it returns perfectly... and yes, the script can run shell_exec, ...
1
vote
3answers
818 views

executing a Powershell script from php

I'm trying to execute a powershell script from PHP, but it does not seem to work. The script 'newEvent.ps1' creates an event on the Exchange server. $psPath = "powershell.exe"; $psDIR = ...
1
vote
1answer
533 views

PHP exec/shell_exec/system not working through browser

I am running an SCO Unix box with apache version 1.3.33 and PHP version 4.4. I can properly execute the exec command through the cli, but run into trouble with trying to execute the script via a ...
1
vote
2answers
1k views

Shell_exec php with nohup

I think there are tons of similar posts but I haven't yet found a solution after searching around. Basically, I'm trying to run two scripts in the background. When I run them in the commandline, I ...
1
vote
3answers
702 views

PHP shell_exec running a shellscript with ssh

I have a shellscript with connects to a a different machine with ssh and a key so it does not need the username and password. When i run this script from commandline it works fine.. but when I run ...
1
vote
1answer
157 views

Starting screen from PHP to execute intensive Java application

I am wondering how to start a screen session from PHP, I have tried with shell_exec(), system() and passthru(), but no avail. I have gotten the screen session started for the execution time of the ...
1
vote
1answer
117 views

Problems executing Perl scripts from PHP

Trying to figure this out. I am trying to execute a perl script within php, using shell_exec() like so: <?php $output=shell_exec("./tst.pl > test.txt"); //$output=shell_exec("./tst.pl"); echo ...
1
vote
1answer
297 views

shell_exec with “svnadmin verify” returns nothing

I want to give output of svnadmin verify command from shell_exec() var_dump(shell_exec('/usr/bin/svnadmin verify /Users/osman/Desktop/SVN/name')); But it returns 'null'. How can i access the ...
1
vote
3answers
735 views

Excuting Java JAR from PHP will not work

I have a java program that generates an HTML file. The Java program takes two input parameters: file1 and file2, the output file is specified by the "--file=". When executed from the command line ...
1
vote
1answer
499 views

shell_exec() and exec() Doesn't Show The Output

shell_exec(): I'm doing a PHP site that uses a shell_exec() function like this: $file = "upload/" . $_FILES["file"]["name"]; $output = shell_exec("leaf $file"); echo ...
1
vote
6answers
1k views

How to get shell_exec to run on IIS 6.0

The Problem I have a PHP script that uses shell_exec to run a pdf-to-text converter. To simplify the problem I've created a short script that uses shell_exec to just echo the output of the dir ...
1
vote
3answers
85 views

Securing a string before exec()ing it

I have a PHP app which takes a user-inputted $imageurl and does the following: exec('convert "'.$url.'" -thumbnail 80x500 "images/out.jpg"'); Now obviously I have to take some precautions with this ...
1
vote
4answers
905 views

Zipping files through shell_exec in PHP: problem with paths

I'm working on a web backup service part of which allows the user to download a zip file containing the files they have selected from a list of what they have backed up. The zipping process is done ...
1
vote
1answer
2k views

Exec() in PHP on Windows without opening up cmd.exe Security weakness?

I have the requirement for a web script to execute an exe file and then return the results on the exe to the web request. I can either echo back the result of the exe or modify the exe to save it's ...
1
vote
2answers
729 views

php shell_exec() through cygwin

I wrote a script that compiles LaTeX code through pdftex. The trouble is that pdftex only runs on linux. I am accomplishing this task with the use of shell_exec(). I don’t really have the ability to ...
1
vote
5answers
960 views

How do I to properly handle spaces in PHP Shell_exec?

I'm running on win2003 server, PHP 526, via the cmd-line. I have a cmdline string: $cmd = ' "d:\Prog Files\foo.exe" -p "d:\data path\datadir" '; Trying to do this in php code $out = `$cmd`; ...
0
votes
1answer
6 views

shell_exec freezing on calling ConvertHTMLtoImage

I have a bot running taking preview captures of sites linked on my site. I use a program called converthtmltoimage for that. The program grabbing the thumbs is running on a windows server. I use the ...
0
votes
0answers
37 views

PHP shell_exec() in ubuntu

I am using ubuntu with libreOffice. I have installed unoconv for convert a *.odp file to *.pdf. When i run the command unoconv -f pdf myfile.odp from terminal then it works very fine. I want to do the ...
0
votes
1answer
53 views

Unable to execute commands in Linux's 'screen' from a PHP script

Background: I'm running a Minecraft server for friends on a VPS, and I'm attempting to create a sort of "status webpage" for it, using PHP. This is the last thing I have tried to implement; I have a ...
0
votes
1answer
27 views

Running background program on Windows Server

We have a windows program that does the following automatically when run: When started, checks for new files in a directory to process. If a new file is found, scrapes specific web data based on ...
0
votes
2answers
37 views

Print out shell_exec as it runs

I have created a small php script locally that runs a java application in command line. This java application continuously runs and never finishes. As it runs, it outputs command line text. Here is ...
0
votes
1answer
86 views

PHP shell_exec, permission denied for executing -rwxrwxrwx shell script

I am currently over ssh on a remote CentOS 5.6 system which runs an Apache webserver. I need to use the poppler pdftohtml binary which, unfortunately, is not currently installed on that machine. So I ...
0
votes
1answer
48 views

Concurrency with shell_exec() in PHP

I have a web application which runs FontForge shell commands using shell_exec() in PHP. I'm worried about potential concurrency issues. Is there a way to make shell_exec() open a unique instance for ...

1 2