[Request] Website for 1.12 menu

User Tag List

Results 1 to 14 of 14
  1. #1
    dee66's Avatar Active Member
    Reputation
    16
    Join Date
    Oct 2011
    Posts
    45
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Request] Website for 1.12

    I need a website for wamp, for 1.12 maybe with a forum section and news would be greatly appreciated, and also

    i gotta to say thanks alot guy's lol for helping me out alot this forum been using it for years owned ftw

    anyways thanks guy's

    [Request] Website for 1.12
  2. #2
    dee66's Avatar Active Member
    Reputation
    16
    Join Date
    Oct 2011
    Posts
    45
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Looking for help to set up a 1.12 mangos website lol seem's like nothing works went thru about 60 pages yesterday tried about 10 of them 1 worked but it's the offical blizzard website that'sjsut bad news lol anyways would be great if someone could shoot me in the right direction or have one simple 1.12 mangos website account register page for me

  3. #3
    Harambeqt's Avatar Elite User CoreCoins Purchaser
    Reputation
    333
    Join Date
    Mar 2010
    Posts
    1,206
    Thanks G/R
    9/29
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    A simple reg page or a full cms?
    --
    btw: Bumpng does not help since your thread(s) are already at the top, so edit your old post instead.
    --
    Support the #1 WoW Emulator:
    http://arcemu.org/
    https://github.com/arcemu/arcemu
    - - -

  4. #4
    dee66's Avatar Active Member
    Reputation
    16
    Join Date
    Oct 2011
    Posts
    45
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ok sorry about the bump really just something to create accounts or if u got a cms that works with it please let me know lol i would love it been looking and lots of them been expired so can't get my hands on one i figured out everything else lol

    but if u got a few of them i would love to download them all to test and soon make my own post about how to do all this haha becuz dang some stuff is confusing and i could make it retard friendly hahaa
    Last edited by dee66; 05-21-2013 at 12:51 PM.

  5. #5
    Harambeqt's Avatar Elite User CoreCoins Purchaser
    Reputation
    333
    Join Date
    Mar 2010
    Posts
    1,206
    Thanks G/R
    9/29
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Link@oregoncore repo: https://bitbucket.org/oregon/oregonc...mple/index.php
    Pastebin: [PHP] OregonCore Regpage - Pastebin.com

    Save as index.php, edit the config at the top of the page and go.

    Code:
    <?php// Configuration.// Realm database.$r_db = "realmd";// IP (and port).$ip = "127.0.0.1:3306";// Username.$user = "oregon";// Password.$pass = "oregon";// Site title.$title = "Registration Form";$title2 = "Some Server";// End config.$page = '<?xml version="1.0" encoding="utf-8" ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head><title>' . $title . '</title></head><body style="background-color:black;color:yellow;font-family:verdana;"><form method="post" action="' . $_SERVER["SCRIPT_NAME"] . '"><p style="text-align:center;"><strong>' . $title2 . ' - ' . $title . '</strong><br /><br /><br />Username:<br /><input name="username" type="text" maxlength="14" /><br />Password:<br /><input name="password" type="password" maxlength="12" /><br />Email:<br /><input name="email" type="text" maxlength="50" /><br /><input name="tbc" type="checkbox" checked="checked" /> TBC<br /><br /><br /><button type="submit">Submit</button></p></form></body></html>';function error_s ($text) {	echo("<p style=\"background-color:black;color:yellow;font-family:verdana;\">" . $text);	echo("<br /><br /><a style=\"color:orange;\" href=\"" . $_SERVER["SCRIPT_NAME"] . "\">Go back...</a></p>");};$user_chars = "#[^a-zA-Z0-9_\-]#";$email_chars = "/^[^0-9][A-z0-9_]+([.][A-z0-9_]+)*[@][A-z0-9_]+([.][A-z0-9_]+)*[.][A-z]{2,4}$/";$con = @mysql_connect($ip, $user, $pass);if (!$con) {	error_s("Unable to connect to database: " . mysql_error());};if (!empty($_POST)) {        if ((empty($_POST["username"]))||(empty($_POST["password"]))||(empty($_POST["email"]))||(empty($_POST["tbc"])) ) {                error_s("You did not enter all the required information.");				exit();        } else {                $username = strtoupper($_POST["username"]);                $password = strtoupper($_POST["password"]);                $email = strtoupper($_POST["email"]);                if (strlen($username) < 5) {                        error_s("Username too short.");                        exit();                };                if (strlen($username) > 14) {                        error_s("Username too long.");                        exit();                };                if (strlen($password) < 8) {                        error_s("Password too short.");                        exit();                };                if (strlen($password) > 12) {                        error_s("Password too long.");                        exit();                };                if (strlen($email) < 15) {                        error_s("Email was too short.");                        exit();                };				if (strlen($email) > 50) {                        error_s("Email was too long.");                        exit();                };                if (preg_match($user_chars,$username)) {                        error_s("Username contained illegal characters.");                        exit();                };                if (preg_match($user_chars,$password)) {                        error_s("Password contained illegal characters.");                        exit();                };                if (!preg_match($email_chars,$email)) {                        error_s("Email was in an incorrect format.");                        exit();                };                if ($_POST['tbc'] != "on") {                        $tbc = "0";                } else {                        $tbc = "1";                };                $username = mysql_real_escape_string($username);                $password = mysql_real_escape_string($password);                $email = mysql_real_escape_string($email);                $qry = @mysql_query("select username from " . mysql_real_escape_string($r_db) . ".account where username = '" . $username . "'", $con);				if (!$qry) {					error_s("Error querying database: " . mysql_error());				};                if ($existing_username = mysql_fetch_assoc($qry)) {                        foreach ($existing_username as $key => $value) {                                $existing_username = $value;                        };                };                $existing_username = strtoupper($existing_username);                if ($existing_username == strtoupper($_POST['username'])) {                        error_s("That username is already taken.");                        exit();                };				unset($qry);                $qry = @mysql_query("select email from " . mysql_real_escape_string($r_db) . ".account where email = '" . $email . "'", $con);				if (!$qry) {					error_s("Error querying database: " . mysql_error());				};                if ($existing_email = mysql_fetch_assoc($qry)) {                        foreach ($existing_email as $key => $value) {                                $existing_email = $value;                        };                };                if ($existing_email == $_POST['email']) {                        error_s("That email is already in use.");                        exit();                };				unset($qry);                $sha_pass_hash = sha1(strtoupper($username) . ":" . strtoupper($password));                $register_sql = "insert into " . mysql_real_escape_string($r_db) . ".account (username, sha_pass_hash, email, expansion) values (upper('" . $username . "'),'" . $sha_pass_hash . "','" . $email . "','" . $tbc . "')";                $qry = @mysql_query($register_sql, $con);				if (!$qry) {					error_s("Error creating account: " . mysql_error());				};                echo("Account successfully created.");				exit();        };} else {        echo($page);};?>
    Support the #1 WoW Emulator:
    http://arcemu.org/
    https://github.com/arcemu/arcemu
    - - -

  6. #6
    dee66's Avatar Active Member
    Reputation
    16
    Join Date
    Oct 2011
    Posts
    45
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    do you have a full cms like you were saying maybe with just account creation and forums? and some pictures idk that ones plan and says tbc or w/e

  7. #7
    Harambeqt's Avatar Elite User CoreCoins Purchaser
    Reputation
    333
    Join Date
    Mar 2010
    Posts
    1,206
    Thanks G/R
    9/29
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Same db structure on 1.12 and 2.4.3. Just download "MyBB" and install and you have a forum aswell.
    Support the #1 WoW Emulator:
    http://arcemu.org/
    https://github.com/arcemu/arcemu
    - - -

  8. #8
    dee66's Avatar Active Member
    Reputation
    16
    Join Date
    Oct 2011
    Posts
    45
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    how does mybb work and how do i create a forum? lol sorry for all the questions my man

  9. #9
    Harambeqt's Avatar Elite User CoreCoins Purchaser
    Reputation
    333
    Join Date
    Mar 2010
    Posts
    1,206
    Thanks G/R
    9/29
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Support the #1 WoW Emulator:
    http://arcemu.org/
    https://github.com/arcemu/arcemu
    - - -

  10. #10
    dee66's Avatar Active Member
    Reputation
    16
    Join Date
    Oct 2011
    Posts
    45
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Okay now i'm having a problem i thought my server is public lol but i guess not or website but on my router says port 80 is allowed lol and i tried to enter the server ip to WoW status says server has to be online to be added xD

  11. #11
    dee66's Avatar Active Member
    Reputation
    16
    Join Date
    Oct 2011
    Posts
    45
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    lol ports are all open website isn't public but server is umm what im i doing wrong -_-

  12. #12
    Harambeqt's Avatar Elite User CoreCoins Purchaser
    Reputation
    333
    Join Date
    Mar 2010
    Posts
    1,206
    Thanks G/R
    9/29
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Close windoze firewall or any other firewall you have.
    Support the #1 WoW Emulator:
    http://arcemu.org/
    https://github.com/arcemu/arcemu
    - - -

  13. #13
    dee66's Avatar Active Member
    Reputation
    16
    Join Date
    Oct 2011
    Posts
    45
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by AfterDawn View Post
    Close windoze firewall or any other firewall you have.
    Yeah i did i forwarded ports probally turned off all firewalls and put my computer in dmz mode lol which is dangerous for me
    but i got the solved it's not to do with anything it's my internet provider appreantly "Telus" blocks port 80 for people to connect to website because its hosting they want you want buy the bigger internet package which is 100 dollars a month just for internet but solved my friend i appreciated all your guy's help was amazing but it wont work intill i upgrade which hopefully sometime next month
    i will be posting my own stuff now sense ive learned most of it im going to do a whole 1.12.x thing sense it's hard to find websites and you gave me it and everything im put credits of course <3

    thanks guy's

  14. #14
    Harambeqt's Avatar Elite User CoreCoins Purchaser
    Reputation
    333
    Join Date
    Mar 2010
    Posts
    1,206
    Thanks G/R
    9/29
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by dee66 View Post
    Yeah i did i forwarded ports probally turned off all firewalls and put my computer in dmz mode lol which is dangerous for me
    but i got the solved it's not to do with anything it's my internet provider appreantly "Telus" blocks port 80 for people to connect to website because its hosting they want you want buy the bigger internet package which is 100 dollars a month just for internet but solved my friend i appreciated all your guy's help was amazing but it wont work intill i upgrade which hopefully sometime next month
    i will be posting my own stuff now sense ive learned most of it im going to do a whole 1.12.x thing sense it's hard to find websites and you gave me it and everything im put credits of course <3

    thanks guy's
    Credits=Oregoncore, for the website. I don't mind if you remove it tho
    Support the #1 WoW Emulator:
    http://arcemu.org/
    https://github.com/arcemu/arcemu
    - - -

Similar Threads

  1. [REQUEST] Banner for my Website!
    By Mikmas in forum Art & Graphic Design
    Replies: 0
    Last Post: 06-29-2008, 02:48 PM
  2. [Request] Banner for Website
    By Ease in forum Art & Graphic Design
    Replies: 2
    Last Post: 04-16-2008, 06:28 PM
  3. [request] logo for website
    By kreven in forum Art & Graphic Design
    Replies: 2
    Last Post: 02-19-2008, 10:04 AM
  4. [REQUEST] Host for a Server+website
    By EmiloZ in forum World of Warcraft Emulator Servers
    Replies: 3
    Last Post: 02-14-2008, 07:37 AM
  5. [Request] Logo For Website
    By Xcynic in forum Art & Graphic Design
    Replies: 4
    Last Post: 02-10-2008, 06:19 AM
All times are GMT -5. The time now is 05:33 AM. 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