Chat Question

Chat Question

by Karrie V -
Number of replies: 2

Hi, I received the following error when I went to view a transcript.

Fatal error : Maximum execution time of 30 seconds exceeded in f:\easyphp1-7\www\moodle\mod\chat\report.php on line 83

Any ideas?

Thanks

Average of ratings: -
In reply to Karrie V

Re: Chat Question

by Samuel Cochran -
What's happening is the script's taking too long to load, so PHP is stopping it (some scripts can keep loading forever, so it has to draw the line somwhere).

You can change it from 30 seconds to something else, though. You just need access to PHP's configuration file 'php.ini'. It should be somewhere in your 'f:\easyphp1-7' directory from the looks of it.

The line you need is:
max_execution_time = 30     ; Maximum execution time of each script, in seconds
Change the '30' to, say, '60' and see what happens.

If you're still having problems it must be a bug with the chat module - I understand it's fairly new.