Just an edit x-)
First post ;O
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 ...

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.
Just an edit x-)
First post ;O
<3 <3 <3 nice cms
Last edited by Tommboow; 23-11-11 at 05:45 PM.
And.. pictures??
Picture is the Live demo: Effect Hotel: Best hotel around..
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
can you help me with the cms?
[email protected]
- Btw Nice cms!![]()
Looks like the navigation on the news pages is a little messed up..
also the news is showing all the html code....
Bloody disgusting, a MangoCMS theme edit. A bad one at that, there isn't even padding on the top of the content box.
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.
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...
![]()
I gave credits to Kryptos who made revCMS. I just call it eCMS v2..
I know, I will update the CMS and make it better when i have time, I'm working with complete new CMS called btCMS.
The cms and everything is fine, Add the padding by yourself if you think it is nessacary.
Can you please look at the credits before you talk? and no, This is just eCMS..
This is not phoenixphp.