Amazing Website's and much more! menu

User Tag List

Page 1 of 5 12345 LastLast
Results 1 to 15 of 65
  1. #1
    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)

    Amazing Website's and much more!

    Hello MMowneders! Here are some downloads for websites and things you can add to your website!

    If you have any questions add me on msn [email protected] .

    Here are some Website Releases:

    WotLK Website

    Download:
    Filebeam - Free Fast File Hosting
    MEGAUPLOAD - The leading online storage and file delivery service

    Screenshots:





    Credits:Tsoforever2

    ArcEmu Account creation page

    Download:
    Filebeam - Free Fast File Hosting

    Screenshots:


    Credits: Made by: Bljardkungen

    Mangos account creation page

    Download:
    http://reggacc.php5.sk/download/reggacc_2.0.0.zip
    RapidShare: Easy Filehosting

    Demo:
    ReggAcc multirealm demo

    Screenshots:

    Index (Frontpage of the site)

    Register (After choosing the realm)


    Information:

    This site is for MaNGOS only!

    NEWEST FEATURE: PLAYERS CAN NOW CHANGE PASSWORDS

    Features:

    * Multirealm support
    o up to 9 realms
    * Layouts support
    o layout for tbc
    o layout for wotlk
    * Right panel:
    o ajax powered shoutbox
    o counter (new visits & registrations)
    * Left panel:
    o ajax powered online map
    o acount preview
    o statistics
    o pool
    * Center panel:
    o player preview
    o web based configuration
    o ajax powered online player list
    * Simple administration from web (no need to edit config file)

    GIP-Craft Site

    Download:
    Filebeam - Free Fast File Hosting

    Screenshots:


    Information:

    Site Features
    CuteNews - News System
    Server Status
    Registration
    WOTLK Theme


    INSTALLATIONs
    Upload the files to your website
    Open /registration
    edit config.php
    To add news in your webbrowser go to /cutenews and login with Username:admin and Password:admin

    Credits:
    CuteNews


    Blizz-like website

    Download:
    Filebeam - Free Fast File Hosting

    Screenshots:


    Information:
    *Admin panel- 100% works
    *Account Creation page-100% works
    *Forum-working on it
    *Themes-100& working
    *Online Players -100% works

    Installation:

    How to install:


    *First copy web files into wamp or xamp www folder
    *Whit sqlyog make administrator account "gm level = az" in your character database
    *Open firefox or ie and type "localhost" or whatever you set in xamp
    *You will get this picture, change red leters
    ImageShack - Hosting :: 72947566re1.jpg
    ImageShack - Hosting :: 93415898wf0.jpg
    Press continue!!! *Now go to your web folder/inc/account/and edit account.create.php with notepad..For account creation

    "you must be login with "admin account that you made" to go to admin panel

    Tutorial for it !
    Installation Tutorial


    1.Download the latest site revision using TortoiseSVN and use the URL : Code:
    https://abwows.svn.sourceforge.net/svnroot/abwows/
    .

    2. Import all the sql files found in the SQL folder in your antrix database.If your antrix database already has the email field under the accounts table use the sql that says Code:
    Code:
    accounts_that_dont_have_email_field.sql
    instead of Code:
    Code:
    accounts_that_have_email_field.sql
    .If it doesnt have the email field by default just use Code:
    Code:
    accounts_that_have_email_field.sql
    REMEMBER: Do not use both Code:
    Code:
    accounts_that_have_email_field.sql
    and Code:
    Code:
    accounts_that_dont_have_email_field.sql
    .

    *Note* To make sure nothing goes wrong enable register globals, short open tag and output buffering in the php settings.

    3.After you imported all the sqls required copy all the files to your webroot directory (default is apache\htdocs).
    If you want to be able to install the site from and external ip open your inc/install/page.install.php file and edit it at line 1 where it says Code:
    Code:
    $any=false;
    and change the Code:
    Code:
    false
    to Code:
    Code:
    true
    .As a security setting this false setting is recommended.This only allows the page to be installed from Code:
    Code:
    http://localhost/index.php
    4.Run Code:
    Code:
    http://localhost/index.php
    in your web browser and input your data until it works (might not work from try #1).

    5.When you get a succesful message display just rerun your index.php page to see the site.

    Remember: Edit `realmlist` and `realm_settings` table fields to suit your needs (this will display the online/offline server status.).And btw..User your Username properly when inputing the Site Owner field in the installation window becouse only that account can login see the administration Panel.

    Credits for tempelate:
    Speedy

    Credits For Tutorial:
    EldorGod

    Here are Somethings you can add to the website:

    Vote Box:

    Code:
    </head>
    <body>
    <?php
    $user="EDITMEPLEASE";
    $password="EDITMEPLEASE";
    $database="EDITMEPLEASE"; //Char+login DB
    
    $nochar=false;
    $voted=false;
    $disp = true;
    if(($_COOKIE['vote']) != '1')
    {
    if(!empty($_POST['name']))
    {
    mysql_connect(localhost,$user,$password);
    @mysql_select_db($database) or die( "Unable to select database");
    $name = strtolower(mysql_real_escape_string($_POST['name']));
    $today = date("mdHi");
    $query="SELECT * FROM characters WHERE name='$name' LIMIT 1";
    $result = mysql_query($query);
    if($row = mysql_fetch_array($result))
    {
    $guid = $row['guid'];
    $acct = $row['acct'];
    $res = mysql_query("SELECT * FROM votewatch WHERE acct='$acct' LIMIT 1");
    if($r2 = mysql_fetch_array($res))
    {
    $ct = $r2['ctime'];
    if($today-$ct < 1200)
    {
    $disp = false;
    mysql_close();
    return;
    }
    else
    {
    mysql_query("DELETE FROM votewatch WHERE acct='$acct' LIMIT 1");
    }
    }
    $reward = mysql_real_escape_string($_POST['reward']);
    if($reward == 0)
    {
    mysql_query("INSERT INTO mailbox_insert_queue(sender_guid, receiver_guid, subject, body, stationary, money, item_id, item_stack) VALUES ($guid, 
    
    $guid, 'Thank you for voting!', 'Have this item as a reward', 0, 1000000, 0, 1)");
    }
    else
    {
    mysql_query("INSERT INTO mailbox_insert_queue(sender_guid, receiver_guid, subject, body, stationary, money, item_id, item_stack) VALUES ($guid, 
    
    $guid, 'Thank you for voting!', 'Have this item as a reward', 0, 0, $reward, 1)");
    }
    mysql_query("INSERT INTO votewatch(acct, ctime) VALUES($acct, $today)");
    $voted = true;
    }
    else
    {
    $nochar = true;
    }
    mysql_close();
    }
    }
    else
    {
    $disp = false;
    }
    
    ?>
    <div id='container' style='-moz-user-select: none; -khtml-user-select: none; user-select: none; cursor:default; padding-bottom:5px; width:320px; 
    
    border: 4px double red; position: absolute; top:20px; left:20px; background-color:black; color:white;'>
    <div id='header' style='font-family: Arial; margin-bottom: 0.5em; border-bottom: 1px solid red; text-align: center; background-color:gray; 
    
    color:#ffffff'>
    Please Vote for World of Arshak to help us Grow!
    <span align='right' style='position:absolute; left: 305px; text-align: right;'>
    <a href='javascript:void();' style='font-size:10px; color:white; text-decoration:none;' onclick='javascript:document.getElementById("conta 
    
    iner").style.display="none";'>
    [X]
    </a>
    </span>
    </div>
    <div id='text' style='padding: 5px; padding-left: 7px; font-size: 12px; border-bottom: 1px solid red;'>
    Voting for our server helps us grow and evolve,
    and eventually become better than before.
    You can vote once every 12 hours, and you'll get a reward for doing so!
    </div>
    <form style='text-align: center; margin-bottom: 2px; margin-top: 5px;' method='post' action='http://www.xtremetop100.com/in.php?
    
    site=1132260145'>
    <div style='font-size: 12px; valign:center;'>
    Character Name:&nbsp;&nbsp;
    
    <input type='text' name='name' style='font-size: 12px; width: 80px; background-color: black; color: white; border: 1px solid red;' />
    <input type='submit' style='font-size: 12px; position:relative; top:1px; color:white; height: 17px; border:1px solid red; background-
    
    color:black;' value='Vote!' />
    </div>
    <div style='font-size: 12px; valign:center; margin-top: 5px; padding-top: 3px;'>
    Choose a reward:&nbsp;&nbsp;
    <select name='reward' style='background-color: black; color: white; font-family: Arial; font-size: 12px; border: 1px solid red; height: 17px; 
    
    font-size: 10px;'>
    <option value='0'>100 Gold</option>
    <option value='27498'>Vote Point</option>
    
    </select>
    </div>
    <?php
    As i find more ill add more:

    Credits to all listed above and me for finding them!
    Last edited by coltrain7; 01-28-2009 at 02:43 PM.

    Amazing Website's and much more!
  2. #2
    Matt's Avatar Legendary Authenticator enabled
    Reputation
    633
    Join Date
    Feb 2006
    Posts
    2,996
    Thanks G/R
    2/20
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    very cool share.

  3. #3
    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)
    Originally Posted by Matt View Post
    very cool share.
    Thanks took me a while!

  4. #4
    Link_S's Avatar Member
    Reputation
    125
    Join Date
    Dec 2008
    Posts
    293
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    this is nice, seems hard to , +Rep

  5. #5
    Cradin's Avatar Member
    Reputation
    64
    Join Date
    Jun 2008
    Posts
    243
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice Job +REP

  6. #6
    f1racer328's Avatar Member
    Reputation
    8
    Join Date
    Apr 2008
    Posts
    22
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thats pretty much just ripped off of blizz

  7. #7
    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)
    Originally Posted by f1racer328 View Post
    Thats pretty much just ripped off of blizz
    What the first Website?

  8. #8
    svedin's Avatar Contributor
    Reputation
    124
    Join Date
    Jun 2008
    Posts
    557
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice work ^^ :P

  9. #9
    chocho55's Avatar Member
    Reputation
    1
    Join Date
    Jan 2009
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice!! Good job!

  10. #10
    Troys's Avatar Contributor
    Reputation
    122
    Join Date
    Oct 2006
    Posts
    601
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Gewd post +rep mate
    Pals 4 Life

  11. #11
    DBag4Life69's Avatar Member
    Reputation
    1
    Join Date
    Nov 2008
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Dude! OMG. I love you!!
    I have been looking for good websites to use, and OMG! HELLA +Rep

  12. #12
    Rickpwns's Avatar Member Authenticator enabled
    Reputation
    2
    Join Date
    Jan 2009
    Posts
    23
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    -----deleted--------
    Last edited by Rickpwns; 03-14-2022 at 10:05 AM.

  13. #13
    knaur's Avatar Elite User
    Reputation
    400
    Join Date
    Nov 2007
    Posts
    634
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Rickpwns View Post
    Cool you fully leeched this, without Giving Credits, And Even leeched The TUT? nice done lolz
    Are you a ****ing retard leecher, Rickpwns???
    learn to read before open your leeching mouth...

    coltrain7 gave all credits all the way down,
    and even got good coments from mmowned admin....

    and +4 rep from me to coltrain7
    Last edited by knaur; 01-30-2009 at 01:05 PM.
    ------------------------------------------------------
    Knaur - Founder of The Norwegian Elite Team

  14. #14
    Mango Jerry's Avatar Banned
    Reputation
    192
    Join Date
    Jan 2008
    Posts
    1,244
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This Release is made by the Thread Maker (Author).
    No: Copy, Paste.

  15. #15
    Sounddead's Avatar Contributor
    Reputation
    160
    Join Date
    Sep 2007
    Posts
    1,126
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Cool you fully leeched this, without Giving Credits, And Even leeched The TUT? nice done lolz
    I like making myself sound stupid aswell, good job

    Coltrain, this is an awesome share. I'm sure you'll help a bunch of people.

    +rep x2

    I live in a shoe

Page 1 of 5 12345 LastLast

Similar Threads

  1. [Selling] Amazing Bnet account with 5 WoW licenses +Diablo 3 Vanilla +Rare Mounts and Much More
    By OnehitB in forum WoW-US Account Buy Sell Trade
    Replies: 1
    Last Post: 09-10-2015, 08:02 PM
  2. [Selling] NA★AMAZING Account! RED CARD Katarina★Urf The Manatee★Red Baron Corki★and much MORE!
    By Poll in forum League of Legends Buy Sell Trade
    Replies: 0
    Last Post: 09-29-2013, 10:37 AM
  3. WOTLK server CUSTOM T12 NEW INSTANCES MALL AND MUCH MORE
    By Energizer Rabbit in forum WoW EMU Guides & Tutorials
    Replies: 3
    Last Post: 09-28-2008, 05:40 PM
  4. Replies: 51
    Last Post: 05-13-2008, 06:43 PM
All times are GMT -5. The time now is 06:24 AM. 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