0
votes
1answer
25 views

How to make a system call remotely?

I have an app that has to mount a disk on a server. The disk and the server all connected, it just has to use the linux 'mount' command. I wrote a php that is simply: <? exec(sudo mount ...
1
vote
2answers
28 views

How to use pipe (“ | ”) in PHP exec?

I can use CMD to execute two command in the same time using: command1 | command2 In PHP, I assumed it should work but it doesn't: Shell_exec("command1 | command2 "); How to fix it? Thanks
0
votes
1answer
23 views

Symfony2 - Accessing user-defined functions from a Command

As a console command only allows for the config() and execute() functions to be declared, how can I declare user-defined functions and call them?
0
votes
1answer
24 views

PHP, Running script in windows Command line not working

When I run my script like this: c:\path\to\php.exe -f "c:\script.php" It "echos" the code in the dos window but does not execute it. Any ideas why? All I have in script.php is : <?PHP //code ...
0
votes
1answer
130 views

CakePHP, Shell, PHP

I have an app in which I have a few cron jobs (these are outside cake), what I would like to do is the save cache using (Cakephp Cache Helper) by triggering through cakephp shell and create pdfs after ...
0
votes
1answer
27 views

Cron file working fine in browser but not in command

I have configured cron job in hostgator. It runs from web browser just fine and everything works. (https://www.site.com/cron.php) But the scheduled cron job in hostgator does not work with any of ...
0
votes
0answers
37 views

How to print file from web

i have a question about how to print a generated file from a web server to local printer. The script will be based on exec(); php. The printer is not an open_printer, and use an own soft to send the ...
0
votes
2answers
32 views

return specific line of command unix php

I want to retrieve more than one line of a text file, and processing lines. Example : $user = system('getent passwd') ."\n"; result exmple : tcpdump:x:72:72::/:/sbin/nologin ...
-6
votes
1answer
47 views

mysql UPDATE command error [closed]

I don't know what I am doing wrong. Could anyone help me please. function updateSerie($id, $serie, $description, $seasons, $genre, $avatar) { include("connect.php"); $sql = "UPDATE Series SET ...
1
vote
2answers
49 views

php system function gives unusual output

my php code $last_line = system('service airtime-media-monitor status'); echo $last_line; my browser displays AIRTIME_STATUS_URL = ...
-1
votes
1answer
63 views

connect web page to command line server

I have a php code running as a server using command line. I use telnet client to connect to the server without problem. But I do not want the client to be telnet, I want it to be a web page so that ...
0
votes
0answers
107 views

PHP shell exec ssh [closed]

In my old server (debian), I can run ssh like this in php: try { $db = new PDO("mysql:host=$host;port=$portOMS;dbname=$dbnameOMS", $sqlUserOMS, $sqlPassOMS); } catch (Exception $e) { ...
0
votes
1answer
26 views

launch a folder in windows explorer with php

hi there i am trying to launch a folder in windows explorer but is dosent seem to work the code i am trying is $contain_path = 'E:\Something\Some Folder'; $folder = '9999 - Some Folder Name Here'; ...
1
vote
0answers
59 views

php form will not submit when button is clicked because of commands out of sync

The following code will not submit the form to the page, even though it is supposed to. My form tags are declared in a page that is 2 layers up in the folder hierarchy and i made it so that it is able ...
0
votes
0answers
145 views

Run a php script using “Create Cron Job” in linux cpanel

I want to run a php script (php file) on my server every day at a specific time. In my cpanel (goDaddy) there is a feature that I can create a Cron Job wizardly. I can define Frequency (e.g Daily, ...
0
votes
0answers
103 views

Issue running unoconv from php script with shell_exec

I am unable to use unoconv to convert a .doc to PDF from php using exec. Here is what I am trying: $output = exec("unoconv /opt/bitnami/apache2/htdocs/=".$fileData['name']); ...
0
votes
0answers
21 views

Exec function make a call to a large number of processes

So, here is my simple code: <?php for ($i = 0; $i < 2; $i++) { exec('php -q file.php ' . $i . ' > /dev/null &'); echo 'Pros launched... ' . $i . '<br />'; } ?> The ...
1
vote
1answer
48 views

symfony 2 command issue

I am trying to run a php script form the command line. sudo vim UpdateLatestIssuesCommand.php But its giving me the following error: PHP Fatal error: Class ...
0
votes
1answer
56 views

Symfony 1.4 : commands doesn't works and no message

I try to create in symfony 1.4 the tutorial "jobeet" and I arrive at a place where I am blocked. I have to set up the db, I made one with: mysqladmin -u root -p create jobeet It works, the db is ...
0
votes
2answers
101 views

Php version on windows command line [duplicate]

I just tried to know version of my PHP from windows command typing, C:\> php -v But it is not working. It says php is not recognized as internal or external command.
0
votes
1answer
41 views

Tar path issue in PHP

I am trying to create a TAR through exec in PHP, which will contain lots of folders. Each of the included folders represent a server path. Unfortunately my script to create this TAR is not working and ...
0
votes
0answers
53 views

Customize Capistrano Deploy - Don't need default folders (current, release, logs, etc)

I have a capistrano script that does the deployment. I am just using default deploy. This creates several folders shared, log, etc. and a symlink called current. Its working fine so far. Note that ...
0
votes
1answer
196 views

php system commands linux

I have set of linux system commands that requires to be logged into shell first. How can i do that in php ? For example: $output2 = shell_exec('ls -lrt /opt/test 2>&1'); Since /opt/test can ...
-1
votes
3answers
74 views

How to delay exec command in php

I know this kind of question has been asked many times, but I haven't found a suitable answer yet. Here it is: I have a site - apache/php/mysql on debian. I've managed to allow www-data to execute ...
0
votes
2answers
24 views

Need some kind of setting for calling linux commands in php

Here the content of my test-file called test.php <?php echo exec('ls -al'); ?> When I ftp this to my host and run it by calling /test.php it nicely shows the content of my directory. But when ...
0
votes
4answers
129 views

SQL Update Command updates all values in a column

So in my website I'm trying to make a page where people can edit which URL is in a certain mySQL table, here is my code before I go any further (for at least one part of it) ...
0
votes
1answer
171 views

merging multiple csv files using php

I want to create a command line php script which would merge/join multiple CSV files from a folder into one. Each CSV file has 2 columns delimited by comma (,) but multiple number of rows varies. ...
0
votes
1answer
170 views

Why doesn't PHP exec() command doesn't run?

I have a very simple PHP script to try to use the exec command. The code is <?php // outputs the username that owns the running php/httpd process // (on a system with the "whoami" executable in ...
0
votes
1answer
77 views

What's wrong with my remove cronjob php function?

I' trying to write a function that helps with deleting cron jobs , I've tried some classes from the net but it didn't work , so I'm writing it myself ,the problem that it's not removing command ...
1
vote
1answer
499 views

Best strategy for sending commands to Arduino: Send UDP packet OR get configuration from a dynamic web page?

I would like to send some configuration parameters to an Arduino Ethernet board, and I came up with two potential solutions. I would be grateful if you could give your thoughts on using either one of ...
0
votes
1answer
35 views

PHP Video conversion in background and call a php file

I tried many options, but stuck here. I have a video uploading feature on my site All uploaded videos go in a process of conversion and I am making the command to run in background. The command works ...
0
votes
2answers
306 views

PHP Script to run arp command on linux machine to detect mac address of computers in LAN

I need to run arp command or any other s/w on linux who can show output of all mac address of computer that are connected in local area network wired connection . This command need to run apache from ...
3
votes
3answers
184 views

PHP exec in background using & is not working

I am using this code on Ubuntu 13.04, $cmd = "sleep 20 &> /dev/null &"; exec($cmd, $output); Although it actually sits there for 20 seconds and waits :/ usually it works fine when using ...
1
vote
3answers
148 views

How to list all files with white spaces the after php tag

Is it possible with linux commands to List all files with white spaces the after php tag at the end of file?
-1
votes
1answer
235 views

PHP and Android - How to handle adb command to send data to Android Phone [closed]

I'm currently developing a web interface to "control" an android device through the adb connection over USB. I have wrote a web page in php and all the system commands I use work fine but the ones ...
0
votes
0answers
119 views

automatic download url to local folder

I have too many images links want to download to different local folders. i've used PHP to get link and save image to local, its fine, but running too slow. i wonder is there any way to save images ...
1
vote
2answers
117 views

How do I know when the task from command line is finished?

This is really important as I could not find anything I am looking for in Google. How do I know when the application (or is it more appropriate to call it a task?) executed by a command line is ...
0
votes
1answer
218 views

passing arguments from php to python using shell_exec from browser

I have a simple php script that passes a couple variables to and runs a python script with the shell_exec command. When I run this php script from the shell it works just fine. However, when I run the ...
3
votes
4answers
133 views

Custom Break Command/Function with create_function() in PHP

I'm wondering if it is possible in PHP to create a custom break command/function. For example, <?php $custombreak = create_function('$a', 'if ($a == 3) break 1;'); $i = 0; do { echo $i . ...
-2
votes
2answers
212 views

Another command to replace exit in php?

is there any any other command we can use as an alternative to exit(); in php. Because it breaks my html code at the end of the page if the condition is not met and when script has to exit. Or if ...
0
votes
3answers
287 views

Passing Argument via Command Line php

so i have this script that I'm trying to pass the argument via command line. But, can't get it to work. Here's the code for the script #!/usr/bin/php <?php $argv[1] = $scraper; ...
0
votes
2answers
246 views

shell_exec(); not working properly in PHP

I'm trying to execute a command thru shell_exec(); but it does nothing. I know shell_exec(); is enabled because these work perfectly: echo shell_exec('which php'); echo shell_exec('ls'); They do ...
1
vote
2answers
898 views

How to launch unoconv from php file

I want to launch the command "unoconv" from a script php. $command = '/usr/bin/unoconv --server localhost --port 2002 --format=pdf file.rtf >/dev/null 2>/dev/null'; $rc = system( $command ); ...
0
votes
3answers
90 views

PHP - execute Java programs -> evaluate returns

I just found out how to execute a java method over php. exec('execution line'); if "execution line" returns any object, is it possible to use it in php-script like a variable?
2
votes
3answers
340 views

Run Multiple PHP files using PHP Command Line or SSH

I have 137 php files i want to run them in one command (in parallel) not by sequence. But the problem is each file is taking 2-5 seconds. So i have tried to make a (.sh) file and put each line as : ...
0
votes
3answers
4k views

PHP multiple MYSQL commands in one mysql_query() query

I want to issue multiple mysql commands with one mysql_query function. This is my code: $query .= "INSERT INTO `users` VALUES(1,'stack','overflow');"; $query .= "INSERT INTO `posts` ...
0
votes
1answer
65 views

Execute long command in php without being blocked

I want to run a shell command in PHP but that command takes a while to be performed. So i want it to run in the background but I also want the user to be informed of what is going on. The shell ...
4
votes
2answers
476 views

Executing root commands from PHP…Is there a safe way?

I was thinking about to make a little web-based Linux control panel (just for fun). First potential problem that came to my mind is that i would need to give Apache's user root-level permissions to ...
2
votes
4answers
337 views

How do I translate this command line curl into php curl?

I've got a command line curl bit of code that I want to translate into php. I'm struggling. Here's the line of code $ curl -H "Authorization: 622cee5f8c99c81e87614e9efc63eddb" ...
2
votes
2answers
204 views

How to continue to command by PHP if error occurs in first command

I want to execute serveral commands by PHP, //DISPLAY setting $command1 = 'export DISPLAY=:1'; $last_line1 = system($command , $rtn); //use Xvfb $command2 = 'Xvfb :1 -screen 0 ...

1 2 3