HELP: Everything work, but no one able to connect. menu

User Tag List

Results 1 to 14 of 14
  1. #1
    xilve's Avatar Member
    Reputation
    1
    Join Date
    Dec 2006
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    HELP: Everything work, but no one able to connect.

    Hey everyone, thanks for reading. So basically, I have the new AC Repack. I have everything working, I use MySQL, it works (can connect with Navicat), then I have the logonserver working with my hostname which is open and works for me, and my worldserver which works for me as well (I don't know about logging in game yet though). I use WAMP to host my website which, works for me, but doesn't work for anyone else. The account creation and everything works on the website, so I'm wondering how no one else can see it but I can? I have my hosts for 127.0.0.1 and my external IP, they are both going to my DNS host. I have my ports forwarded, all of the needed ones, I have a D-Link DI-624. I have all my ports forwarded for both TCP and UDP and they are all forwarded to my external IP. That may be wrong, but I couldn't tell you. So basically, I need someone with the knowledge to help me get this server up. I have people waiting for it and they're getting impatient! Haha.

    Anyways, that's my predicament. What I ask from you guys, help, and asap.

    If you can help me better through IM, Feel free to contact me at [email protected] for MSN.

    Thanks again for reading.

    HELP: Everything work, but no one able to connect.
  2. #2
    Reflection's Avatar Legendary
    Reputation
    783
    Join Date
    Mar 2008
    Posts
    3,377
    Thanks G/R
    1/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Post your configs.

    Freelance Digital Artist
    https://reflectionartwork.deviantart.com
    You did not desert me
    My brothers in arms


  3. #3
    xilve's Avatar Member
    Reputation
    1
    Join Date
    Dec 2006
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Website Config

    Code:
    <?php
    /* 
     SPORA for Ascent v1.4
     Simple Page Of Registration of Accounts for Ascent
     It is made in the form of one page with fields of input of the 
     information of an account and the list of players being on a server.
     
     Original Creation by mirage666 for MaNGOS Categories
     
     Modified for Ascent by Kandyman   Burning WoW
    */
    ="en";   // Language ("en" - english, "ru" - russian)
    ="Ardent Dawn";  // Insert the title of your server here
    ="ardentdawn.servegame.org";  // HOST for Character database
    ="*****";   // USER for Character database
    ="*****";  // PASS for Character database
    ="logon";   // NAME of Character database
    ="ardentdawn.servegame.org";  // HOST for Logonserver database
    ="*****";   // USER for Logonserver database
    ="*****";  // PASS for Logonserver database
    ="logon";   // NAME of Logonserver database
     = 'CP1251';  // Set encoding
     = "img/";  // Image dir
     = "ardentdawn.servegame.org";  // Ascent Server Address
     = "8129";   // Ascent Server Port
    =0;   // Lock created account to IP address (1 - on, 0 - off)
    =0;   // Registration only one (or more) account from one IP address
        // 0 - not limit, 1 - one acc,  2 - two acc, etc...


    Ascent Logonserver

    Code:
    #######################################################################
    # OpenAscent Realms Configuration File  
    # Last updated at revision 446 by Burlex
    #######################################################################
    /********************************************************************************
     * 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 (#).                                         *
     ********************************************************************************/
    # 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 = "ardentdawn.servegame.org"
                   Username = "*****"
                   Password = "******"
                   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
    #
    <Rates AccountRefresh = "600">
    # 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 2.1.1 was build 6739.
    #
    <Client MinBuild = "8089"
            MaxBuild = "9999">

    Ascent Realms

    Code:
    #######################################################################
    # OpenAscent Realms Configuration File
    # Last updated at revision 446 by Burlex
    #######################################################################
    /********************************************************************************
     * 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 = "ardentdawn.servegame.org"
                 Port = "8093"
                 Name = "Default Logon"
                 RealmCount = "1">
    #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
    # 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:
    #        Time zone the realm is in.
    #
    #    Population:
    #        (0 = low, 1 = medium, 2 = high)
    #
    #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
    <Realm1 Name = "Ardent Dawn"
    Address = "ardentdawn.servegame.org:8129" 
    Icon = "PVP"
    Population = "1.0"
    TimeZone = "1">

    Ascent World

    Code:
    #######################################################################
    # OpenAscent Configuration File
    # Last Update: : ascent-world.conf 309 2008-06-03 14:29:43Z tazjin $
    #######################################################################
    /********************************************************************************
     * 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 (#).                                         *
     ********************************************************************************/
    #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
    # Database Section
    #
    #   Database.Host      - The hostname that the database is located on
    #   Database.Username  - The username used for the mysql connection
    #   Database.Password  - The password used for the mysql connection
    #   Database.Name      - The database name
    #   Database.Port      - Port that MySQL listens on. Usually 3306.
    #   Database.Type      - Client to use. 1 = MySQL, 2 = PostgreSQL, 3 = SQLite (MySQL is stable, others are not)
    #
    #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
    <WorldDatabase Hostname = "ardentdawn.servegame.org" Username = "*****" Password = "*******" Name = "ascent" Port = "3306" Type = "1">
    <CharacterDatabase Hostname = "ardentdawn.servegame.org" Username = "*****" Password = "*****" Name = "logon" Port = "3306" Type = "1">
     
    #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
    # Listen Config
    #
    #    Host
    #        This is the address that the server will listen on.
    #        To listen on all addresses, set it to 0.0.0.0
    #        Default: 127.0.0.1 (localhost)
    #
    #    WorldServerPort
    #        This is the port that the world server listens on.
    #        It has to be the same as what is specified in the
    #        realms table in the LogonDatabase.
    #        Default: 8129
    #
    #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
    <Listen Host = "0.0.0.0"
            WorldServerPort = "8129">

  4. #4
    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)
    Can anyone log in? (except for u then ofcourse(can you, even?))
    and try Open Port Check Tool to test your ports

    ="ardentdawn.servegame.org"; // HOST for Logonserver database
    ="ardentdawn.servegame.org"; // HOST for Character database

    Shouldn't those be 127.0.0.1?
    Last edited by Aznex; 09-06-2008 at 04:29 PM.

  5. #5
    xilve's Avatar Member
    Reputation
    1
    Join Date
    Dec 2006
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I fixed my port forwarding. I'm not sure if anyone can log in. I need to find out if my host file is right though, can someone post what it should look like?

    EDIT: Now when everything is run, my website takes me to my router login. Still not sure if anyone can log in.
    Last edited by xilve; 09-06-2008 at 04:36 PM.

  6. #6
    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)
    Originally Posted by xilve View Post
    I fixed my port forwarding. I'm not sure if anyone can log in. I need to find out if my host file is right though, can someone post what it should look like?

    EDIT: Now when everything is run, my website takes me to my router login. Still not sure if anyone can log in.
    <WorldDatabase Hostname = "ardentdawn.servegame.org" Username = "*****" Password = "*******" Name = "ascent" Port = "3306" Type = "1">
    <CharacterDatabase Hostname = "ardentdawn.servegame.org" Username = "*****" Password = "*****" Name = "logon" Port = "3306" Type = "1">

    Hostnames should always be 127.0.0.1/24 or 127.0.0.1/36 or just 127.0.0.1(In all your config files ofcourse)

  7. #7
    xilve's Avatar Member
    Reputation
    1
    Join Date
    Dec 2006
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Unless of course I host it somewhere else correct?

    Also, why does my hostname (when I attempt to go to it) take me to my router?
    Last edited by xilve; 09-06-2008 at 04:41 PM.

  8. #8
    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)
    Originally Posted by xilve View Post
    Unless of course I host it somewhere else correct?
    exactly, but then I step back cause I have no clue on what u should fill in then

  9. #9
    xilve's Avatar Member
    Reputation
    1
    Join Date
    Dec 2006
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I would know how to do that, but I don't plan on doing it yet. So, can you help me with the website problem?

  10. #10
    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)
    Originally Posted by xilve View Post
    I would know how to do that, but I don't plan on doing it yet. So, can you help me with the website problem?
    Well except for filling in 127.0.0.1 as hosts(for now, since you host from home)
    and making sure your ports are open(which they are, right?) I won't be able to help you sorry

  11. #11
    xilve's Avatar Member
    Reputation
    1
    Join Date
    Dec 2006
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Having a port issue. 80 works, but 3724, 8093, 8129 and 3306 don't. I have MySQL running, as well as Logonserver, and World. Apache is on too, so my website should be up. But it's not, it leads me to my router.

  12. #12
    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)
    Originally Posted by xilve View Post
    Having a port issue. 80 works, but 3724, 8093, 8129 and 3306 don't. I have MySQL running, as well as Logonserver, and World. Apache is on too, so my website should be up. But it's not, it leads me to my router.
    I'm really not a pro at the website thing and the apache/wamp servers, but I remember when I tried it I had the same thing going on as you, and the solution on it was that I had a Wamp server installed and running, but afterwards Installed a new Apache thing so I had my old wamp server running, together with the newly installed Apache which resulted in the site not working.

    Should have the Apache icon showing in the bottom right corner of your screen, can reccomend u to mess around with it and see if u can find anything that's all I could think of, sorry

  13. #13
    xilve's Avatar Member
    Reputation
    1
    Join Date
    Dec 2006
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What about my ports?

  14. #14
    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)
    read some stuff from google or here on mmowned on how to forward your ports

Similar Threads

  1. Replies: 4
    Last Post: 10-19-2013, 12:44 PM
  2. LB Evo - nice tool, everything working - one question
    By Glotharg in forum WoW Bots Questions & Requests
    Replies: 2
    Last Post: 01-16-2012, 04:31 PM
  3. [MaNGOS] everything works! just one last question
    By beerent in forum WoW EMU Questions & Requests
    Replies: 4
    Last Post: 04-06-2010, 02:24 PM
  4. [HELP!] Scam Sucessful... But
    By Frantic in forum World of Warcraft General
    Replies: 15
    Last Post: 05-15-2007, 09:44 AM
  5. WSG Exploit? Fixed or already posted? Help me out on this one.
    By Yano in forum World of Warcraft Exploits
    Replies: 8
    Last Post: 11-28-2006, 08:00 PM
All times are GMT -5. The time now is 08:38 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search