Hi,
I have the Parachat module functioning correctly, and when I enter the member chat as user1, there are no problems at all. But when I try to enter as any other user, I get an authentication error (Error U825.). The permissions seem to be set correctly.
Thank you,
Elizabeth
Comments
Comment #1
gonzalez_ea commentedAs it turns out, there was an error in the authentication routine. When I modify line 66 of the function parachat_auth_page()
from
$uid = substr($input, 0, 1);to
$uid = substr($input, 0, strpos($input, '-'));I no longer get an authentication error.
It's a good thing I tested the chat room with my user 58 before I went live!
Comment #2
mmilano commentedComment #3
mmilano commented