Failed to run???

These are old archives. They are kept for historic purposes only.
Post Reply
elitescouter
Posts: 3
Joined: Fri Sep 23, 2005 1:31 am

Failed to run???

Post by elitescouter »

Well I have tried installing and everything but no luck!

I don't know if I have used old version anyways I tried installing this 1 and now when I run it I get theese errors.

Code: Select all

[error] ERROR: No cloaking module loaded. (hint: you probably want to load modules\cloak.dll)
[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
Can anyone please help me?

If I change the cloking as followed on that file i get theese errors!

Code: Select all

* Loading IRCd configuration ..
[error] ERROR: efunction 'do_join' not found, you probably did not load commands.so properly (or not all required m_* modules)
[error] ERROR: efunction 'join_channel' not found, you probably did not load commands.so properly (or not all required m_* modules)
[error] ERROR: efunction 'can_join' not found, you probably did not load commands.so properly (or not all required m_* modules)
[error] ERROR: efunction 'do_mode' not found, you probably did not load commands.so properly (or not all required m_* modules)
[error] ERROR: efunction 'set_mode' not found, you probably did not load commands.so properly (or not all required m_* modules)
[error] ERROR: efunction 'm_umode' not found, you probably did not load commands.so properly (or not all required m_* modules)
[error] IRCd configuration failed to pass testing
Sorry if this is easy to fix but I just don't understand it.
Moogey
Posts: 56
Joined: Thu Sep 08, 2005 9:08 pm

Post by Moogey »

Well first off read the docs if you haven't already.

If you're running windows, add:

loadmodule "modules/commands.dll";
loadmodule "modules/cloak.dll";

up on the top. If you're running *nix

loadmodule "src/modules/commands.so";
loadmodule "src/modules/cloak.so";

Then, in your set block, add this if it's not there already:

cloak-keys {

"CLOAK1";
"CLOAK2";
"CLOAK3";

};

You'll need to replace cloak1, 2, and 3 though.
Sets the keys to be used to generate a +x host. This value must be the same on all servers or the servers will not link. Each of the 3 set::cloak-keys:: must be a string of 5-100 characters (10-20 is fine) consisting of mixed lowercase (a-z), uppercase (A-Z) and digits (0-9). Note that depending on which cloaking module you have loaded, other rules may apply.
Note- I have reason to believe you didn't pay attention to the docs because these directives are there in the example file already I'm pretty sure. If you haven't, you're going to need to do a lot of reading :wink:
Post Reply