[RELEASE]!extremeCMS V4(goes with woainioh's repack)

Page 1 of 4 1234 LastLast
Results 1 to 25 of 85
  1. #1
    Account Upgraded | Title Enabled! firepower12 is offline
    MemberRank
    Dec 2006 Join Date
    408Posts

    [RELEASE]!extremeCMS V4(goes with woainioh's repack)

    hey guys i thought it wouldbe cool to have a cms that
    goes alone with woainioh's repack.
    The repack was amazing, but what about a CMS ,
    so people can buy NX cash ?
    So i decided to make one.
    Its not the best , i am not web designer.
    I just thought it would be cool, this is my first release ever!
    here ar some pictures.
    -------------------------------------------------------
    http://aquate.us/u/untitle51.JPG
    -------------------------------------------------------
    http://aquate.us/u/untitle41.JPG
    -------------------------------------------------------
    http://aquate.us/u/untitle109.JPG
    -------------------------------------------------------
    To use this CMS you gotta edit
    -Config.php (edit the database info)
    -Config2.php (edit the database info)
    -forums.php (edit the link to ur forums)
    -Run the sql.
    Download Link
    --------
    http://www.mediafire.com/?r2a0hstlu9h
    ---------
    Enjoy :]

    V2 Updates: fixed forums/nxcash
    V3 Updates : aded advanced reg page (credit to Stars0fLight)
    V4 Updates : added guild ranking (GP point and capacity)
    --------------------
    Looking for devs to make AdminCP and much more features.
    --------------------
    To edit the logo/other pics just go to the images folder
    and overight logo or w/e pic u wan to replace :)


    Currently working on :
    -Admin Panel


    NEWEST CMS
    http://aquate.us/u/untitle16.JPG
    Last edited by firepower12; 19-06-08 at 04:34 AM.


  2. #2
    Proficient Member aZnLee is offline
    MemberRank
    May 2008 Join Date
    CALocation
    164Posts

    Re: [RELEASE]!extremeCMS (goes with woainioh's repack)

    Nice!

  3. #3
    Old Schooler Newton is offline
    MemberRank
    Jun 2008 Join Date
    Vancouver,BCLocation
    1,098Posts

    Re: [RELEASE]!extremeCMS (goes with woainioh's repack)

    Very nice ive been looking for one of these

  4. #4
    Apprentice kbycheese is offline
    MemberRank
    Apr 2008 Join Date
    9Posts

    Re: [RELEASE]!extremeCMS (goes with woainioh's repack)

    nice thank you

  5. #5
    Account Upgraded | Title Enabled! chocokirby is offline
    MemberRank
    Apr 2008 Join Date
    CC PloxLocation
    274Posts

    Re: [RELEASE]!extremeCMS (goes with woainioh's repack)

    Can i have some kind of demo?

  6. #6
    win CioNide is offline
    MemberRank
    Jun 2008 Join Date
    2,560Posts

    Re: [RELEASE]!extremeCMS (goes with woainioh's repack)

    It's ok. Thanks though :).

  7. #7
    Account Upgraded | Title Enabled! DeathEx is offline
    MemberRank
    Jan 2007 Join Date
    In bed with your momLocation
    408Posts

    Re: [RELEASE]!extremeCMS (goes with woainioh's repack)

    Demo first please?

  8. #8
    Apprentice waarschaap is offline
    MemberRank
    Sep 2007 Join Date
    8Posts

    Re: [RELEASE]!extremeCMS (goes with woainioh's repack)

    very nice =D

    but maybe u can code a admin panel for it =D


    demo : http://gamerz-ground.com/cms/

  9. #9
    Account Upgraded | Title Enabled! itzikd is offline
    MemberRank
    Apr 2008 Join Date
    207Posts

    Re: [RELEASE]!extremeCMS (goes with woainioh's repack)

    tnx bro really nice
    if its cms it means ihave admin panel?

  10. #10
    Account Upgraded | Title Enabled! firepower12 is offline
    MemberRank
    Dec 2006 Join Date
    408Posts

    Re: [RELEASE]!extremeCMS (goes with woainioh's repack)

    i just put some pics of it :D
    ehh sry its not have admin panel...
    what is admin panel ?

  11. #11
    Member snatchserver is offline
    MemberRank
    Jun 2008 Join Date
    51Posts

    Re: [RELEASE]!extremeCMS (goes with woainioh's repack)

    nice Web :)

    i'm testing wait

  12. #12
    Apprentice Sagi is offline
    MemberRank
    Jun 2008 Join Date
    17Posts

    Re: [RELEASE]!extremeCMS (goes with woainioh's repack)

    Hum..

    when im trying to register its tells me

    "Incorrect date value: '' for column 'birthday' at row 1"

    And when im buying NX from the site

    its Dosent take the money . but its give the nx.

    any fix for those? :P

  13. #13
    Valued Member voldermord is offline
    MemberRank
    Aug 2005 Join Date
    141Posts

    Re: [RELEASE]!extremeCMS (goes with woainioh's repack)

    Quote Originally Posted by Sagi View Post
    Hum..

    when im trying to register its tells me

    "Incorrect date value: '' for column 'birthday' at row 1"

    And when im buying NX from the site

    its Dosent take the money . but its give the nx.

    any fix for those? :P
    Fix.

    PHP Code:
    <!-- Main Content Start -->
    <div id="primarycontent">
            
                <?php
    // process the script only if the form has been submitted
    if (array_key_exists('reset'$_POST)) {
      
    // start the session
      
    include('config2.php');
      
    $username trim($_POST['username']);
      
    $password trim($_POST['password']);
      
    $username mysql_real_escape_string($username);
      
    $char trim($_POST['char']);
      
    $mesocheck mysql_query('SELECT * FROM meso FROM characters');
      
    $result mysql_query("SELECT meso, accountid FROM characters WHERE name = '$char' LIMIT 1");
      list(
    $meso$accountid) = mysql_fetch_row($result);

      
    $result mysql_query("SELECT id, password, salt FROM accounts WHERE name = '$username' LIMIT 1");
      list(
    $id$realpass$salt) = mysql_fetch_row($result);

      
    $sql "SELECT * FROM accounts WHERE name = '$username'";
      
    $result mysql_query($sql);
      
    $row mysql_fetch_assoc($result);
        
    if(
    $realpass == hash('sha512',$password.$salt) && $accountid == $id && $meso >= 100000000) {
         
    mysql_query("UPDATE accounts SET nxcash = nxcash + 30000 WHERE name = '$username' LIMIT 1");
         
    mysql_query("UPDATE characters SET meso = meso - 100000000 WHERE name = '$char' LIMIT 1");
         echo 
    "You have payed 100 mil from $char to get 30k NX for $username !";
    } else
         echo 
    "You do not have enough money or didn't put in the right information. (Make sure the character is from THAT account)";    }
      
    // if no match, destroy the session and prepare error message
      
    else {
        
    $message[] = 'Please Type Your Info Correctly..';
        }
    ?>
                
                <!-- Primary Content Start -->

              <div align="center"> <div class='welcome'>
                <div align="left"><br>
                Welcome to the NX Cash shop!</br>
                <br>
                100,000,000 mesos for 30,000 NX!</br> 
                <br>
                Make sure you are logged off during this process!</br> 
                <br>
                No refunds for your silly mistakes!</br>
                </div>
              </div> </div>
              <div align="center">
              <div class="display">
                <div align="left">
                  <?php
    if (isset($message)) {
      echo 
    '<ul>';
      foreach (
    $message as $item) {
        echo 
    "<li>$item</li>";
        }
      echo 
    '</ul>';
      }
    ?>
                  </div>
              </div>
                  <form id="form1" name="form1" method="post" action="">
                    <p align="left">&nbsp;</p>
                    <div align="left"></div>
                    <div align="left"></div>
                    <table width="32%" align="left" cellpadding="5" cellspacing="0">
                      <tr>
                        <td width="50%" align="right" class="list">Username :</td>
                        <td class="list"><input id="username" type="text" name="username" maxlength="12" /></td>
                      </tr>
                      <tr>
                        <td width="50%" align="right" class="list">Password :</td>
                        <td class="list"><input id="password" type="password" name="password" maxlength="20" /></td>
                      </tr>
                      <tr>
                        <td width="50%" align="right" class="list">Character paying 100 mil :</td>
                        <td class="list"><input id="char" type="text" name="char" maxlength="12" /></td>
                      </tr>
                      <tr>
                        <td align="right" colspan="2"><input id="reset" name="reset" type="submit" value="Buy 30k NX!" /></td>
                      </tr>
                    </table>
                    <p align="left">&nbsp;</p>
                    <p align="left">&nbsp;</p>
                  </form>
    </div>

                <!-- Primary Content End -->
        
                <!-- SideBar Include -->
                
                <?php include ($site_root_path 'includes/sidebar.php'); ?>
    <!-- Main Content End -->
    The mysql_query("UPDATE characters SET meso = meso - 100000000 WHERE name = '$char' LIMIT 1");

    My code is above in the quote. The code he gave used mesoS instead of meso. either use my code and tweak it, its same code essentially, but diff format as i use a different website. OR replace the line

    PHP Code:
     mysql_query("UPDATE characters SET mesos = mesos - 100000000 WHERE name = '$char' LIMIT 1"); 
    to

    PHP Code:
     mysql_query("UPDATE characters SET meso = meso - 100000000 WHERE name = '$char' LIMIT 1"); 
    Juz make sure u know what ur doing =)

  14. #14
    Apprentice Sagi is offline
    MemberRank
    Jun 2008 Join Date
    17Posts

    Re: [RELEASE]!extremeCMS (goes with woainioh's repack)

    Quote Originally Posted by voldermord View Post
    Fix.

    PHP Code:
    <!-- Main Content Start -->
    <div id="primarycontent">
            
                <?php
    // process the script only if the form has been submitted
    if (array_key_exists('reset'$_POST)) {
      
    // start the session
      
    include('config2.php');
      
    $username trim($_POST['username']);
      
    $password trim($_POST['password']);
      
    $username mysql_real_escape_string($username);
      
    $char trim($_POST['char']);
      
    $mesocheck mysql_query('SELECT * FROM meso FROM characters');
      
    $result mysql_query("SELECT meso, accountid FROM characters WHERE name = '$char' LIMIT 1");
      list(
    $meso$accountid) = mysql_fetch_row($result);

      
    $result mysql_query("SELECT id, password, salt FROM accounts WHERE name = '$username' LIMIT 1");
      list(
    $id$realpass$salt) = mysql_fetch_row($result);

      
    $sql "SELECT * FROM accounts WHERE name = '$username'";
      
    $result mysql_query($sql);
      
    $row mysql_fetch_assoc($result);
        
    if(
    $realpass == hash('sha512',$password.$salt) && $accountid == $id && $meso >= 100000000) {
         
    mysql_query("UPDATE accounts SET nxcash = nxcash + 30000 WHERE name = '$username' LIMIT 1");
         
    mysql_query("UPDATE characters SET meso = meso - 100000000 WHERE name = '$char' LIMIT 1");
         echo 
    "You have payed 100 mil from $char to get 30k NX for $username !";
    } else
         echo 
    "You do not have enough money or didn't put in the right information. (Make sure the character is from THAT account)";    }
      
    // if no match, destroy the session and prepare error message
      
    else {
        
    $message[] = 'Please Type Your Info Correctly..';
        }
    ?>
                
                <!-- Primary Content Start -->

              <div align="center"> <div class='welcome'>
                <div align="left"><br>
                Welcome to the NX Cash shop!</br>
                <br>
                100,000,000 mesos for 30,000 NX!</br> 
                <br>
                Make sure you are logged off during this process!</br> 
                <br>
                No refunds for your silly mistakes!</br>
                </div>
              </div> </div>
              <div align="center">
              <div class="display">
                <div align="left">
                  <?php
    if (isset($message)) {
      echo 
    '<ul>';
      foreach (
    $message as $item) {
        echo 
    "<li>$item</li>";
        }
      echo 
    '</ul>';
      }
    ?>
                  </div>
              </div>
                  <form id="form1" name="form1" method="post" action="">
                    <p align="left">&nbsp;</p>
                    <div align="left"></div>
                    <div align="left"></div>
                    <table width="32%" align="left" cellpadding="5" cellspacing="0">
                      <tr>
                        <td width="50%" align="right" class="list">Username :</td>
                        <td class="list"><input id="username" type="text" name="username" maxlength="12" /></td>
                      </tr>
                      <tr>
                        <td width="50%" align="right" class="list">Password :</td>
                        <td class="list"><input id="password" type="password" name="password" maxlength="20" /></td>
                      </tr>
                      <tr>
                        <td width="50%" align="right" class="list">Character paying 100 mil :</td>
                        <td class="list"><input id="char" type="text" name="char" maxlength="12" /></td>
                      </tr>
                      <tr>
                        <td align="right" colspan="2"><input id="reset" name="reset" type="submit" value="Buy 30k NX!" /></td>
                      </tr>
                    </table>
                    <p align="left">&nbsp;</p>
                    <p align="left">&nbsp;</p>
                  </form>
    </div>

                <!-- Primary Content End -->
        
                <!-- SideBar Include -->
                
                <?php include ($site_root_path 'includes/sidebar.php'); ?>
    <!-- Main Content End -->
    The mysql_query("UPDATE characters SET meso = meso - 100000000 WHERE name = '$char' LIMIT 1");

    My code is above in the quote. The code he gave used mesoS instead of meso. either use my code and tweak it, its same code essentially, but diff format as i use a different website. OR replace the line

    PHP Code:
     mysql_query("UPDATE characters SET mesos = mesos - 100000000 WHERE name = '$char' LIMIT 1"); 
    to

    PHP Code:
     mysql_query("UPDATE characters SET meso = meso - 100000000 WHERE name = '$char' LIMIT 1"); 
    Juz make sure u know what ur doing =)

    thanks its work :)

    but the register still got problem.

    "Incorrect date value: '' for column 'birthday' at row 1"

  15. #15
    Member Komano is offline
    MemberRank
    Dec 2007 Join Date
    67Posts

    Re: [RELEASE]!extremeCMS (goes with woainioh's repack)

    i tried, weird though, you should rename NxCash.php to nxcash.php , keep it in small letters, and rename forum to forums.php and when you register it doesnt register the date of birth in my database. still looking for more bugs.

  16. #16
    Enthusiast Pro-Surf is offline
    MemberRank
    Apr 2008 Join Date
    49Posts

    Re: [RELEASE]!extremeCMS (goes with woainioh's repack)

    Wow very nice dude im gonna use it ..
    but a lil request ..
    can u do 1 more nx button for 25k nx
    like
    buy 30k nx ! button
    add 1 more 25k nx !
    can you ? will be nice tnx :]

  17. #17
    Account Upgraded | Title Enabled! Reita is offline
    MemberRank
    Apr 2008 Join Date
    what are you stalking me ?Location
    250Posts

    Re: [RELEASE]!extremeCMS (goes with woainioh's repack)

    Hey firepower12 mind adding me in msn ? sean_nae@hotmail.com
    i have some important questions to ask you

  18. #18
    Account Upgraded | Title Enabled! irbrandonl is offline
    MemberRank
    Apr 2008 Join Date
    Ladies First?Location
    690Posts

    Re: [RELEASE]!extremeCMS (goes with woainioh's repack)

    I get this problem afta tryin to regerstir

    Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in C:\wamp\www\register_do.php on line 14

    No database selected

  19. #19
    Proficient Member damien1114 is offline
    MemberRank
    Jun 2008 Join Date
    152Posts

    Re: [RELEASE]!extremeCMS (goes with woainioh's repack)

    looks good i will use

    what repack is it for

  20. #20
    Account Upgraded | Title Enabled! Stars0fLight is offline
    MemberRank
    Apr 2008 Join Date
    src\net\sf\odinLocation
    240Posts

    Re: [RELEASE]!extremeCMS (goes with woainioh's repack)

    1st - NICEEE!! xD its awesome
    but but but but but
    i get same error with birthday.. ><

    For others - here's a temp. fix? Text box for now? xP
    register.php

    Quote Originally Posted by damien1114 View Post
    looks good i will use

    what repack is it for
    read the title of whole thread

  21. #21
    Account Upgraded | Title Enabled! firepower12 is offline
    MemberRank
    Dec 2006 Join Date
    408Posts

    Re: [RELEASE]!extremeCMS V2(goes with woainioh's repack)

    i got some minor updates.
    can somone help me make a GM panel ?

  22. #22
    Account Upgraded | Title Enabled! irbrandonl is offline
    MemberRank
    Apr 2008 Join Date
    Ladies First?Location
    690Posts

    Re: [RELEASE]!extremeCMS V2(goes with woainioh's repack)

    Quote Originally Posted by firepower12 View Post
    i got some minor updates.
    can somone help me make a GM panel ?
    Can u help me fix my problem? :/ Its posted already jus scroll up

  23. #23
    Account Upgraded | Title Enabled! Stars0fLight is offline
    MemberRank
    Apr 2008 Join Date
    src\net\sf\odinLocation
    240Posts

    Re: [RELEASE]!extremeCMS V2(goes with woainioh's repack)

    Quote Originally Posted by irbrandonl View Post
    Can u help me fix my problem? :/ Its posted already jus scroll up
    didja edit both config2.php and config.php ? xD

  24. #24
    Account Upgraded | Title Enabled! firepower12 is offline
    MemberRank
    Dec 2006 Join Date
    408Posts

    Re: [RELEASE]!extremeCMS (goes with woainioh's repack)

    Quote Originally Posted by irbrandonl View Post
    I get this problem afta tryin to regerstir

    Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in C:\wamp\www\register_do.php on line 14

    No database selected
    You didnt edit the Config.php and config2.php
    i wrote that on my post >_> u must edit 3 files lol

  25. #25
    Account Upgraded | Title Enabled! irbrandonl is offline
    MemberRank
    Apr 2008 Join Date
    Ladies First?Location
    690Posts

    Re: [RELEASE]!extremeCMS (goes with woainioh's repack)

    Quote Originally Posted by firepower12 View Post
    You didnt edit the Config.php and config2.php
    i wrote that on my post >_> u must edit 3 files lol
    Yes i did edit it and i got this after creating an account:


    = 1 ){ echo 'This username does already exists!'; exit(); }elseif($pass == ""){ echo 'No password filled in.'; exit(); }elseif($vpass != $pass){ echo 'The passwords did not match.'; exit(); }else{ $d = 'INSERT INTO accounts (name, password, email, birthday) VALUES ("'.$name.'", "'.$pass.'", "'.$email.'", "'.$dob.'")'; mysql_query($d) OR die (mysql_error()); echo 'Your account has been created, you can now login.'; ; } ?>


    And the account was not created.



Page 1 of 4 1234 LastLast

Advertisement