ArcEMU -> Public Need Help! menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 16
  1. #1
    Submit's Avatar Member
    Reputation
    44
    Join Date
    Nov 2007
    Posts
    238
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    ArcEMU -> Public Need Help!

    So im trying to make a public ArcEMU server. I am able to connect on my computer, however others are unable. They get stuck on loading screen and then get d/c'd.

    Here is my Setup:

    Hosts.txt:
    Code:
    127.0.0.1 thesunwellservers.ath.cx
    192.168.1.139 thesunwellservers.ath.cx
    66.229.164.210 thesunwellservers.ath.cx
    the 192.168.1.139 = my static INTERNAL IP
    the 66.229.164.210 = my EXTERNAL IP

    logon.config:
    Code:
    #######################################################################
    # Keazain`s Compilings
    #######################################################################
    
    
    # LogonDatabase Section
    #
    #    These directives are the location of the `realms` and `accounts`
    #    tables.
    #
    #    LogonDatabase.Host      - The hostname that the database is located on
    #    LogonDatabase.Username  - The username used for the mysql connection
    #    LogonDatabase.Password  - The password used for the mysql connection
    #    LogonDatabase.Name      - The database name
    #    LogonDatabase.Port      - Port that MySQL listens on. Usually 3306.
    #    LogonDatabase.Type      - Client to use. 1 = MySQL, 2 = PostgreSQL, 3 = Oracle 10g
    #
    
    <LogonDatabase Hostname = "localhost"
                   Username = "root"
                   Password = "iamsk8te"
                   Name     = "logon"
                   Port     = "3306"
                   Type     = "1">
    
    
    # Host Directive
    #
    #    This is the address that the realmlist will listen on.
    #    To listen on all addresses, set it to 0.0.0.0
    #    Default: 127.0.0.1 (localhost)
    #
    #    Note: ISHost is the interserver communication listener.
    #
    
    <Listen Host = "0.0.0.0"
            ISHost = "0.0.0.0"
            RealmListPort = "3724"
            ServerPort = "8093">
    
    # Server console logging level
    #
    #    This directive controls how much output the server will
    #    display in it's console. Set to 0 for none.
    #    0 = Minimum; 1 = Error; 2 = Detail; 3 = Full/Debug
    #    Default: 3
    #
    
    <LogLevel Screen = "0"
              File = "-1">
    
    # Account Refresh Time
    #
    #    This controls on which time interval accounts gets 
    #    refreshed. (In seconds)
    #    Default = 600 
    #    600 seconds = 10 minutes - 1 second = 0.0166666667 minutes 300 seconds = 5 minutes, 150 seconds = 2.5minutes
    #    
    #
    
    <Rates AccountRefresh = "15">
    
    # Accepted Build Range Setup
    #
    #    These two directives set up which clients will be
    #    allowed to authenticate with the realm list.
    #
    #    Set these to the same builds that the server was
    #    compiled for.
    #
    #    As of the last update, version 3.0.9 was build 9551.
    #
    
    <Client MinBuild = "9551"
            MaxBuild = "9999">
    
    # WorldServer Setup
    #
    #  RemotePassword
    #    This directive controls the password used to authenticate with the worldserver.
    #    It must be the same between the two configs. If it is not, your server will
    #    not register.
    #
    #    Default: "change_me_logon"
    #
    #  AllowedIPs
    #    This section MUST be completed, otherwise all attempts to link your servers will fail.
    #    These "Allowed" fields are a space-seperated list of CIDR-form IP addresses that are #    allowed
    #    to make server connections to your logonserver, and register realms.
    #    For example, everything in the 127.0.0.* range would be:
    #         127.0.0.0/24, as 24 of the bits must match the 127.0.0.0
    #
    #    To allow a single IP,
    #         1.3.3.7/32, would allow only 1.3.3.7 to connect as 32 of the bits must match.
    #
    #  AllowedModIPs
    #    In the same form as AllowedIPs, these are the IPs that are allowed to modify the database
    #    (adding bans, GMs, account permissions, etc)
    #
    
    <LogonServer RemotePassword = "iamsk8te"
                 AllowedIPs = "127.0.0.1/24"
                 AllowedModIPs = "127.0.0.1/24">
    realms.config:
    Code:
    #######################################################################
    # Keazain`s Compilings
    #######################################################################
    
    #********************************************************************************
    #* How to use this config file:                                                 *
    #* Config files are in a block->variable->setting format.                       *
    #* A < signifies the opening of a block, the block name is expected after that. * 
    #* After the block name, a space and then the settings sperated by = / ' '.     *
    #*                                                                              *
    #* e.g.                                                                         *
    #* <block setting="0" someval = "1">                                            *
    #*                                                                              *
    #* Comments can be in C format, e.g. /* some stuff */, with a // at the start   *
    #* of the line, or in shell format (#).                                         *
    #********************************************************************************/
    
    #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
    # LogonServer Section
    #
    #    Address:
    #      The address (no port) of the server.
    #
    #    Port:
    #      The port on which the logon server listens. (*** NOT 3724 ***)
    #
    #    Name:
    #      Not really relavant, but name the logon.
    #
    #    RealmCount:
    #      The number of realms in the next section.
    #
    #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
    
    <LogonServer Address = "127.0.0.1"
        Port = "8093"
        Name = "Default Logon"
        RealmCount = "2">
    
    #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
    # Realm Section
    #
    #    Name:
    #      The name of the realm.
    #    
    #    Address:
    #      The address (and port) of that realm.
    #
    #    Icon:
    #      The type of realm (PVP, Normal, RPPVP, RP)
    #
    #    TimeZone:
    #      The location of the server (1=Development, 2=United States, 3=Oceanic, 4=Latin America, 
    #       5=Tournament, 6=Korean, 8=English, 9=German, 10=French)
    #
    #    Population:
    #      (0 = low, 1 = medium, 2 = high)
    #
    #   Important information below
    #
    #     change 127.0.0.1 to your EXTERNAL ip if you wish to have a PUBLIC server.
    #     This issues come up a lot!
    #
    #     Timezone values :
    #    0=Korean                16=China
    #    1=Development                17=CN1
    #    2=United States                18=CN2
    #    3=Oceanic                19=CN3
    #    4=Latin America                20=CN4
    #    5=Tournament                21=CN5
    #    6=Korean                22=CN6
    #    8=English                23=CN7
    #    9=German                24=CN8
    #    10=French                25=Tournament
    #    11=Spanish                26=Test Server
    #    12=Russian                27=Tournament
    #    13=Tournament                28=QA Server
    #    14=Taiwan                29=CN9
    #    15=Tournament                30=TestServer2
    #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
    
    <Realm1 Name = "The Sunwell Server"
        Address = "thesunwellservers.ath.cx:8129" 
        Icon = "PVP"
        Population = "1.0"
        TimeZone = "1">
    
    <Realm2 Name = "local"
        Address = "127.0.0.1:8129" 
        Icon = "PVP"
        Population = "1.0"
        TimeZone = "1">
    in the Address = "thesunwellservers.ath.cx:8129" location ive also tried 66.229.164.210 with even worse results leading to me not being able to connect.

    Also, i am on a wireless connection if that has anything to do with it?

    Please Help!!! ive been at this for days =/


    ArcEMU -&gt; Public Need Help!
  2. #2
    Vragoth's Avatar Established Member
    Reputation
    55
    Join Date
    Nov 2008
    Posts
    422
    Thanks G/R
    5/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Why do you have 2 realms? well anyways did you portfoward? Also If you did but still dont work turn off any firewalls and antiviruses running the in background!

  3. #3
    Aznex's Avatar Contributor
    Reputation
    128
    Join Date
    Feb 2008
    Posts
    770
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Open public port(8129)
    and you don't need a local realm if you've configured your hosts file.


    also your hosts file's gotta be like this:
    127.0.0.1 localhost
    127.0.0.1 thesunwellservers.ath.cx


    you don't need the other shit cause its redundant

  4. #4
    Submit's Avatar Member
    Reputation
    44
    Join Date
    Nov 2007
    Posts
    238
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by :Nightmare: View Post
    Why do you have 2 realms? well anyways did you portfoward? Also If you did but still dont work turn off any firewalls and antiviruses running the in background!
    all ports are fowarded that need to be, the firewalls are off, the anti viruses are off, and i changed the hosts files to:

    Code:
    127.0.0.1 localhost
    127.0.0.1 thesunwellservers.ath.cx
    192.168.1.139 thesunwellservers.ath.cx
    66.229.164.210 thesunwellservers.ath.cx


  5. #5
    Aznex's Avatar Contributor
    Reputation
    128
    Join Date
    Feb 2008
    Posts
    770
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    They get stuck on loading screen and then get d/c'd.

    is not an error with going public tho...apply database updates and maybe update your core.

  6. #6
    Submit's Avatar Member
    Reputation
    44
    Join Date
    Nov 2007
    Posts
    238
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Aznex View Post
    They get stuck on loading screen and then get d/c'd.

    is not an error with going public tho...apply database updates and maybe update your core.
    well i hosted the server with Hamachii to test it and my friends were able to connect, so its not the database. The reason why i want it to be public is to get more ppl on it.


  7. #7
    Submit's Avatar Member
    Reputation
    44
    Join Date
    Nov 2007
    Posts
    238
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i am using wireless internet on my desktop tho, could this be teh cause?

    +Repx2 for who ever solves my problem!


  8. #8
    Submit's Avatar Member
    Reputation
    44
    Join Date
    Nov 2007
    Posts
    238
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    bump still need help


  9. #9
    Metafez's Avatar Member
    Reputation
    14
    Join Date
    Feb 2009
    Posts
    41
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Me and you've got the exact same problem

    btw... wat ports did you forward? I found like 20 different ports to forward from all the guides on the net.

  10. #10
    Vragoth's Avatar Established Member
    Reputation
    55
    Join Date
    Nov 2008
    Posts
    422
    Thanks G/R
    5/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You only need to portfoward a few ones.

  11. #11
    Metafez's Avatar Member
    Reputation
    14
    Join Date
    Feb 2009
    Posts
    41
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does it matter if theres more than needed?

    I've got these forwarded:

    80-80
    3036-3036
    3306-3306
    3724-3724
    6112-6112
    6881-6881
    8050-8050
    8093-8093
    8129-8129

  12. #12
    Vragoth's Avatar Established Member
    Reputation
    55
    Join Date
    Nov 2008
    Posts
    422
    Thanks G/R
    5/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Doesnt matter if theres more then needed. 3306 = mysql 80= webserver 8093 = server im not sure what the others do...Are you sure instead of TCP the ports are on Both

  13. #13
    Metafez's Avatar Member
    Reputation
    14
    Join Date
    Feb 2009
    Posts
    41
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yea I've got it set so it's on both

    Hmm... if I'm using a wireless router will I have to configure both the wireless router and the other one from the company?

  14. #14
    titanexile's Avatar Member
    Reputation
    1
    Join Date
    Feb 2009
    Posts
    53
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    ports

    make sure you have the apropriate ports open

  15. #15
    Metafez's Avatar Member
    Reputation
    14
    Join Date
    Feb 2009
    Posts
    41
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by titanexile View Post
    make sure you have the apropriate ports open
    That doesnt really help with anything...

    I've already established I've got the ones I needed and I was asking if I need to forward from my other router...

Page 1 of 2 12 LastLast

Similar Threads

  1. [Arcemu] Need help getting public.
    By Orgtar in forum WoW EMU Questions & Requests
    Replies: 31
    Last Post: 05-20-2012, 09:44 PM
  2. Going public(need help)
    By Flake0207 in forum WoW EMU Questions & Requests
    Replies: 12
    Last Post: 03-22-2009, 01:49 AM
  3. My ArcEmu CONFIG files, Public need help
    By darklink701 in forum WoW EMU Questions & Requests
    Replies: 6
    Last Post: 03-15-2009, 02:20 AM
  4. Help with Making my server public needed!
    By DaSnipa117 in forum World of Warcraft Emulator Servers
    Replies: 43
    Last Post: 06-14-2008, 06:44 AM
  5. [URGENT MATTER] I need help with my emu publication!
    By gr33noni in forum World of Warcraft Emulator Servers
    Replies: 7
    Last Post: 12-23-2007, 05:52 PM
All times are GMT -5. The time now is 10:50 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search