Page 1 of 1

help

Posted: Fri Jan 16, 2009 10:18 am
by Kristopher
i am getting theses errors i did read the doc.

[error] unrealircd.conf: Unexpected EOF for variable starting on line 1
[error] Could not load config file unrealircd.conf
[error] IRCd configuration failed to load

what do i do

Re: help

Posted: Fri Jan 16, 2009 11:16 am
by Casper
Can you post the first 10 lines of the unrealircd.conf ?

Re: help

Posted: Fri Jan 16, 2009 8:25 pm
by Kristopher
/*
* NEW: me {}
* OLD: M:Line
* me {} defines the name, description and unreal server numeric for
* this server. Syntax is as follows:
* me {
* name "springsairairlines";
* info "Not Support";
* numeric (1*);
* };

Re: help

Posted: Fri Jan 16, 2009 8:26 pm
by Sakurachan
Also, if I may ask how did you find the folders/files for your UnrealIRCD?

As I found out this is my issue on my side with the configuration.

Re: help

Posted: Fri Jan 16, 2009 8:28 pm
by Kristopher
i also just copy the example.conf

Re: help

Posted: Fri Jan 16, 2009 8:56 pm
by Casper
Kristopher wrote:i also just copy the example.conf
The first ten lines that you pasted are definitely NOT from the example.conf. Could you please paste me your 'me' block ?

Re: help

Posted: Fri Jan 16, 2009 9:52 pm
by Kristopher
/*
* NEW: me {}
* OLD: M:Line
* me {} defines the name, description and unreal server numeric for
* this server. Syntax is as follows:
* me {
* name "springsairairlines";
* info "Not Support";
* numeric (1*);
* };
* If linking, this numeric may not be used by any other server on the network.
*/
me
{

Re: help

Posted: Sat Jan 17, 2009 6:10 pm
by zEkE
The configuration file is made up of blocks, such as
me {
configuration for me block;
};

The brackets are important, if the file ends while a block is open, it generates this error.

Also, from reviewing the commented block shown above, you've edited the commented block. Anything prefixed by # or // will not be processed as configuration, nor will anything between /* and */. These are used for comments and in this case describing what the various configuration items do.

So I shall repeat the question again, can you paste the me {}; block, the one that ISN'T commented, from me { at the beginning to the }; that closes it?