Tagged Questions

0
votes
2answers
118 views

Using exec() in PHP: Passing arguments

For testing purposes, let's say input.PHP looks like this <?php { $TO = "joe@net.net"; $FROM = "bob@net.net"; $SUB = "Yadda"; $BODY = "This is a test"; exec("/usr/bin/php ...
0
votes
2answers
186 views

exec() not working with firefox

I've been using a combination of fork() and exec() to execute some external command on linux, however, the code seems to fail whenever I try to execute /usr/bin/firefox which is a symbolic link to a ...
0
votes
4answers
1k views

Convert std::vector<char*> to a c-style argument vector arv

I would like to prepare an old-school argument vector (argv) to use within the function int execve(const char *filename, char *const argv[],char *const envp[]); I tried it with the ...