Page 1 of 1

New Issues

Posted: Tue Feb 17, 2009 7:50 pm
by Efrain
Loading IRCd configuration ..
[warning] unrealircd.conf:255: listen with SSL flag enabled on a non SSL compile
[warning] unrealircd.conf:322: link hub.area-51.dontexist.com with SSL option enabled on a non-SSL compile
[warning] unrealircd.conf:322: link hub.area-51.dontexist.com with ZIP option enabled on a non-ZIP compile
[error] unrealircd.conf:538: tld::motd: ircd.motd.fr: No such file or directory
[error] unrealircd.conf:539: tld::rules: ircd.rules.fr: No such file or directory
[error] 4 errors encountered
[error] IRCd configuration failed to pass testing
Possible error encountered (IRCd seemingly not started)

Re: New Issues

Posted: Tue Feb 17, 2009 8:02 pm
by digi198816
1) You are trying to listen/link servers with ssl; feature when your IRCD compiled non-ssl. What u can do is take out the ssl; from config or recompile Unreal with SSL support.
2) Take out the zip; in link block or reocmpile your unreal with zip support.
3) Create ircd.motd.fr in Unreal3.2/ directory.
4) Create ircd.rules.fr in Unreal3.2/ directory.

Re: New Issues

Posted: Wed Feb 18, 2009 2:00 am
by Efrain
* Loading IRCd configuration ..
[warning] unrealircd.conf:255: listen with SSL flag enabled on a non SSL compile
[error] ERROR: No cloaking module loaded. (hint: you probably want to load cloak.so)
[error] If you are upgrading from 3.2 (or any older version), be sure to read the release notes or www.vulnscan.org/tmp/newcloak.txt regarding the cloaking change!
[error] IRCd configuration failed to pass testing
Possible error encountered (IRCd seemingly not started)

[warning] unrealircd.conf:255: listen with SSL flag enabled on a non SSL compile <--- still a bit confused with this?
[error] ERROR: No cloaking module loaded. (hint: you probably want to load cloak.so) <------ try typing these commands in the terminal loadmodule "src/modules/commands.so" & loadmodule "src/modules/cloak.so" which ain't working?

Re: New Issues

Posted: Wed Feb 18, 2009 2:14 am
by digi198816
You really need to read the docs about these matters. You probably didnt load commands.so in your config file, and already told you to recompile to get SSL support or take out ssl; from link block.

http://www.unrealircd.com/files/docs/un ... istenblock
http://www.unrealircd.com/files/docs/un ... re_modules

Re: New Issues

Posted: Wed Feb 18, 2009 3:19 am
by Efrain
* Loading IRCd configuration ..
[error] ERROR: No cloaking module loaded. (hint: you probably want to load cloak.so)
[error] If you are upgrading from 3.2 (or any older version), be sure to read the release notes or http://www.vulnscan.org/tmp/newcloak.txt regarding the cloaking change!
[error] IRCd configuration failed to pass testing
Possible error encountered (IRCd seemingly not started)

Unix:Unreal3.2 efraindeleonjr$ loadmodule "src/modules/cloak.so";
-bash: loadmodule: command not found <------------ i even tried load instead of loadmodule and even added the two new cloak keys into my unrealircd.conf, /* change path if needed */ <--------------would this work and how would i go about?

Re: New Issues

Posted: Wed Feb 18, 2009 3:55 am
by digi198816
loadmodule "src/modules/cloak.so"; Goes in unrealircd.conf not shell

Re: New Issues

Posted: Wed Feb 18, 2009 3:58 am
by Efrain
* UnrealIRCd supports modules, loading some of them is required.
* You need at least the commands module and a cloaking module.
*/

/* FOR *NIX, uncomment the following 2lines: */
//loadmodule "src/modules/commands.so";
//loadmodule "src/modules/cloak.so"; <---- those are already in the already in the Unrealircd.conf doc

Re: New Issues

Posted: Wed Feb 18, 2009 4:00 am
by Efrain
freak i think i get it sorry hold on ill get to you i just saw the issue

Re: New Issues

Posted: Wed Feb 18, 2009 4:50 am
by Efrain
* Loading IRCd configuration ..
[error] unrealircd.conf:36 Comment on this line does not end
[error] Could not load config file unrealircd.conf
[error] IRCd configuration failed to load
Possible error encountered (IRCd seemingly not started)

ok now i get this?

Re: New Issues

Posted: Wed Feb 18, 2009 5:05 am
by Efrain
figure it out :D

Re: New Issues

Posted: Wed Feb 18, 2009 6:48 pm
by Casper
Efrain wrote:* UnrealIRCd supports modules, loading some of them is required.
* You need at least the commands module and a cloaking module.
*/

/* FOR *NIX, uncomment the following 2lines: */
//loadmodule "src/modules/commands.so";
//loadmodule "src/modules/cloak.so"; <---- those are already in the already in the Unrealircd.conf doc
Remove the '//' in front of it, so practically it would be:

Code: Select all

/* FOR *NIX, uncomment the following 2lines: */
loadmodule "src/modules/commands.so";
loadmodule "src/modules/cloak.so";

Re: New Issues

Posted: Wed Feb 18, 2009 6:59 pm
by Efrain
ty i figured that out when my scalp was falling off lol but i now i have a new issues the thing is i have a dynamic ip address and i have my own domain name registered and ready to go now i need a subdomain name like irc.mydomain.com with dns support i was trying with a afraid.org but couldn't get far

Re: New Issues

Posted: Wed Feb 18, 2009 10:24 pm
by Efrain
[Wed Feb 18 17:07:02 2009] - TIME SYNCH: timeserver=1234995013, our=1235005622, offset = -10609 [old offset: -10610]

[Wed Feb 18 14:10:13 2009] - WARNING: Time jumped ~1234995013 seconds ahead! (0 -> 1234995013)
[Wed Feb 18 14:10:13 2009] - [TimeShift] Resetting some timers!
[Wed Feb 18 17:07:56 2009] - Error binding stream socket to IP 192.XXX.X.XXX port 6667 - irc.scriptinglanguages.info[]:Address already in use <----- I read the docs and put in in the information needed i even went into my terminal and type the following ifconfig, ifconfig | grep "inet", ifconfig | grep "inet " | grep -v 127.0.0.1 which is narrowed down to the actual ip and still can't get my Unreal3.2 to connect? is this a port forward issue?


,

Re: New Issues

Posted: Thu Feb 19, 2009 7:04 pm
by Casper
Use for the listen block:

Code: Select all

listen *:6667;
Also make sure there's yet no other process using that port.