Jump to content

exec() a php file


cesarcesar

Recommended Posts

I'm trying to call a PHP page to run when called from another page. To do this it seems i have to use the exec() function. The code would go something like

// set pathing
$file = 'TEXT_small.m4v';
$localfile = '/user/dac420/incoming/'.$file;
$remotefolder = '/user/dac420/outgoing/';

// exec the file and pass vars. transfer.php for this example just echo's Hi to the motherboard.
exec('php transfer.php '.$localfile.' '.$remotefolder.' > '.$file.' &', $output, $result);
print_r($output);
print_r($result);

Running this code and few variations of it give me either empty $result and $output vars or this

    [0] => Status: 404
    [1] => Content-type: text/html
    [2] => X-Powered-By: PHP/4.3.9
    [3] => 
    [4] => No input file specified.

 

I have Googled "php exec" (and others) but I have come up with few reference. If someone can shed some light on this function or tell me where im wrong in my code i would appreciate it. Thanks.

Link to comment
https://forums.phpfreaks.com/topic/149805-exec-a-php-file/
Share on other sites

Include/Require will not work. I should have explained better. The page im calling via exec() is transferring 1G file between two servers. If this file is include()'d, the page will hang white until the transfer is complete. Therefor i need to create a separate php process to run in the background. This way once the transfer is started, the user can continue with their browsing without waiting.

 

The way to do this is with exec(). I just need to know how i went wrong. I think its pathing. Fu*^ing pathing every time! But maybe someone can help. Thanks.

Link to comment
https://forums.phpfreaks.com/topic/149805-exec-a-php-file/#findComment-787582
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.