How to set up an open chat?

Re: How to set up an open chat?

by Nicholas Exner -
Number of replies: 0
Hi there.  We were able to allow guests to connect and use the chat within our Moodle through the following changes.  These changes may or may not be specific to your release version.

Edit file: moodle/mod/chat/gui_header_js/insert.php
 // Around line 23: Find and comment out the following
 // if (isguest()) {
 //     error('Guest does not have access to chat rooms');
 // }

Edit file: moodle/mod/chat/gui_header_js/index.php
 // Around line 23: Find and comment out the following
 // if (isguest()) {
 //     error('Guest does not have access to chat rooms');
 // }

Edit file: moodle/mod/chat/view.php
 // Around line 106: Find and comment out the following line
 //    if (!isguest()) {
 // And add the line below just after the above line
    if (true) {