I have a problem.
As I use this modification, I can't acess some pages with the configurations, but they are not also in the Configurations Page in the ACP.
My app returns an error when users with a "!", "." or something in the nickname enter. The error says the nickname is erroneous because it has illegal carachters. After a conversation with my IRC provider, we found the solution:
Quote:
What you need to do is strip . and !'s from the nick, IRC cannot support usernames with .'s because thats used in server names, and it cant allow !, because thats used as the seperator between the nick and the host.
If using PHP, you can try the following code on the nick before it is passed to PJIRC.
This code assumes the users nick is stored in the variable "$nick", and replaces .! with underscores:
Code:
$nick = str_replace(array('!','.'), '_', $nick);
|
Could you help? Where am I supposed to insert this?
Thanks and congratulations for the excelent mod!