We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 28407
    • 20 Posts
    Hello, i want to integrate PHPFreeChat into my website, but i can’t understand how to set  Username from Weblogin snippet as nickname in PHPFreeChat. It is important to be that users can chat with their Username and that they can’t change nickname at chat.
    Thanks.  smiley
      • 4041
      • 788 Posts
      Once a web user is logged into your site through modx, you can access the logged user with $_SESSION settings.

      $_SESSION[’webShortname’] would give you the username.
        xforum
        http://frsbuilders.net (under construction) forum for evolution
        • 28407
        • 20 Posts
        thanks, it’s really works  wink
        i’ve just entered
        $params["nick"] = iconv("ISO-8859-1", "UTF-8", $_SESSION['webShortname']);

        at PHPFreeChat snippet code