problems

These are old archives. They are kept for historic purposes only.
Post Reply
luurila
Posts: 3
Joined: Mon May 03, 2004 8:27 pm

problems

Post 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 :)
_MiF_
Posts: 15
Joined: Mon May 03, 2004 5:58 pm
Location: Israel
Contact:

Post by _MiF_ »

Paste here your config from 328 to 337 lines, I'll help you =)
Best regards, _MiF_
luurila
Posts: 3
Joined: Mon May 03, 2004 8:27 pm

Post by luurila »

class servers;
options ;{
/* Note: You should not use autoconnect when linking
* services
*/
autoconnect;
ssl;enable
zip;enable
}
);
_MiF_
Posts: 15
Joined: Mon May 03, 2004 5:58 pm
Location: Israel
Contact:

Post by _MiF_ »

Code: Select all

class servers; 
options
{ 
autoconnect; 
ssl;
zip;
};
};
This way =)
Best regards, _MiF_
luurila
Posts: 3
Joined: Mon May 03, 2004 8:27 pm

Post 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
_MiF_
Posts: 15
Joined: Mon May 03, 2004 5:58 pm
Location: Israel
Contact:

Post 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;
};
};
Best regards, _MiF_
Ron2K

Post 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;
	};
};
Post Reply