Note: You are currently viewing documentation for Moodle 1.9. Up-to-date documentation for the latest stable version is available here: Chat settings.

Chat settings: Difference between revisions

From MoodleDocs
(location, brief description)
(copied from a post by Martin)
Line 1: Line 1:
Location: Chat settings link in ''Administration > Modules > Activities''
Location: Chat settings link in ''Administration > Modules > Activities''


A daemon is a program that runs all the time in the background. In this case it's a PHP script, listening to a particular port on your server, accepting and giving out chat information.


If you intend to use the chat activity a lot, then you should consider using a chat
If you intend to use the chat activity a lot, then you should consider using a chat
server daemon to reduce server load.
server daemon to reduce server load.
Setup:
1) Admin -> Config -> Modules -> Chat -> Settings
2) Set the method to "sockets" and set up the ports etc
3) Start the server like this (from the Unix command line):
  cd moodle/mod/chat
  php chatd.php --start &
4) Go to a chat room in Moodle and open it as normal.
==See also==
Forum discussion http://moodle.org/mod/forum/discuss.php?d=23198


[[Category:Administrator]]
[[Category:Administrator]]

Revision as of 21:47, 4 November 2007

Location: Chat settings link in Administration > Modules > Activities


A daemon is a program that runs all the time in the background. In this case it's a PHP script, listening to a particular port on your server, accepting and giving out chat information.

If you intend to use the chat activity a lot, then you should consider using a chat server daemon to reduce server load.

Setup:

1) Admin -> Config -> Modules -> Chat -> Settings

2) Set the method to "sockets" and set up the ports etc

3) Start the server like this (from the Unix command line):

  cd moodle/mod/chat
  php chatd.php --start &

4) Go to a chat room in Moodle and open it as normal.

See also

Forum discussion http://moodle.org/mod/forum/discuss.php?d=23198