Making your server live with an account creation page menu

User Tag List

Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 38
  1. #16
    Chidde's Avatar Member
    Reputation
    1
    Join Date
    Sep 2008
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in C:\xampp\htdocs\runner.php on line 16
    FAIL, try again

    What? ;/

    And in the runner file its right.. i think..:
    HTML Code:
    <html>
        <body>
            <?php
            error_reporting(E_ALL);
            $name = $_POST['username'];
            $pass = $_POST['password'];
            $flags=0;
            if(!empty($_POST['TBC'])){
                $flags+=8;
            }
            if(!empty($_POST['WotLK'])){
                $flags+=16;
            }
            mysql_connect("localhost","root","root");
            mysql_select_db("logondb");
            if(mysql_num_rows(mysql_query("SELECT * FROM `accounts` WHERE `login`='$name'"))>0){
                echo "UBER FAIL USERNAME TAKEN";
            }else{
                if(mysql_query("INSERT INTO accounts (login, password,flags) VALUES('$name', '$pass', '$flags' ) ")){
                    echo"SUPER COOL AWESOME WORKNESS";
                }else{
                    echo"FAIL, try again";
                }
            }
    
            ?>
        </body>
    </html>

    Making your server live with an account creation page
  2. #17
    nubblez's Avatar Member
    Reputation
    2
    Join Date
    Feb 2009
    Posts
    22
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Cool. Thanks for this!

  3. #18
    handofoberon's Avatar Member
    Reputation
    7
    Join Date
    Nov 2006
    Posts
    102
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can you tell me what to put in the entry fields to forward to any port for a belkinf4d9230-4
    Nubbzorz 4 Li4e =D

  4. #19
    coltrain7's Avatar Member
    Reputation
    41
    Join Date
    Mar 2008
    Posts
    60
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Good Guide! +rep for me!

  5. #20
    nubblez's Avatar Member
    Reputation
    2
    Join Date
    Feb 2009
    Posts
    22
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Chidde View Post
    Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in C:\xampp\htdocs\runner.php on line 16
    FAIL, try again

    What? ;/

    And in the runner file its right.. i think..:
    HTML Code:
    <html>
        <body>
            <?php
            error_reporting(E_ALL);
            $name = $_POST['username'];
            $pass = $_POST['password'];
            $flags=0;
            if(!empty($_POST['TBC'])){
                $flags+=8;
            }
            if(!empty($_POST['WotLK'])){
                $flags+=16;
            }
            mysql_connect("localhost","root","root");
            mysql_select_db("logondb");
            if(mysql_num_rows(mysql_query("SELECT * FROM `accounts` WHERE `login`='$name'"))>0){
                echo "UBER FAIL USERNAME TAKEN";
            }else{
                if(mysql_query("INSERT INTO accounts (login, password,flags) VALUES('$name', '$pass', '$flags' ) ")){
                    echo"SUPER COOL AWESOME WORKNESS";
                }else{
                    echo"FAIL, try again";
                }
            }
    
            ?>
        </body>
    </html>
    Getting same error. Anyone know?

  6. #21
    mercdragon's Avatar Member
    Reputation
    6
    Join Date
    Jan 2009
    Posts
    59
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    great guide worked great for me thanks

  7. #22
    [pwn]age's Avatar Member
    Reputation
    56
    Join Date
    Jul 2008
    Posts
    102
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thanks guys. glad you like it

  8. #23
    n00byhell's Avatar Member
    Reputation
    1
    Join Date
    Mar 2009
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hm i dont have internal IP ? some help ?

  9. #24
    steve063360's Avatar Member
    Reputation
    1
    Join Date
    Feb 2009
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hi,

    i was following this tutorial...

    now im stuck at the port forwarding part... ive found my router in the list and stuff and im following the instructions it gives... but in the one box im meant to put 4 numbers for the port but i can only put in a number of 0-255. Now as i cant type in the number im meant to how can i forward my ports??

    Please help as i really want to get my server public..

    EDIT:
    Originally Posted by n00byhell View Post
    hm i dont have internal IP ? some help ?
    Go to ww.whatismyip.com (with an extra W, i cant post links yet xD) THE BIG NUMBERS = your Internal IP! when you do the ipconfig thing and get your IPv4, thats your external IP
    Last edited by steve063360; 03-13-2009 at 02:00 PM.

  10. #25
    steve063360's Avatar Member
    Reputation
    1
    Join Date
    Feb 2009
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    can anyone help?

  11. #26
    steve063360's Avatar Member
    Reputation
    1
    Join Date
    Feb 2009
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    anyone at all??

  12. #27
    Abdullaah's Avatar Member
    Reputation
    13
    Join Date
    Mar 2009
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hey, nice guide!! +Rep!
    But im confused at 1 place, i didnt try the page yet, i will as soon as i reach home, but over here:
    Code:
            error_reporting(E_ALL);
            $name = $_POST['username'];
            $pass = $_POST['password'];
            $flags=0;
            if(!empty($_POST['TBC'])){
                $flags+=8;
            }
            if(!empty($_POST['WotLK'])){
                $flags+=16;
    It means, if we choose WOTLK the flag of your account would be 16 right? well, arent the flags for WOTLK 24? :O

  13. #28
    lightsky93's Avatar Member
    Reputation
    1
    Join Date
    Mar 2009
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Guys i have problems with this pls someone help, i cant port forward cause i cant enter my router you know 192.168.1.1 it asks me for user and pass i type Admin admin and its not working, and with Telekom Telekom (my isp provider) its working just there i dont have option to port forward and few weeks ago this thing with admin admin worked so can someone tell em whats the problem i have Huawei HG510!! kojot @ live.com -msn or answer me here.

  14. #29
    tompie66's Avatar Member
    Reputation
    1
    Join Date
    Oct 2007
    Posts
    17
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I dont really understand u say: "Open up the new document again", what one do you mean? Do you need 2 html files?, wich of the two do you mean..
    Please make screens!!

  15. #30
    Abstraction's Avatar Member
    Reputation
    32
    Join Date
    May 2008
    Posts
    472
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Where do I download XAMMP on the website?

Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. Make Your Server Public With Hamachi With An Account Creation Page
    By Xtinction in forum WoW EMU Guides & Tutorials
    Replies: 70
    Last Post: 09-14-2008, 08:48 AM
  2. How To Make Your Server Public With Out Hamachi Problem Solved
    By bomber1392 in forum WoW EMU Guides & Tutorials
    Replies: 7
    Last Post: 12-12-2007, 03:35 AM
  3. Easy Guide to making your server live. With sceenshots.
    By sadgonewild in forum WoW EMU Guides & Tutorials
    Replies: 32
    Last Post: 12-08-2007, 08:30 PM
  4. Making your server public with hamachi/and making server 2.2.X
    By IllidanX in forum WoW EMU Guides & Tutorials
    Replies: 22
    Last Post: 11-05-2007, 08:09 PM
  5. Make your server public with Hamachi
    By Hlini in forum WoW EMU Guides & Tutorials
    Replies: 17
    Last Post: 10-15-2007, 04:52 PM
All times are GMT -5. The time now is 01:31 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