Welcome to the RaGEZONE - MMORPG development forums.

uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]

This is a discussion on uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix] within the Habbo Releases forums, part of the Habbo Hotel category; Herro, this is a re-release; Edit of ( http://forum.ragezone.com/f353/zcms-...secure-781429/ ). In my words a more safer release and edit. All-ready ...

LyncusMU

View Poll Results: Do you like this Release CMS?

Voters
131. You may not vote on this poll
  • Yes

    101 77.10%
  • No

    30 22.90%
Page 1 of 18 12345678911 ... LastLast
Results 1 to 15 of 257
  1. #1
    Custom User Title
    Rank
    Alpha Member
    Join Date
    Jun 2010
    Location
    地下鉄
    Posts
    2,515
    Liked
    392

    config uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]

    Tabo Hotel
    Herro, this is a re-release; Edit of
    (http://forum.ragezone.com/f353/zcms-...secure-781429/). In my words a more safer release and edit.

    All-ready known and added Features included:

    • Change Password

    • Set friend requests on/off

    • Redeem gold bars by the hundreds on the site rather than manually on the client

    • Fully functioning housekeeping

    • Exploit secured , as far as Jonty knew.


    Those we're some of the features, to name a few.

    What Iv'e Fixed in this edit, is;

    Let's start off with exploit's.

    • Filtered the avatar name exploit FROM REGISTER.PHP

    • Filtered password detail for Housekeeping login page.

    • Took out motto Exploit

    • Remove unwanted pages etc.

    • Removed Tag exploit with some help from Nominal


    Fixes via the Database:

    I managed to

    • Fixed & Optimized & Updated database, fixed and added lost columns that were needed & missing due to Jonty's mistakes.


    That's all the database really needed.

    Fixes via CMS:

    • adding trade enabled on me.php

    • fixed sign out glitch

    • Added Auto Webbuild works 100% (Tested)

    • Cleaned some Housekeeping files

    • Added a new X-mas-Index

    • CODED BADGESHOP TO WORK W/CREDITS & NOT POINTS! AS THEY WE'RE SET TO..

    • Added new ZapASE Housekeeping Style


    That's all I basically did to stabilize this edit a bit more, nothing much. P.S; if you find anything missing or exploitable i'll try and fix it to the best of my knowledge

    Ok let's get started.
    After you setup your retro make sure, to run these very important codes!

    PHP Code:
    ALTER TABLE  `usersADD  `forumnameVARCHAR50 NOT NULL AFTER  `expert`
    ALTER TABLE  `usersADD  `expertVARCHAR50 NOT NULL AFTER  `vip
    PHP Code:
    TRUNCATE TABLE  `site_cron
    The codes basically fix register error most of you have been getting and Truncates site_cron table for cms to actually work 100%.

    Next add this code:

    PHP Code:
    --
    SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
    SET time_zone "+00:00";
    --
    -- 
    Table structure for table `site_config`
    --

    CREATE TABLE IF NOT EXISTS `site_config` (
      `
    maintenanceenum('0','1'NOT NULL DEFAULT '0',
      `
    web_buildvarchar(255NOT NULL
    ENGINE=MyISAM DEFAULT CHARSET=latin1;

    -- --------------------------------------------------------

    --
    -- 
    Table structure for table `site_cron`
    --

    CREATE TABLE IF NOT EXISTS `site_cron` (
      `
    idint(11NOT NULL AUTO_INCREMENT,
      `
    prioint(11NOT NULL DEFAULT '5',
      `
    enabledenum('0','1'NOT NULL DEFAULT '1',
      `
    scriptfilevarchar(50NOT NULL,
      `
    last_execint(11NOT NULL,
      `
    exec_everyint(11NOT NULL,
      
    PRIMARY KEY (`id`)
    ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=;

    -- --------------------------------------------------------

    --
    -- 
    Table structure for table `site_hotcampaigns`
    --

    CREATE TABLE IF NOT EXISTS `site_hotcampaigns` (
      `
    idint(11NOT NULL AUTO_INCREMENT,
      `
    order_idint(11NOT NULL DEFAULT '1',
      `
    enabledenum('0','1'NOT NULL DEFAULT '1',
      `
    IMG_urltext NOT NULL,
      `
    captiontext NOT NULL,
      `
    descrtext NOT NULL,
      `
    urltext NOT NULL,
      
    PRIMARY KEY (`id`)
    ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=;

    -- --------------------------------------------------------

    --
    -- 
    Table structure for table `site_minimail`
    --

    CREATE TABLE IF NOT EXISTS `site_minimail` (
      `
    idint(10unsigned NOT NULL AUTO_INCREMENT,
      `
    sender_idint(10unsigned NOT NULL,
      `
    receiver_idint(10unsigned NOT NULL,
      `
    folderenum('inbox','sent','trash'NOT NULL DEFAULT 'inbox',
      `
    is_readenum('0','1'NOT NULL DEFAULT '0',
      `
    subjectvarchar(120NOT NULL,
      `
    datevarchar(120NOT NULL,
      `
    isodatevarchar(120NOT NULL,
      `
    timestampint(11NOT NULL,
      `
    bodytext NOT NULL,
      
    PRIMARY KEY (`id`)
    ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=7075 ;

    -- --------------------------------------------------------

    --
    -- 
    Table structure for table `site_navi`
    --

    CREATE TABLE IF NOT EXISTS `site_navi` (
      `
    idint(10unsigned NOT NULL AUTO_INCREMENT,
      `
    parent_idint(10unsigned NOT NULL DEFAULT '0',
      `
    order_idint(11NOT NULL,
      `
    captiontext NOT NULL,
      `
    classtext NOT NULL,
      `
    urltext NOT NULL,
      `
    visibilityenum('0','1','2','3'NOT NULL COMMENT '0 = Never, 1 = Always, 2 = Logged in only, 3 = Guests only',
      
    PRIMARY KEY (`id`),
      
    KEY `parent_id` (`parent_id`)
    ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=22 ;

    -- --------------------------------------------------------

    --
    -- 
    Table structure for table `site_news`
    --

    CREATE TABLE IF NOT EXISTS `site_news` (
      `
    idint(10unsigned NOT NULL AUTO_INCREMENT,
      `
    seo_linkvarchar(120NOT NULL DEFAULT 'news-article',
      `
    titletext NOT NULL,
      `
    category_idint(10unsigned NOT NULL DEFAULT '1',
      `
    topstory_IMGtext NOT NULL,
      `
    bodytext NOT NULL,
      `
    snippettext NOT NULL,
      `
    datestrvarchar(50NOT NULL,
      `
    timestampint(11NOT NULL,
      
    PRIMARY KEY (`id`)
    ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=35 ;

    -- --------------------------------------------------------

    --
    -- 
    Table structure for table `site_news_categories`
    --

    CREATE TABLE IF NOT EXISTS `site_news_categories` (
      `
    idint(10unsigned NOT NULL AUTO_INCREMENT,
      `
    captiontext NOT NULL,
      
    PRIMARY KEY (`id`)
    ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=;

    -- --------------------------------------------------------

    --
    -- 
    Table structure for table `site_news_comments`
    --

    CREATE TABLE IF NOT EXISTS `site_news_comments` (
      `
    idint(11NOT NULL AUTO_INCREMENT,
      `
    articleint(11NOT NULL,
      `
    useridint(11NOT NULL,
      `
    commentvarchar(500NOT NULL,
      `
    posted_onvarchar(150NOT NULL DEFAULT '',
      
    PRIMARY KEY (`id`)
    ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=1525 
    If any code is not working just download database HERE and everything should work 100%

    For badgeshop, just edit badge prices and badge code's in Database, Iv'e coded it 2 work with Credits and not points as I don't understand how Points work but enway Yeah..

    A Few IMGs:





















    Well that's it for now, I maybe updating this, not sure yet but if you need any help with anything consisting to this cms feel free to ask below. (READ the README.txt)

    DOWNLOAD

    Le' Credits!

    Meth0d: 50%
    Jonty: 40%
    Subway: 10%

    Anything custom or w/e you will have to add yourself, just a edit of it nothing much
    Last edited by Subway; 20-12-11 at 04:32 PM.

  2. HostKey.com: Unmetered Dedicated servers in the Netherlands
  3. #2
    Alpha
    Rank
    Member
    Join Date
    Dec 2011
    Posts
    134
    Liked
    39

    Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]

    You got my vote :) NICE 9.8/10

  4. #3
    PHP, HTML5, CSS3, JS, C#
    Rank
    Alpha Member
    Join Date
    Jun 2010
    Location
    The Netherlands
    Posts
    1,814
    Liked
    1013

    Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]

    Looks like my admin login...


    But looks nice didn't view the source yet

  5. #4
    Custom User Title
    Rank
    Alpha Member
    Join Date
    Jun 2010
    Location
    地下鉄
    Posts
    2,515
    Liked
    392

    Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]

    Do you mean Index or Housekeeping? I didn't make any of them, just added them in thought there we're cooler than the previous version

  6. #5
    Now 35% cooler!
    Rank
    Alpha Member
    Join Date
    Oct 2008
    Location
    United Kingdom
    Posts
    2,071
    Liked
    353

    Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]

    So hawt.

  7. #6
    PHP, HTML5, CSS3, JS, C#
    Rank
    Alpha Member
    Join Date
    Jun 2010
    Location
    The Netherlands
    Posts
    1,814
    Liked
    1013

    Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]

    Quote Originally Posted by Subway View Post
    Do you mean Index or Housekeeping? I didn't make any of them, just added them in thought there we're cooler than the previous version
    http://forum.ragezone.com/f353/uberc...egecms-748143/

    And, Also can you upload a version without swfs ;/
    It's annoying....

  8. #7
    Custom User Title
    Rank
    Alpha Member
    Join Date
    Jun 2010
    Location
    地下鉄
    Posts
    2,515
    Liked
    392

    Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]

    This doesn't have swf's init^ just badge directory, for badgeshop.
    And dunno iLost made the style for Housekeeping.

  9. #8
    Newbie
    Rank
    Newbie
    Join Date
    Nov 2011
    Posts
    6
    Liked
    0

    Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]

    I like this one!

    Uhm, database is not working?

  10. #9
    Custom User Title
    Rank
    Alpha Member
    Join Date
    Jun 2010
    Location
    地下鉄
    Posts
    2,515
    Liked
    392

    Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]

    Works fine for me, did you edit it from test to w.e your db is named?

  11. #10
    Look at me now!
    Rank
    Member +
    Join Date
    Apr 2010
    Location
    Hablow
    Posts
    1,174
    Liked
    127

    Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]

    This looks very very nice! I'll try it out tomorrow for sure :D

    10/10. I always wanted a working zCMS.

  12. #11
    Newbie
    Rank
    Newbie
    Join Date
    Nov 2011
    Posts
    6
    Liked
    0

    Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]


  13. #12
    Custom User Title
    Rank
    Alpha Member
    Join Date
    Jun 2010
    Location
    地下鉄
    Posts
    2,515
    Liked
    392

    Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]

    Remove the Ach_code then or use this: uber-phoenx2 (12).sql

    and execute codes in thread^ and add this code for badge shop :

    PHP Code:
    /*
    Navicat MySQL Data Transfer

    Source Server         : localhost
    Source Server Version : 50511
    Source Host           : 10.4.28.54:41752
    Source Database       : test

    Target Server Type    : MYSQL
    Target Server Version : 50511
    File Encoding         : 65001

    Date: 2011-04-12 23:51:13
    */

    SET FOREIGN_KEY_CHECKS=0;

    -- ----------------------------
    -- 
    Table structure for `badge_shop`
    -- ----------------------------
    DROP TABLE IF EXISTS `badge_shop`;
    CREATE TABLE `badge_shop` (
      `
    idint(2NOT NULL AUTO_INCREMENT,
      `
    badge_idvarchar(6NOT NULL,
      `
    costint(1NOT NULL,
      
    PRIMARY KEY (`id`)
    ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=latin1;

    -- ----------------------------
    -- 
    Records of badge_shop
    -- ----------------------------
    INSERT INTO `badge_shopVALUES ('1''BOT''2');
    INSERT INTO `badge_shopVALUES ('2''HS1''1');
    INSERT INTO `badge_shopVALUES ('3''RU3''2');
    INSERT INTO `badge_shopVALUES ('4''MTV02\r''2');
    INSERT INTO `badge_shopVALUES ('5''VA014''2');
    INSERT INTO `badge_shopVALUES ('6''EXE000''2');
    INSERT INTO `badge_shopVALUES ('7''BRA08''2');
    INSERT INTO `badge_shopVALUES ('8''BR131''2');
    INSERT INTO `badge_shopVALUES ('9''BR137''2');
    INSERT INTO `badge_shopVALUES ('10''NOC''1');
    INSERT INTO `badge_shopVALUES ('11''SG4''2');
    INSERT INTO `badge_shopVALUES ('13''FAN''6');
    INSERT INTO `badge_shopVALUES ('14''LLL''2'); 
    And just edit values to yours

  14. #13
    Newbie
    Rank
    Newbie
    Join Date
    Nov 2011
    Posts
    6
    Liked
    0

    Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]

    Thanks <3

  15. #14
    C-images website soon
    Rank
    Member +
    Join Date
    May 2010
    Location
    England, UK
    Posts
    1,285
    Liked
    166

    Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]

    This has helped me fix my CMS. Thankyou.

  16. #15
    Custom User Title
    Rank
    Alpha Member
    Join Date
    Jun 2010
    Location
    地下鉄
    Posts
    2,515
    Liked
    392

    Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]

    Great,Thanks!

 

 
Page 1 of 18 12345678911 ... LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •