Created
October 19, 2016 14:13
-
-
Save tacone/c49177d39d294389ca8ccd872af2e870 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
|-------------------------------------------------------------------------- | |
| Check for maintenance | |
|-------------------------------------------------------------------------- | |
| | |
| Se l'applicazione è standby proviamo ad aspettare che torni su. In questo | |
| modo l'utente non riceve messaggi di errore durante il deploy, non perde | |
| i dati inviati nel form, etc. | |
*/ | |
$max = 120; | |
$seconds = 1; | |
$n = 1; | |
set_time_limit( (int)ini_get('max_execution_time') + ($seconds * $max)); | |
while(file_exists(__DIR__.'/../storage/framework/down') && $n <= $max ) { | |
sleep($seconds); | |
$n++; | |
clearstatcache(true); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment