Page 1 of 1

Unreal Win32 Help

Posted: Wed Apr 12, 2006 8:27 am
by hrazor
Hey, I have Unreal IRCD 3.2.4 With SSL for win32. I configed and ran on my home PC and worked fine, then i sent it to a win32 server and ran it, nothing happened and no log was created. Any suggestions?
Thanx in advance!

Posted: Wed Apr 12, 2006 8:47 am
by Dukat
You "sent" it to a win32 server?
How?
What exactly did you do?

Posted: Wed Apr 12, 2006 9:25 am
by hrazor
I sent my Unreal Folder thats on my pc via ftp to the server, then i tried execing wircd.exe via telnet and log gave nothing. When i try to connect to server it says:
(19:14:45) * Unable to connect to server (Connection refused)

Here's my listen block aswell:

Code: Select all

listen         *:6697
{
	options
	{
                                ssl;
		clientsonly;
	};
};

listen *:6667;
thanx

Posted: Wed Apr 12, 2006 10:21 am
by Dukat
You telneted to a win32 server?

Anyway:
You can't just transfer your unreal folder to another computer, you have to install it there!

Posted: Wed Apr 12, 2006 9:20 pm
by frozen
Make a new text file and rename it "init.bat", right click on it and select "Edit", this should open it in notepad. Then put

Code: Select all

unreal stop
unreal uninstall
unreal install
unreal start
pause
in it, save and close. Make another new text file and rename it "term.bat", right click on it and select "Edit", paste

Code: Select all

unreal stop
unreal uninstall
pause
in it, save and close.
init.bat for booting ircd, term.bat for killing ircd.