Opened 6 years ago

Closed 6 years ago

#1484269 closed Feature Requests (fixed)

@set_time_limit(120) in index.php

Reported by: seansan Owned by:
Priority: 5 Milestone: 0.1-rc1
Component: Client Scripts Version: 0.1-rc1
Severity: minor Keywords: safe_mode
Cc: sean115@…

Description

Adding the following check before "@set_time_limit(120);" in index.php does not crash the program when run (and voids having people edit index.php)

// increase maximum execution time for php scripts
// (does not work in safe mode)
if (!ini_get('safe_mode'))
	@set_time_limit(120);

Change History (2)

comment:1 Changed 6 years ago by seansan

  • Type changed from Bugs to Feature Requests

comment:2 Changed 6 years ago by tomekp

  • Resolution set to fixed
  • Status changed from new to closed
Note: See TracTickets for help on using tickets.