Hi guys, I am having some serious issues with loading data from a site's mysql database. Users can view reports on the web, and some receive the following error when trying to load a report. Fatal error: Maximum execution time of 30 seconds exceeded The accounts receiving this error probably have more data attached to their account than the others, so is there a way to either speed up load times when retrieving data or increase the maximum load time? Thanks in advance for your help. Any suggestions are appreciated.
you can increase maximum execution time from your php.ini file or with the following php code ini_set("max_execution_time", 60); // Sets Maximum Execution Time to 60 Seconds PHP: