Welcome to the RaGEZONE - MMORPG development forums.

eCMS v2 - Professional designed / coded CMS by djboetz and tammy.

This is a discussion on eCMS v2 - Professional designed / coded CMS by djboetz and tammy. within the Habbo Releases forums, part of the Habbo Hotel category; Hello Guys, I really think it is time to release my eCMS v2 now which is very awesome designed with ...

LyncusMU
Page 1 of 4 1234 LastLast
Results 1 to 15 of 48
  1. #1
    Monster Member
    Rank
    Member
    Join Date
    Aug 2010
    Location
    Sweden
    Posts
    181
    Liked
    32

    information eCMS v2 - Professional designed / coded CMS by djboetz and tammy.

    Tabo Hotel
    Hello Guys, I really think it is time to release my eCMS v2 now which is very awesome designed with many features and very secured, I want to release this because i am making a complete new CMS called eCMS Pro or btCMS ( not based on anything ).

    Download:
    wwwroot.zip


    Features:
    • Badge/Points Shop
    • User of the week
    • Added VIP in edit user account.
    • Secure against SQL Injection.
      and much more, Look at the demo site.


    How to get the CMS working?
    You must go to app/tpl/skins/Mango/ and look at every php file and edit the url and more. You should done it if you are not a noob.

    Run these sql's in your database:
    This cms works only with Phoenix databases.
    -- phpMyAdmin SQL Dump
    -- version 3.4.7
    -- phpMyAdmin
    --
    -- Host: localhost
    -- Generation Time: Nov 23, 2011 at 09:24 AM
    -- Server version: 5.5.17
    -- PHP Version: 5.3.8

    SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
    SET time_zone = "+00:00";


    /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
    /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
    /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
    /*!40101 SET NAMES utf8 */;

    --
    -- Database: `hotel`
    --

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

    --
    -- Table structure for table `badgeshop`
    --

    CREATE TABLE IF NOT EXISTS `badgeshop` (
    `id` int(11) NOT NULL AUTO_INCREMENT,
    `name` varchar(255) NOT NULL,
    `badgeid` varchar(255) NOT NULL,
    `badgeimg` varchar(255) NOT NULL,
    `price` int(11) NOT NULL,
    `times_buyed` int(11) NOT NULL,
    PRIMARY KEY (`id`)
    ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=8 ;

    --
    -- Dumping data for table `badgeshop`
    --

    INSERT INTO `badgeshop` (`id`, `name`, `badgeid`, `badgeimg`, `price`, `times_buyed`) VALUES
    (1, '', 'SHA', '/r63/c_images/album1584/SHA.gif', 10, 0),
    (2, '', 'SHK', '/r63/c_images/album1584/SHK.gif', 10, 0),
    (3, '', 'PR3', '/r63/c_images/album1584/PR3.gif', 10, 0),
    (4, '', 'HUG', '/r63/c_images/album1584/HUG.gif', 10, 0),
    (5, '', 'MTV01', '/r63/c_images/album1584/MTV01.gif', 10, 0),
    (6, '', 'RLX02', '/r63/c_images/album1584/RLX02.gif', 10, 0),
    (7, '', 'DS5', '/r63/c_images/album1584/DS5.gif', 10, 0);

    /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
    /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
    /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;

    -- phpMyAdmin SQL Dump
    -- version 3.4.7
    -- phpMyAdmin
    --
    -- Host: localhost
    -- Generation Time: Nov 23, 2011 at 09:26 AM
    -- Server version: 5.5.17
    -- PHP Version: 5.3.8

    SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
    SET time_zone = "+00:00";


    /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
    /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
    /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
    /*!40101 SET NAMES utf8 */;

    --
    -- Database: `hotel`
    --

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

    --
    -- Table structure for table `user_of_the_week`
    --

    CREATE TABLE IF NOT EXISTS `user_of_the_week` (
    `id` int(11) NOT NULL AUTO_INCREMENT,
    `user_id` int(11) NOT NULL DEFAULT '0',
    PRIMARY KEY (`id`)
    ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;

    --
    -- Dumping data for table `user_of_the_week`
    --

    INSERT INTO `user_of_the_week` (`id`, `user_id`) VALUES
    (1, 115);

    /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
    /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
    /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;

    And delete your users table and run this sql:

    CREATE TABLE IF NOT EXISTS `users` (
    `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
    `username` varchar(50) NOT NULL,
    `real_name` varchar(100) NOT NULL DEFAULT '',
    `password` varchar(50) NOT NULL,
    `mail` varchar(50) NOT NULL DEFAULT '[email protected]',
    `auth_ticket` text NOT NULL,
    `rank` int(11) unsigned NOT NULL DEFAULT '1',
    `credits` int(11) NOT NULL DEFAULT '25000',
    `vip_points` int(11) NOT NULL DEFAULT '0',
    `activity_points` int(11) NOT NULL DEFAULT '5000',
    `activity_points_lastupdate` double NOT NULL DEFAULT '0',
    `look` varchar(255) NOT NULL DEFAULT 'hr-115-42.hd-190-1.ch-215-62.lg-285-91.sh-290-62',
    `gender` enum('M','F') NOT NULL DEFAULT 'M',
    `motto` varchar(50) NOT NULL,
    `account_created` varchar(50) NOT NULL,
    `last_online` varchar(50) NOT NULL,
    `online` enum('0','1') NOT NULL DEFAULT '0',
    `ip_last` varchar(120) NOT NULL,
    `ip_reg` varchar(120) NOT NULL,
    `home_room` int(10) unsigned NOT NULL DEFAULT '0',
    `respect` int(11) NOT NULL DEFAULT '0',
    `daily_respect_points` int(11) NOT NULL DEFAULT '3',
    `daily_pet_respect_points` int(11) NOT NULL DEFAULT '3',
    `newbie_status` int(11) NOT NULL DEFAULT '0',
    `is_muted` enum('0','1') NOT NULL DEFAULT '0',
    `mutant_penalty` enum('0','1','2') NOT NULL DEFAULT '0',
    `mutant_penalty_expire` int(11) NOT NULL DEFAULT '0',
    `block_newfriends` enum('0','1') NOT NULL DEFAULT '0',
    `hide_online` enum('0','1') NOT NULL DEFAULT '0',
    `hide_inroom` enum('0','1') NOT NULL DEFAULT '0',
    `mail_verified` varchar(6) NOT NULL DEFAULT '0',
    `vip` enum('0','1') NOT NULL DEFAULT '0',
    `seckey` varchar(100) NOT NULL DEFAULT '',
    `shop_points` int(11) NOT NULL DEFAULT '0',
    PRIMARY KEY (`id`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1106 ;






    Credits:
    djboetz
    tammy
    kryptos

    Please give credits if you release this cms somewhere otherwise i will not support/release cms's.
    Last edited by djboetz; 23-12-11 at 08:09 PM.

  2. HostKey.com: Unmetered Dedicated servers in the Netherlands
  3. #2
    Account Upgraded | Title Enabled!
    Rank
    Member +
    Join Date
    Jul 2011
    Location
    Belgium
    Posts
    306
    Liked
    41

    Re: eCMS v2 - Professional designed / coded CMS by djboetz and tammy.

    Just an edit x-)

    First post ;O

  4. #3
    Newbie
    Rank
    Newbie
    Join Date
    Dec 2006
    Posts
    14
    Liked
    0

    Re: eCMS v2 - Professional designed / coded CMS by djboetz and tammy.

    <3 <3 <3 nice cms
    Last edited by Tommboow; 23-11-11 at 05:45 PM.

  5. #4
    Monster Member
    Rank
    Member
    Join Date
    Aug 2010
    Location
    Sweden
    Posts
    181
    Liked
    32

    information Re: eCMS v2 - Professional designed / coded CMS by djboetz and tammy.

    Quote Originally Posted by sSjoerd View Post
    Just an edit x-)

    First post ;O
    The edit that everyone wants :).

  6. #5
    Working in private usage.
    Rank
    Member +
    Join Date
    Jul 2011
    Location
    On FrostEmu
    Posts
    902
    Liked
    133

    Re: eCMS v2 - Professional designed / coded CMS by djboetz and tammy.

    And.. pictures??

  7. #6
    Monster Member
    Rank
    Member
    Join Date
    Aug 2010
    Location
    Sweden
    Posts
    181
    Liked
    32

    Re: eCMS v2 - Professional designed / coded CMS by djboetz and tammy.

    Quote Originally Posted by George2000 View Post
    And.. pictures??
    Picture is the Live demo: Effect Hotel: Best hotel around..

  8. #7
    Developer
    Rank
    Member +
    Join Date
    May 2008
    Posts
    482
    Liked
    201

    Re: eCMS v2 - Professional designed / coded CMS by djboetz and tammy.

    If this is an edit then why not give credits to the original coders in the footer.. I'm on my phone so I cba to register right now but the footer only says ecms.... What is it phoenix? Uber?
    Posted via Mobile Device

  9. #8
    Monster Member
    Rank
    Member
    Join Date
    Aug 2010
    Location
    Sweden
    Posts
    181
    Liked
    32

    information Re: eCMS v2 - Professional designed / coded CMS by djboetz and tammy.

    Quote Originally Posted by leenster View Post
    If this is an edit then why not give credits to the original coders in the footer.. I'm on my phone so I cba to register right now but the footer only says ecms.... What is it phoenix? Uber?
    Posted via Mobile Device
    Sorry, I forget to do that. Btw thanks for that.
    It is Phoenix, Enjoy it :).

  10. #9
    Member
    Rank
    Newbie
    Join Date
    Oct 2011
    Posts
    31
    Liked
    0

    Re: eCMS v2 - Professional designed / coded CMS by djboetz and tammy.


  11. #10
    Developer
    Rank
    Member +
    Join Date
    May 2008
    Posts
    482
    Liked
    201

    Re: eCMS v2 - Professional designed / coded CMS by djboetz and tammy.

    Looks like the navigation on the news pages is a little messed up..

    also the news is showing all the html code....

  12. #11
    Delta Subscription
    Rank
    Subscriber
    Join Date
    Nov 2008
    Location
    Manchester, UK
    Posts
    3,264
    Liked
    821

    Re: eCMS v2 - Professional designed / coded CMS by djboetz and tammy.

    Bloody disgusting, a MangoCMS theme edit. A bad one at that, there isn't even padding on the top of the content box.

  13. #12
    Hello Der.
    Rank
    Member +
    Join Date
    Nov 2011
    Location
    RaGEZONE
    Posts
    310
    Liked
    57

    Re: eCMS v2 - Professional designed / coded CMS by djboetz and tammy.

    Why even call this eCMS? It's just a skin, and even the skin isn't yours, All it has changed from Mango theme is the navigation, a badge shop & a few more boxes.

  14. #13
    - MichaelMadman
    Rank
    Member +
    Join Date
    Aug 2011
    Posts
    219
    Liked
    52

    Re: eCMS v2 - Professional designed / coded CMS by djboetz and tammy.

    You changed the style of RevCMS then renamed it... Why don't you just release the style and give credit. This isn't no eCMS this is RevCMS...

  15. #14
    Developer
    Rank
    Member +
    Join Date
    May 2008
    Posts
    482
    Liked
    201
    Quote Originally Posted by SkeetEmUp View Post
    You changed the style of RevCMS then renamed it... Why don't you just release the style and give credit. This isn't no eCMS this is RevCMS...
    Its phoenix he said, but yeah... If u wanna rename the atleast give credits...

    Its ok, I kinda like how it works\looks but it still is phoenix php so most likely pretty hard on your server if the are many users online.
    Posted via Mobile Device

  16. #15
    Monster Member
    Rank
    Member
    Join Date
    Aug 2010
    Location
    Sweden
    Posts
    181
    Liked
    32

    information Re: eCMS v2 - Professional designed / coded CMS by djboetz and tammy.

    Quote Originally Posted by leenster View Post
    Its phoenix he said, but yeah... If u wanna rename the atleast give credits...

    Its ok, I kinda like how it works\looks but it still is phoenix php so most likely pretty hard on your server if the are many users online.
    Posted via Mobile Device
    I gave credits to Kryptos who made revCMS. I just call it eCMS v2..

    Quote Originally Posted by leenster View Post
    Looks like the navigation on the news pages is a little messed up..

    also the news is showing all the html code....
    I know, I will update the CMS and make it better when i have time, I'm working with complete new CMS called btCMS.

    Quote Originally Posted by Hejula View Post
    Bloody disgusting, a MangoCMS theme edit. A bad one at that, there isn't even padding on the top of the content box.
    The cms and everything is fine, Add the padding by yourself if you think it is nessacary.

    Quote Originally Posted by SkeetEmUp View Post
    You changed the style of RevCMS then renamed it... Why don't you just release the style and give credit. This isn't no eCMS this is RevCMS...
    Can you please look at the credits before you talk? and no, This is just eCMS..

    Quote Originally Posted by leenster View Post
    Its phoenix he said, but yeah... If u wanna rename the atleast give credits...

    Its ok, I kinda like how it works\looks but it still is phoenix php so most likely pretty hard on your server if the are many users online.
    Posted via Mobile Device
    This is not phoenixphp.

 

 
Page 1 of 4 1234 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
  •