Page 1 of 1

problems

Posted: Mon May 03, 2004 8:34 pm
by luurila
what is wrong:
* Loading IRCd configuration ..
* unrealircd.conf:329: No name for section start
[error] unrealircd.conf:336: Missing semicolon before close brace

help :)

Posted: Mon May 03, 2004 8:35 pm
by _MiF_
Paste here your config from 328 to 337 lines, I'll help you =)

Posted: Mon May 03, 2004 8:36 pm
by luurila
class servers;
options ;{
/* Note: You should not use autoconnect when linking
* services
*/
autoconnect;
ssl;enable
zip;enable
}
);

Posted: Mon May 03, 2004 8:39 pm
by _MiF_

Code: Select all

class servers; 
options
{ 
autoconnect; 
ssl;
zip;
};
};
This way =)

Posted: Mon May 03, 2004 8:53 pm
by luurila
* Loading IRCd configuration ..
* unrealircd.conf:329: link *.com with SSL option enabled on a non-SSL compile
* unrealircd.conf:329: link *.com with ZIP option enabled on a non-ZIP compile

Posted: Mon May 03, 2004 8:56 pm
by _MiF_
luurila wrote:* Loading IRCd configuration ..
* unrealircd.conf:329: link *.com with SSL option enabled on a non-SSL compile
* unrealircd.conf:329: link *.com with ZIP option enabled on a non-ZIP compile
Ohh! You have to recompile your ircd with SSL & zip, or delete from options:
ssl;
zip;

---

class servers;
options
{
autoconnect;
};
};

Posted: Tue May 04, 2004 6:46 am
by Ron2K
_MiF_ wrote:

Code: Select all

class servers; 
options
{ 
autoconnect; 
ssl;
zip;
};
};
!=

Code: Select all

class servers {
	pingfreq <ping-frequency>;
	connfreq <connect-frequency>;
	maxclients <maximum-clients>;
	sendq <send-queue>;
	recvq <recv-queue>;
};
/* change pingfreq etc to the required values, use the example.conf values if you're unsure */

link <server-name> {
/* insert all the other bits and pieces here */
 	class servers;  
	options {
		autoconnect;
		ssl;
		zip;
	};
};