After 504 error, the problem is corrected only reboot. Server = vps. Here is the script followed by error:
<?php
$data = array('url','url','url'...'url');
foreach($data AS $v) {
shell_exec('wget -O /dev/null '.$v);
}
'url' about a hundred, all of them successfully performed, URL is service on the same VPS only on a different port (handled by the script into perl, nginx is not involved). On the server, nginx, followed by apache2.
If the call does not foreach, but just once a team is all about. I tried to add 0.2 seconds usleep between calls to no avail. At first it was just a file_get_contents, then transcribed by fsockopen, then on wget.
Help out where to look. Logs look, there's nothing
You can try by creating a shell script (bash?) that does the job and make PHP only fill in a txt file that will serve as source for the script to be run, so you can call the shell_exec() from PHP only once and achieve the same result...