fatal error when accessing grades

fatal error when accessing grades

by Billy Zwiener -
Number of replies: 1

When accessing the page that shows students grades I am getting a memory error of some sort. Can someone address what I need to change to allow the page to load correctly? The fatal error reads:

Fatal error: Allowed memory size of 94371840 bytes exhausted (tried to allocate 82 bytes) in/home/arellowinter/spruceschoolofrealestate.com/moodle/grade/report/grader/lib.php on line 508

 

This is line 508 of that page:

 $this->grades[$userid][$itemid] = new grade_grade();

I have no idea what that is significant of...

Moodle version 2.4.1

Average of ratings: -
In reply to Billy Zwiener

Re: fatal error when accessing grades

by Adi Michan -

Hi Billy

Try to increase php memory limit in your php.ini file:

memory_limit = 128M ;

Good luck,

Adi