Whenever I want to update my project to web host, I have to set suspend state via control panel or I have to set in code manually as follow.
<?
$SUSPEND=true; //setting manually before ftp upload
if($SUSPEND)
redirect("busy.php");
?>
Is there any rapid and efficient way to set to suspend mode during ftp update. Thanks alot.