-
-
Save zofe/6f87a530ffdf764f73e057efb0d6b667 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