Skip to content

Instantly share code, notes, and snippets.

@legierski
Last active January 5, 2017 05:23
Show Gist options
  • Save legierski/5930845 to your computer and use it in GitHub Desktop.
Save legierski/5930845 to your computer and use it in GitHub Desktop.
CodeIgniter 2.1.3 (and older) overwriting time limit to 300s. Comment it out / delete entirely to let your server control time limit
<?
/*
* ------------------------------------------------------
* Set a liberal script execution time limit
* ------------------------------------------------------
*/
if (function_exists("set_time_limit") == TRUE AND @ini_get("safe_mode") == 0)
{
@set_time_limit(300);
}
@MiaChanTorres
Copy link

MiaChanTorres commented Jan 5, 2017

Is possible that I can Decrease the time limit if may max time limit(loading page) is 3mins.?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment