Quiz maximum size?

Re: Increasing session time (Re: Quiz maximum size?)

by Jay Melton -
Number of replies: 0
Hello all:

I just put:

/// Set custom session path
    if (!file_exists("$CFG->dataroot/sessions")) {
        make_upload_directory('sessions');
    }
    ini_set('session.save_path', "$CFG->dataroot/sessions");

AFTER

/// Set session timeouts
    if (!empty($CFG->sessiontimeout)) {
        ini_set('session.gc_maxlifetime', $CFG->sessiontimeout);
    }

and reloaded my moodle page.  I got no page at all with this, i.e., emptiness.  Did I put it in the wrong place?

Jay