i have this erroor --- ERROR: No cloaking module loaded

These are old archives. They are kept for historic purposes only.
Post Reply
4mIRC
Posts: 63
Joined: Sat Mar 13, 2010 8:24 pm

i have this erroor --- ERROR: No cloaking module loaded

Post by 4mIRC »

hi all

i tried to link new server ( first time to me ) every thing ok

error shown when i type this ./unreal start ,, the error is :

Code: Select all

* 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 www.vulnscan.org/tmp/newcloak.txt regarding the cloaking change!
[error] IRCd configuration failed to pass testing
Possible error encountered (IRCd seemingly not started)
=====================================================
Check above for possible errors, and this output of
ircd.log. If you cannot solve the problem, read
Unreal.nfo on where to get support
=====================================================
tail: /usr/***/***/Unreal3.2/ircd.log: No such file or directory
can any one help me ?

Regards
katsklaw
Posts: 1124
Joined: Sun Apr 18, 2004 5:06 pm
Contact:

Re: i have this erroor --- ERROR: No cloaking module loaded

Post by katsklaw »

you must load the cloak module as the error states.

Read the top of your unrealircd.conf again where it talks about loading modules.
4mIRC
Posts: 63
Joined: Sat Mar 13, 2010 8:24 pm

Re: i have this erroor --- ERROR: No cloaking module loaded

Post by 4mIRC »

thanks for the reply this what i have on the top

Code: Select all

/*
 * example.conf by Daniel Hawton AKA Osiris ([email protected]).
 * $Id: example.conf,v 1.1.1.1.2.24 2009/04/13 11:03:55 syzop Exp $
 * 
 * Works for Unreal3.2 and up
 * 
 * Okay guys.  This is the new example.conf. Its look is much like C++, kinda.
 * Anyway it is time to go over this.  It's hard to pick up at first, but
 * with some pratice and reading you'll understand.
 *
 * Just copy this file to your main unrealircd dir and call it 'unrealircd.conf'.
 * 
 * NOTE:  All lines, except the opening { line, end in an ;, including the
 * closing } line. The IRCd will ignore commented lines.
 *
 * PLEASE READ doc/unreal32docs.html! The online version is also available at:
 * www.vulnscan.org/UnrealIRCd/unreal32docs.html
 * It contains a lot information about the configfile: gives information about
 * every block, variable, etc..
 * If you try to edit this file without reading the documentation properly
 * then you are pretty much guaranteed to fail!
 */

/* Type of comments */
#Comment type 1 (Shell type)
// Comment type 2(C++ style)
/* Comment type 3 (C Style) */
#those lines are ignored by the ircd.

/*
 * 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";

/* FOR Windows, uncomment the following 2 lines: */
//loadmodule "modules/commands.dll";
//loadmodule "modules/cloak.dll";

Regards
katsklaw
Posts: 1124
Joined: Sun Apr 18, 2004 5:06 pm
Contact:

Re: i have this erroor --- ERROR: No cloaking module loaded

Post by katsklaw »

you really need to READ what you paste. it makes helping you easier. :roll:

Code: Select all

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

/* FOR Windows, uncomment the following 2 lines: */
//loadmodule "modules/commands.dll";
//loadmodule "modules/cloak.dll";
Post Reply