This file contains hidden or 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 | |
// When i have to upload multiple files in a shared hosting: | |
// 1. Compress your project and upload to your shared server | |
// 2. Visit url via shell (ex: "curl http://domain.com/unzip.php &") or any navigator | |
// Alternative step 2 (sometimes php throw timeout error): | |
// 1. Create a cronjob that visit unzip.php file (just one time) | |
error_reporting(E_ALL ^ E_STRICT); |