Simple PHP IRC web client using Ajax calls.

config.php 578B

12345678910111213141516171819
  1. <?php
  2. ///////
  3. // webirc-client - 2013-2020
  4. // (C) Chris Dorman, GPL v3 - (C) Microchat devs
  5. // https://github.com/Pentium44/cwchat
  6. ///////
  7. $title = "CWChat"; // Chat title
  8. $desc = "Chris' Website IRC Chat"; // Chat description
  9. $server = "127.0.0.1"; // IRC server connected to (for information display panel)
  10. $port = "1337"; // IRC server port (for information display panel)
  11. $server_msgcount = "80"; // Number of messages to leave at the end of the server database
  12. $channels = array("#theroot"); // IRC channel
  13. ///// NO TOUCHY /////
  14. $version = "1.2.0"; // CWChat version
  15. ?>