pkrtech Posted August 25, 2006 Share Posted August 25, 2006 Currently the project I am working I launch the normal website, however at certain times I need to launch a process that takes a little long so instead of slowing down the main page I launch a pop-under to run the script and then close itself.The problem is alot of people pop blocker block it and then the process does not get ran.Does anyone have any ideas besides running a cron job where I can run this script without slowing down the main page? or a safe way to launch a popunder thats not blocked ?SOLUTION: <? exec( 'wget http://www.example.com/file.php > /dev/null &' ); ?> Link to comment https://forums.phpfreaks.com/topic/18602-solved-run-php-process-in-background/ Share on other sites More sharing options...
.josh Posted August 25, 2006 Share Posted August 25, 2006 suppose you could try some ajax... Link to comment https://forums.phpfreaks.com/topic/18602-solved-run-php-process-in-background/#findComment-80132 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.