This tag refers to the starting of another, subsidiary program. It is named after the family of POSIX system calls whose name starts with “exec” (notably “execve”) though similar concepts exist on other platforms as well, especially when combined with the starting up of another process.

learn more… | top users | synonyms

2
votes
0answers
105 views

wkhtmltopdf windows error

I'm having problems with wkhtmltopdf under windows. safe_mode is off and folder's permission are ok. here an example: exec('wkhtmltopdf.exe --margin-left 0mm --margin-right 0mm --margin-top 0mm ...
2
votes
0answers
140 views

Rewriting Git history using filter-branch to remove multiple instances of a directory

Structure of Git repo foo in master branch foo/refs/a.txt foo/bar/refs/b.txt In other branches refs/ might be in lots of other places Goal: To remove all instances of the directory refs (and their ...
2
votes
0answers
119 views

exec doesn't work on window server 2008 php

i have a command below, if I run it through php file http://localhost/myfile.php it will output the cmd but input_file.txt is not generated. $cmd = "ffmpeg.exe -i ...
2
votes
0answers
221 views

Browser Hangs Executing PHP that runs a Powershell

I am trying to run a simple PHP that runs a powershell script, if I use this code I get the results in a command window, but I get an empty array in the browser: <?php exec("powershell ...
2
votes
0answers
73 views

How should you open an external editor and monitor for changes to the file/application?

Some applications (especially file transfer apps) allow you to spawn an external text editor in order to edit a remote file. They do this by downloading the file to a temporary directory, opening the ...
1
vote
0answers
60 views

how to run external program in php

I need regular reload named zones from external clients. But all "remote execution" functions are disabled (system, exec, shell_exec etc.) I have script like this (with basic http auth): $ip = ...
1
vote
0answers
23 views

Finding Win CMD columns (gives result+error)

I have problem with following script: $ exec('mode con /status', $tmp); print_r($tmp); It runs the command and gives me result, but also I get every time error message too: The system cannot find ...
1
vote
0answers
26 views

SCTP does not work in PHP File but in Console

I want to copy a file from one server to another. I do it with a an rsa authentification file. My code is: excec("scp -C -o StrictHostKeyChecking=no -P 22 -i /data/www/htdocs/project/tmp/keydata -r ...
1
vote
0answers
45 views

PHP exec tracert progressive display

Trying to display my results progressively, as it would be displayed in CMD. (ie: line by line) Not even sure where to start? <?php $ip = "8.8.8.8"; exec("tracert -d ".$ip." && ...
1
vote
0answers
84 views

PHP exec() cannot run GhostScript

I'm trying to use a library that requires to exec() GhostScript, but it fails to do so on my MAMP server. I've written this small piece of code to run tests: <?php $cmd = "..."; $output = ...
1
vote
0answers
59 views

Check PHP exec / system is finish and call a function

system("convert -colorspace RGB -density 134.5 -quality 100 ".$result_path.DIRECTORY_SEPARATOR.$pdf." -channel rgba -alpha on ...
1
vote
0answers
174 views

Execute Grails custom script in _Events.groovy with Ant exec during build process

Grails app version: 2.0.4. I have a Grails custom script called MyScript.groovy in the scripts folder, pretty much like this: includeTargets << grailsScript("_GrailsInit") target(main: "Run ...
1
vote
0answers
42 views

Running an exe from an ant build script problems

I'm trying to run an executable from an ant build script and having no joy. The executable runs but hangs. Basically this program takes a file in and converts it to another format and splits it into ...
1
vote
0answers
98 views

ant : macro for exec that echoes command it executes, including arguments

Currently I do this: <echo message="cd ${build.dir}/scripts ; ./update.sh ${arg1} ${arg2} ${arg3} ${arg4} ${arg5} ${arg6} ; cd -" /> <exec dir="${build.dir}/scripts" ...
1
vote
0answers
98 views

Java exec() works in IDE but not from .jar

I use the following code to run a batch file and it runs perfectly from the IDE (Netbeans if it matters). I set the working directory (in the run tab of the project properties) to the same directory ...
1
vote
0answers
154 views

Why does ffmpeg.exe not always terminate?

I have a script in php that shells out to ffmpeg using exec() - it creates an mp4 out of an image and an mp3. This is the command I am executing: "C:\\Program Files\\ffmpeg\\bin\\ffmpeg.exe" -loop 1 ...
1
vote
0answers
135 views

How to terminate <exec> task in ANT after starting server in Windows

I'm trying to start a weblogic server using ant exec command. After the operation triggers the exec process creates a child process i.e starts weblogic server. I wish to terminate the parent ant ...
1
vote
0answers
110 views

Using PHP to execute multiple system commands

I'm working with SageMath and I am trying to use it in php with exec() or system(). They dont except multiple commands is what I understood from other questions on this but how would I be able to ...
1
vote
0answers
158 views

how to call java class from mysql procedure via the sys_exec?

I want to execute the java code via he sys_exec in MySQL. I configured the sys_exec via the CREATE FUNCTION sys_exec RETURNS STRING SONAME 'lib_mysqludf_sys.dll'; When I run command SELECT sys_exec(" ...
1
vote
0answers
154 views

PHP script to execute exec

I am writing a PHP script to upload a file that execute other c files by using system calls fork(), and exec(), and execl(). Unfortunately execl() function did not work. In more details, the PHP ...
1
vote
0answers
360 views

Executing Java Jar file from PHP

Do not slaugther me as there are multiple threads on this topic which I of course have found when searching for an answer. Nevertheless, my problem seems to be different as I do not get any response ...
1
vote
0answers
81 views

Get list of process filtered by WINDOWTITLE

I want to get the list of process of firefox which have a particular WINDOWTITLE. I've succeeded to list them by using cron and batch file. Now I want to do the same thing but dynamically. So I did ...
1
vote
0answers
54 views

change the buttonText of addin button through Exec function

I saw several times in the MSDN this sentence: "Add-ins can later change the ButtonText name by responding to the QueryStatus method". but never saw how to do it. someone can help me? I want to ...
1
vote
0answers
192 views

How to execute .htaccess in a php-file to get the real (rewritten) URL?

I have a project, which rewrite urls via .htaccess. I want to load the title and a content-div of all pages asynchronously via javascript/ jquery and want to avoid two responses (one for the title and ...
1
vote
0answers
83 views

I'm having trouble trying to run the HandBrakeCLI with php for some reason

This simple script: <?php $cmd='./HandBrakeCLI -i ./a.flv -o ./ab.mkv'; echo exec($cmd.'&'); ?> outputs: Encoding: task 1 of 1, 0.46 % Or a similarly low percentage and ...
1
vote
0answers
264 views

exec or ajax? PHP background script

I have a script which i need to run as soon as a user logs in to my system.. So, they log in, all checks done, I want to fire a background script to process some other stuff while starting their ...
1
vote
0answers
150 views

PHP executing script in subfolder

I've run into a slight issue with the way my site works. I have a python script which I want to run from the index.php page. Now if this script is in the root directory, by using this command I can ...
1
vote
0answers
412 views

Executing shell script on wamp

My pc at work run windows 7, but I need to emulate a unix server to run a working shell script on php exec() command. I installed cygwin but I have no idea how can I make the php execute cigwin for ...
1
vote
0answers
189 views

PHP proc_open not working correctly with John the Ripper

I am trying to run John the Ripper from a PHP script. I want to run it and then monitor its output, reacting accordingly. However, things don't work as expected and the results I get are (to my ...
1
vote
0answers
115 views

imagemagick not responding

After installing of imageMagick on a Debian Machine (debian_version 6.0.2) Running this command: /usr/bin/convert -scale "90x>" -quality 80 -strip "/right/path/source.jpg" ...
1
vote
0answers
501 views

Insert Event in Qt's event loop without using QTimers

I am looking for a way to insert a call to my function or a slot with every looping of the Qt's event loop. I know there exists a solution using QTimers which is prescribed by Qt but they also say it ...
1
vote
0answers
470 views

php exec with special chars

in my script I'm running the find command via PHPs exec function. setlocale(LC_CTYPE, "de_CH.UTF-8"); $searchString = escapeshellarg("*$searchString*"); $searchDirectory = ...
1
vote
0answers
502 views

Running program from php with exec or shell_exec

I want tu run the following command from PHP (script.php): $output = shell_exec("svn checkout https://IP_REPOSITORY/svn/project/ /home/MY_DOMAIN/domains/MY_DOMAIN.com/public_html/"); Nothing is ...
0
votes
0answers
16 views

Calling Valgrind programatically (execing) produces no profiling data

My app has a process A which fork/execs another process B, and the child B then loads a shared library. I want to run Valgrind only on the child process B. Process A also ptrace's process B. I tried ...
0
votes
0answers
41 views

XAMPP: PHP exec() not working properly

I am trying to execute a self-written program from PHP using the exec() command using this script: <?php exec('./test Hello World!', $output); var_dump($output); ?> Whereas running this ...
0
votes
0answers
28 views

php shell_exec fails when return non-ascii string

using command $ret = shell_exec($command); results in $ret being null when $command returns string containing non-ascii characters (papír), but it works when $command returns string without ...
0
votes
0answers
29 views

How to execute ftp “put allo SIZE_IN_BYTES” command

How do I execute ftp "quote allo SIZE_IN_BYTES" command in python script? For eg: In the FTP of processor connected I have a command as below ftp>quote allo 24567 (which reserves 24567 bytes ...
0
votes
0answers
23 views

IronPython: Catch OverflowError/StackOverflowException

I let the user write a python file and I execute it with exec. But when the user has a OverflowError than the hole program will crash. How can I prevent this? This does NOT work: try: f(*args) ...
0
votes
0answers
40 views

Python exec statement binary code

I'm loading the contents of a .pyc file and need to execute it in a specific scope using the exec statement. For a string containing normal Python code, I could do exec compile(string, filename, ...
0
votes
0answers
38 views

Java exec Error: Fatal system Error 1020005

I have a problem with a Java program. I uses a tool "ugpc" to get the assembly structure and write it in a textfile. When i start the program under netbeans it writes these files without problem. but ...
0
votes
0answers
19 views

Apache mod_security - exec command limitations

I am seeking few hours solution if is possible on Apache 2.2 with mod_security or something else allow exec() command in PHP only with some limitation commands or run only from specific folder on ...
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
0answers
33 views

How to fork and exec new process running as other users in linux?

I have a daemon running as root and it has to fork/exec new process to do work. But new process must not running as root. So how can I fork new process running as other users?
0
votes
0answers
30 views

execute a script php in script php with exec

I try to execute a script ou execute another script This is my code but i have the error : Could not open input file: msgAbsReadSM.php SCRIPT 1 (the connection work perfectly) $action = 'ssh ...
0
votes
0answers
21 views

Can't get commands working on Linux server through exec()

I want to run a simple minification PHP script which calls closure compiler through exec() but it is not working. The exact command [java -jar compiler.jar --js /var/www/..../multi-date-picker.js ...
0
votes
0answers
62 views

Execute git commands with node.js synchronously

I'm currently writing a node.js module. I'm using var exec = require('child_process').exec; from the node.js api. But I have to execute 2 git commands with exec successively. I always get the ...
0
votes
0answers
53 views

exec() does not return to PHP process

I am running FFMPEG from PHP with the EXEC command. I am working on a XAMP stack. $command = 'ffmpeg -y -i input output 2>logfile'; exec ($command); // after FFMPEG handling... As you can see, I ...
0
votes
0answers
116 views

How to receive a sms from a GSM Modem using PHP?

I want to know is it possible to notify an incoming message for the sim which is in a GSM modem ? 1. Connect to the gsm modem which is having a usb connectivity. 2. Once connected when ever a new ...
0
votes
0answers
49 views

Save the output of execl command in c to the same file

#include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #define MAXLINE 512 main(int argc,char* ...
0
votes
0answers
42 views

open a specific file in a specific browser

I would think I would use a BAT file to do this but I am open to suggestions of any kind. The end result: I want an Icon on my desktop to click open to launch an EXE file that requires Internet ...

1 2 3 4 5 8