Created
October 27, 2014 05:39
-
-
Save ihsanberahim/77f10f61a5e9584b48a3 to your computer and use it in GitHub Desktop.
My Favourite Local Developement Setting
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 | |
error_reporting(E_PARSE | E_ERROR | E_CORE_ERROR | E_COMPILE_ERROR); | |
ini_set('date.timezone','Asia/Kuala_Lumpur'); | |
ini_set('display_errors',1); | |
ini_set('display_startup_errors',1); | |
ini_set('error_log',__DIR__.'error.log'); | |
ini_set('track_errors',1); | |
ini_set('post_max_size','100M'); | |
ini_set('upload_max_filesize','100M'); | |
set_time_limit(0); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment