Thales

The UnrealIRCd team does not officially provide support for any services packages that you may be using or want to use. This forum is provided so the community can help each other with services issues.

Moderator: Supporters

Locked
GSF
Posts: 2
Joined: Sat Mar 05, 2005 1:56 pm

Thales

Post 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)
codemastr
Former UnrealIRCd head coder
Posts: 811
Joined: Sat Mar 06, 2004 8:47 pm
Location: United States
Contact:

Post by codemastr »

Are you sure you compiled Thales for Unreal support?
-- codemastr
GSF
Posts: 2
Joined: Sat Mar 05, 2005 1:56 pm

...

Post 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
Capitaine
Posts: 27
Joined: Mon Apr 26, 2004 6:09 pm

Post 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.
Locked