Skip to content

Instantly share code, notes, and snippets.

@ihsanberahim
Created October 27, 2014 05:39
Show Gist options
  • Save ihsanberahim/77f10f61a5e9584b48a3 to your computer and use it in GitHub Desktop.
Save ihsanberahim/77f10f61a5e9584b48a3 to your computer and use it in GitHub Desktop.
My Favourite Local Developement Setting
<?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