Unreal Win32 Help

These are old archives. They are kept for historic purposes only.
Post Reply
hrazor
Posts: 2
Joined: Wed Apr 12, 2006 8:24 am

Unreal Win32 Help

Post 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!
Dukat
Posts: 1083
Joined: Tue Mar 16, 2004 5:44 pm
Location: Switzerland

Post by Dukat »

You "sent" it to a win32 server?
How?
What exactly did you do?
If you don't make mistakes, you aren't really trying.
- Coleman Hawkins
hrazor
Posts: 2
Joined: Wed Apr 12, 2006 8:24 am

Post 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
Dukat
Posts: 1083
Joined: Tue Mar 16, 2004 5:44 pm
Location: Switzerland

Post 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!
If you don't make mistakes, you aren't really trying.
- Coleman Hawkins
frozen
Posts: 53
Joined: Sat Jun 12, 2004 7:39 am

Post 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.
Post Reply