EQEmulator Home
>
EQEmulator Forums
>
Search Forums
Search Results
User Name
Remember Me?
Password
Home
Forums
Register
Members List
Today's Posts
Search
Search Forums
Show Threads
Show Posts
Advanced Search
Go to Page...
Page 1 of 2
1
2
>
Showing results 1 to 25 of 31
Search took
0.02
seconds.
Search:
Posts Made By:
orkim
Forum:
Development::Server Code Submissions
05-26-2011, 08:12 PM
Replies:
4
gcc and namespace fix /EQEmuLoginServer/Client.cpp
Views:
4,629
Posted By
orkim
Confirmed. The -std=c++0x flag allowed the...
Confirmed. The -std=c++0x flag allowed the desired behavior. Tested with gcc 4.4.3.
Thanks,
-ork
Forum:
Development::Server Code Submissions
05-26-2011, 03:54 PM
Replies:
4
gcc and namespace fix /EQEmuLoginServer/Client.cpp
Views:
4,629
Posted By
orkim
Yes, good call. Making the change you suggested...
Yes, good call. Making the change you suggested keeps gcc compiling it just fine without allocating another variable for the comparison.
I think this still needs to be committed to SVN though.
...
Forum:
Development::Server Code Submissions
05-26-2011, 12:53 PM
Replies:
4
gcc and namespace fix /EQEmuLoginServer/Client.cpp
Views:
4,629
Posted By
orkim
gcc and namespace fix /EQEmuLoginServer/Client.cpp
This is a little diff to work around gcc and the enum/namespace issue. Apparently from what I've found online gcc doesn't like the namespace identifier in its enums, so you must declare a variable,...
Forum:
Development::Server Code Submissions
05-26-2011, 12:47 PM
Replies:
31
autobuild for Linux, FreeBSD, OS X
Views:
20,947
Posted By
orkim
Follow up to my post to posts back. I took the...
Follow up to my post to posts back. I took the time to edit the needed files in the build system to do the two problems I ran into automatically:
./configure.ac needs to be updated to reflect:
...
Forum:
Development::Server Code Submissions
05-26-2011, 11:52 AM
Replies:
31
autobuild for Linux, FreeBSD, OS X
Views:
20,947
Posted By
orkim
For anyone interested in adding the...
For anyone interested in adding the EQEmuLoginServer to the autobuild scripts, I spent a few minutes working this out. Read below for how I did it.
Before building, you must extract the proper...
Forum:
Development::Server Code Submissions
05-26-2011, 10:15 AM
Replies:
1
COMMITTED: Missing include zone/questmgr.cpp
Views:
3,676
Posted By
orkim
COMMITTED: Missing include zone/questmgr.cpp
This file uses INT_MAX but didn't have limits.h set. Just needs to be added to the includes.
#include <sstream>
#include <iostream>
#include <list>
#include <limits.h>
using namespace std;
Forum:
Development::Server Code Submissions
05-26-2011, 10:13 AM
Replies:
31
autobuild for Linux, FreeBSD, OS X
Views:
20,947
Posted By
orkim
While working on a fresh SVN compile, I had some...
While working on a fresh SVN compile, I had some issues to work through.
Specifically, here's what I did to make the compile work:
prepare.sh needs to be updated. It did not remove these files:...
Forum:
Support::Linux Servers
05-25-2011, 11:30 AM
Replies:
16
Public Server Only Works On Localhost
Views:
17,945
Posted By
orkim
Congrats. For security: - Shut off any...
Congrats.
For security:
- Shut off any services you aren't using.
- Encrypt all traffic that you can (https instead of http, ssh instead of telnet, etc.) and restrict logins/hosts for...
Forum:
Support::Linux Servers
05-24-2011, 09:40 PM
Replies:
16
Public Server Only Works On Localhost
Views:
17,945
Posted By
orkim
Well, that's a problem. Forward them to the...
Well, that's a problem. Forward them to the linux VM. 192.168.2.5
-orkim
Forum:
Support::Linux Servers
05-24-2011, 09:24 PM
Replies:
16
Public Server Only Works On Localhost
Views:
17,945
Posted By
orkim
Your ports on your router are forwarded to...
Your ports on your router are forwarded to 192.168.2.5?
Or are they forwarded to 192.168.2.150?
Forum:
Support::Linux Servers
05-24-2011, 01:53 PM
Replies:
16
Public Server Only Works On Localhost
Views:
17,945
Posted By
orkim
You should now be able to connect to your server...
You should now be able to connect to your server from the internet. Have a friend, or someone outside your LAN, confirm that they can connect. I do not see why a 3g card would be an issue as long...
Forum:
Support::General Support
05-24-2011, 09:46 AM
Replies:
6
Eqhost Test for project1999 PLEASE
Views:
5,262
Posted By
orkim
You should not have any permission problems if...
You should not have any permission problems if you are doing it as an admin. Launch notepad.exe as admin (or whatever you use), open the file, edit and save. You're most likely not running your...
Forum:
Support::Windows Servers
05-24-2011, 09:44 AM
Replies:
1
Cant Connect to MySQL server
Views:
3,254
Posted By
orkim
Most likely is that you have your host configured...
Most likely is that you have your host configured wrong, the MySQL server isn't running, or you have firewall issues.
Are these on the same host?
-orkim
Forum:
Support::Linux Servers
05-24-2011, 09:21 AM
Replies:
16
Public Server Only Works On Localhost
Views:
17,945
Posted By
orkim
That is a private IP address. Anything...
That is a private IP address. Anything (172.16.x.x, 192.168.x.x, 169.x.x.x or 10.x.x.x, etc) that is a private address is not going to work if you're trying to connect to it via the internet.
Go...
Forum:
Support::Linux Servers
05-23-2011, 08:28 PM
Replies:
16
Public Server Only Works On Localhost
Views:
17,945
Posted By
orkim
It is almost certainly that you have this: ...
It is almost certainly that you have this:
When you are installing behind a firewall (with a local LAN IP address) you will have to set this to your public IP. Now, you may or may not have a...
Forum:
Support::Linux Servers
05-18-2011, 02:59 PM
Replies:
20
Script to help setup server on Linux
Views:
17,644
Posted By
orkim
cerbere, glad to see someone is getting use out...
cerbere, glad to see someone is getting use out of the script.
looking at that output your prompt is appearing again. you just need to hit enter a time or two. on the last line, the prompt is...
Forum:
Development::Server Code Submissions
10-19-2010, 10:42 AM
Replies:
0
COMMITTED: Short Name Restriction Fixed
Views:
3,239
Posted By
orkim
COMMITTED: Short Name Restriction Fixed
I took the time today to fixup the code so that we can go beyond the 16 character limit on the zone short_name fields. Attached is my diff.
Index: world/LauncherLink.cpp...
Forum:
Support::General Support
10-18-2010, 11:28 AM
Replies:
3
Missing items on a character
Views:
3,697
Posted By
orkim
You might try posting on the P1999 forums instead...
You might try posting on the P1999 forums instead of on the eqemulator forums. This form is the later, and is for discussion/support of the emulator and not specific servers.
Good luck.
-ork
Forum:
Support::Linux Servers
06-03-2010, 09:29 AM
Replies:
41
Trying to set up server
Views:
37,628
Posted By
orkim
You pretty much got it there Mirakus. One...
You pretty much got it there Mirakus.
One note I will add, is "adding your ip to the top of the config file" portion from above.
Typically when the world server connects to the login server it...
Forum:
Support::General Support
06-03-2010, 09:16 AM
Replies:
4
Melee attack issue
Views:
4,648
Posted By
orkim
Titanium/SoF will be 5998... SoD will be 5999...
Titanium/SoF will be 5998... SoD will be 5999 (but, it only works with the new login server) if my memory serves me. Are you sure you're using the right port? It's been a long time since I've...
Forum:
Development::Tools
05-19-2010, 09:16 AM
Replies:
129
Eq Browser : Allakhazam Clone
Views:
122,378
Posted By
orkim
I'd be up for helping. Maybe in SVN under...
I'd be up for helping. Maybe in SVN under utils/eqbrowser/ or something would work well. I would think we need to add some of the GPL licensing text since we got a go-ahead from muuss to do so. ...
Forum:
Development::Tools
05-18-2010, 05:42 PM
Replies:
129
Eq Browser : Allakhazam Clone
Views:
122,378
Posted By
orkim
What happened to this project? There's mention...
What happened to this project? There's mention of a sourceforge desired. Did one ever get set up? Or could a google code repo be set up? I wouldn't mind helping out on this either, but the few...
Forum:
Support::Linux Servers
05-11-2010, 07:46 PM
Replies:
20
Script to help setup server on Linux
Views:
17,644
Posted By
orkim
kai, That might be nice. It would be...
kai,
That might be nice. It would be awesome and I'd just start a thread for it, but the editing of posts over X hours/days whatever old doesn't seem to work well.
What would be really nice is...
Forum:
Support::Linux Servers
05-10-2010, 09:43 PM
Replies:
20
Script to help setup server on Linux
Views:
17,644
Posted By
orkim
I did locate a bug in my script. There is a 'ln...
I did locate a bug in my script. There is a 'ln -s ../projecteqquests .' command which should read
'ln -s ../projecteqquests quests' as the symlink made is not correct. I fixed this manually here....
Forum:
Support::Linux Servers
05-10-2010, 07:20 PM
Replies:
20
Script to help setup server on Linux
Views:
17,644
Posted By
orkim
Kobaz, I think some sort of sed script or...
Kobaz,
I think some sort of sed script or similar for setting up bots/eqemuloginserver/etc would be nice. I started to go down
that path, but then realized that some people might not have a...
Showing results 1 to 25 of 31
Page 1 of 2
1
2
>
Forum Jump
User Control Panel
Private Messages
Subscriptions
Who's Online
Search Forums
Forums Home
General
General::General Discussion
General::Server Discussion
General::News
General::News::Polls
Support
Support::General Support
Idiot Posters
Spell Support
Support::Windows Servers
Support::Linux Servers
Support::Packetcollector
Support::MiniLogin
Quests
Quests::Q&A
Quests::Custom
Quests::Completed
Quests::Submissions
Quests::Plugins & Mods
Quests::need work
Quests::LUA
Development
Development::Development
Development::Bots
Development: Custom Code
Development::Server Code Submissions
Development::Feature Requests
Development::Bugs
Development::Bug Reports
Development::Database/World Building
Development::Tools
Development::GeorgeS's Tools
EQEmu Operations Center
KayotRO
Old Eq
OpenZone
OpenZone:: Q&A
Simple Client
OpenZone::Tutorials
OpenZone::Bug Reporting
Misc
Misc::Off Topic
Misc::Screenshots
Archives
Archive::Support
Archive::General Support
Archive::Windows Servers
Archive::Linux Servers
Archive::Tutorials/Howto's
Tutorials--Outdated Use the Wiki
Tutorial ALL NEW PEOPLE READ THIS
Tutorials::Discussion
Tutorials::Requests
Tutorials::Submissions
Tutorials::Needs work
Archive::Packetcollector
Archive::Development
Archive::Development
Archive::Bugs
Archive::Tools
Archive::Quests
Archive::Database/World Building
EQ2 Development
Archive::Misc
Archive::Off Topic
Archive::Screenshots
OpenEQ
OpenEQ::General Discussion
OpenEQ::Support
OpenEQ::Development
OpenEQ::Bug reporting
OpenEQ::Plugins
All times are GMT -4. The time now is
02:02 PM
.
-- Default Style
---- EQEmulator
EQEmulator
-
Archive
-
Top
Everquest is a registered trademark of Daybreak Game Company LLC.
EQEmulator is not associated or affiliated in any way with Daybreak Game Company LLC.
Except where otherwise noted, this site is licensed under a
Creative Commons License
.
Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Template by
Bluepearl Design
and
vBulletin Templates
- Ver3.3