How to set up an open chat?

How to set up an open chat?

by phys SciEd -
Number of replies: 1
Can someone tell me how to set up an open chat to all guests like the one being used here(Open Chat Lounge)?
I have looked in the doc, forums, ..etc.. but did not find any answer.
Thank you.
Average of ratings: -
In reply to phys SciEd

Re: How to set up an open chat?

by Nicholas Exner -
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) {