Page 1 of 1

Thales

Posted: Sat Mar 05, 2005 2:09 pm
by GSF
Hello there.. i got the latest cvs for thales and i compiled it, it all seems to work fine but about every 7 houres or so the gateway crashes..

-***.myserver.***- *** Global -- from ***.thalesservices.***: FATAL ERROR! deleted nick1 but still present ! (IRC context : :nick1 QUIT :Quit: )

[15:07] -***.myserver.***- *** LocOps -- Server ***.thalesservices.***[***.***.***.***] closed the connection

.. there seems to be a line in ChangesLog in the cvs version that says
- added support for Unreal and Bahamut's NOQUIT
.. maybe there's a problem there.. i'd appreciate any help.. :)

(I'm also using the latest Unrealircd cvs)

Posted: Sat Mar 05, 2005 4:45 pm
by codemastr
Are you sure you compiled Thales for Unreal support?

...

Posted: Sat Mar 05, 2005 4:46 pm
by GSF
-***.myserver.***- *** Global -- from ***.thalesstats.***: FATAL ERROR! hashlist element #chan1 not found ! (IRC context : :ChanServ TOPIC #chan1 nick1 1110041046 :topic_here

yeah i pressed 1 when it asked.. it seems really strange.. maybe i havent configured mysql right..? but its random.. every 2-3 houres

Posted: Wed Jun 01, 2005 3:44 pm
by Capitaine
Did you enable language support on Unreal ?

This might be due to accent-insentive queries in MySQL
My Thales deamon used to crash everytime duplicated nicks were used.

For example :
"Bébé" and "Bebe" are the same nick for Thalès, but not the same for Unreal...

Maybe changing "unreal.sql" declaration and recreate table can help :

Code: Select all

CREATE TABLE user (
  nickid int unsigned NOT NULL auto_increment,
  nick varchar(31) NOT NULL default '',
  ...
replace by

Code: Select all

CREATE TABLE user (
  nickid int unsigned NOT NULL auto_increment,
  nick char(31) ASCII NOT NULL default '',
  ...
But I can't test it yet since it requires MySQL >=4.1.0.