-
[REL] LightCMS [PHP, MySQLi][Butterfly & Phoenix][Leak]
Hey there.
Because there's been so many leaks in the past few days, I bring to you.. LightCMS, a CMS developed by Jonteh specifically for his hotels.
Download -
Download LightCMS.zip @ UppIT
I have no idea if this's secure, no idea of the features etc but if you'd like a running demo - you can visit Jonty's RP hotel: http://worldofhabbo.com (which seems to be an "RP edition" of said CMS.)
Please don't ask how I got a hold of this as I simply won't answer.
Have fun;
-
Re: [REL] LightCMS [PHP, MySQLi][Butterfly & Phoenix][Leak]
-
Re: [REL] LightCMS [PHP, MySQLi][Butterfly & Phoenix][Leak]
This section is full of leaks this week.. Thank you!
-
Re: [REL] LightCMS [PHP, MySQLi][Butterfly & Phoenix][Leak]
Nice.
Jonteh can refuse to release his stuff, but that won't stop RZ from getting it!
-
Re: [REL] LightCMS [PHP, MySQLi][Butterfly & Phoenix][Leak]
-
Re: [REL] LightCMS [PHP, MySQLi][Butterfly & Phoenix][Leak]
RaGEZONE, Leak central! lol nice release btw!
-
Re: [REL] LightCMS [PHP, MySQLi][Butterfly & Phoenix][Leak]
Quote:
Originally Posted by
Makarov
It's surely not clean..
I think it's clean tbh.
-
Re: [REL] LightCMS [PHP, MySQLi][Butterfly & Phoenix][Leak]
Quote:
Originally Posted by
Leon
I think it's clean tbh.
You sure?
http://new.tinygrab.com/c0e849545c87...9a29009457.png
-
Re: [REL] LightCMS [PHP, MySQLi][Butterfly & Phoenix][Leak]
Quote:
Originally Posted by
Makarov
I do hate the way he uses { } but I guess that's preference.
-
Re: [REL] LightCMS [PHP, MySQLi][Butterfly & Phoenix][Leak]
His coding layout is horrendous.
(Sorry about my last post, I misread the code)
-
Re: [REL] LightCMS [PHP, MySQLi][Butterfly & Phoenix][Leak]
Horrrrriiiibbbllleeeee! :(
-
Re: [REL] LightCMS [PHP, MySQLi][Butterfly & Phoenix][Leak]
No I mean the coding preferences suck.
Codes are everywhere, it needs structure.
He may call it "LightCMS" but all I read is "UberCMS 2.5 Messy Edit"
-
Re: [REL] LightCMS [PHP, MySQLi][Butterfly & Phoenix][Leak]
Quote:
Originally Posted by
ησвяαιη
Horrrrriiiibbbllleeeee! :(
I guess it's something that could be used as an alternative to Rev..
Quote:
Originally Posted by
Makarov
No I mean the coding preferences suck.
Codes are everywhere, it needs structure.
He may call it "LightCMS" but all I read is "UberCMS 2.5 Messy Edit"
I don't see any uber code in there, so I really don't think it's an uberCMS edit.
-
Re: [REL] LightCMS [PHP, MySQLi][Butterfly & Phoenix][Leak]
Quote:
Originally Posted by
Leon
I guess it's something that could be used as an alternative to Rev..
I don't see any uber code in there, so I really don't think it's an uberCMS edit.
Code:
if(!LOGGED) {
header ("Location: " . WWW . "/");
}
define('MeSelected', true);
define('MeTabSelected', true);
$tpl->assign('Credits', $users->userVar(USERNAME, 'credits'));
$tpl->assign('Pixels', $users->userVar(USERNAME, 'activity_points'));
$tpl->assign('Look', $users->userVar(USERNAME, 'look'));
$tpl->assign('Points', $users->userVar(USERNAME, 'points'));
$tpl->assign('Motto', $users->userVar(USERNAME, 'motto'));
$tpl->assign('pagetitle', 'Home');
You cannot tell me that code was NOT in UberCMS.
Yes he changed the function name, but it doesn't change how the code functions. (wdf, lol).
Me, Kryptos and Joopie tried to change the curve but apparently some people aren't taking the hint.. ;)
-
Re: [REL] LightCMS [PHP, MySQLi][Butterfly & Phoenix][Leak]
Quote:
Originally Posted by
Makarov
Code:
if(!LOGGED) {
header ("Location: " . WWW . "/");
}
define('MeSelected', true);
define('MeTabSelected', true);
$tpl->assign('Credits', $users->userVar(USERNAME, 'credits'));
$tpl->assign('Pixels', $users->userVar(USERNAME, 'activity_points'));
$tpl->assign('Look', $users->userVar(USERNAME, 'look'));
$tpl->assign('Points', $users->userVar(USERNAME, 'points'));
$tpl->assign('Motto', $users->userVar(USERNAME, 'motto'));
$tpl->assign('pagetitle', 'Home');
You cannot tell me that code was NOT in UberCMS.
Yes he changed the function name, but it doesn't change how the code functions. (wdf, lol).
Me, Kryptos and Joopie tried to change the curve but apparently some people aren't taking the hint.. ;)
That's just generic template assignments, it doesn't prove that it's an uberCMS edit?
-
Re: [REL] LightCMS [PHP, MySQLi][Butterfly & Phoenix][Leak]
Required.php is a total mess...
Code:
<?php
// LightCMS for Zap Hotel & Affiliates
// Copyright (c) 2012 Jonty McIntyre
// Credits to RainTPL for Template Engine
// -------------------------------------
ini_set('display_errors','On');
error_reporting(E_ALL);
// -------------------------------------
require_once "engine/class_users.php";
require_once "engine/class_core.php";
require_once "engine/class_raintpl.php";
// -------------------------------------
require_once "engine/configs/mysqli.php";
require_once "engine/configs/site.php";
require_once "engine/configs/misc.php";
// -------------------------------------
if($misc['CloudFlareEnabled'] && $misc['WebServerIsApache']) {
$apacheHeaders = apache_request_headers();
$_SERVER["REMOTE_ADDR"] = $apacheHeaders["CF-Connecting-IP"];
}
// -------------------------------------
$users = new users();
$core = new core();
$tpl = new RainTPL;
// -------------------------------------
$db = @new mysqli($MySQLi['Hostname'], $MySQLi['Username'], $MySQLi['Password'], $MySQLi['Database']);
if($db->connect_errno) {
$core->databaseError($db->connect_error);
}
if($users->isIpBanned($_SERVER["REMOTE_ADDR"]) && !defined('BanPage')) {
header ("Location: " . WWW . "/banned");
}
// -------------------------------------
session_start();
$users->checkSessions();
// -------------------------------------
if ($users->isLogged()) {
define("LOGGED", true);
define("USERNAME", $users->userVar($_SESSION["Username"], 'username'));
define("USER_RANK", $users->userVar(USERNAME, "rank"));
define("USER_ID", $users->userVar(USERNAME, "id"));
$tpl->assign('Username', USERNAME);
$tpl->assign('UserId', USER_ID);
}
else {
define("LOGGED", false);
define("USERNAME", "Guest");
}
// -------------------------------------
$tpl->assign('web_build', $core->getSystemString('web_build'));
$tpl->assign('sitename', $site['SiteName']);
$tpl->assign('www', "http://zaphotel.net");
define('WWW', "http://zaphotel.net");
$tpl->assign('shortname', $site['ShortName']);
$tpl->assign('stat_fig', number_format($core->getServerStat('users_online')));
$tpl->assign('users_online', number_format($core->getServerStat('users_online')) . ' user(s) online');
// -------------------------------------
$m = 0;
// -------------------------------------
if($m == 1 && !defined("NO_MAINT_HERE")) {
if($users->isLogged() && USER_RANK < 2) {
header ("Location: " . WWW . "/maintenance.php");
}
else if(!$users->isLogged()) {
header ("Location: " . WWW . "/maintenance.php");
}
}
// -------------------------------------
if($users->isUserBanned(USERNAME) && !defined('BanPage')) {
Header ("Location: " . WWW . "/banned");
}
// -------------------------------------
function getMainStories($amt) {
global $db, $core;
if($r = $db->query("SELECT id,title,topstory_image,snippet FROM site_news ORDER BY id DESC LIMIT " . $amt . "")) {
while($a = $r->fetch_assoc()) {
echo '<div class="topstory" style="background-image: url(' . $a['topstory_image'] . '); display: block;">
<h4>Latest news</h4>
<h3><a href="' . WWW . '/articles?_news_id=' . $a['id'] . '">' . $a['title'] . '</a></h3>
<p class="summary">
' . $a['snippet'] . '
</p>
<p>
<a href="' . WWW . '/articles?_news_id=' . $a['id'] . '">Read more »</a>
</p>
</div>';
}
}
else {
$core->databaseError($db->error);
}
}
function getSubStories() {
global $db, $core;
if($r = $db->query("SELECT id,title,datestr FROM site_news ORDER BY id DESC LIMIT 3,3")) {
$oE = "odd";
while($a = $r->fetch_assoc()) {
if($oE == "odd") { $oE = "even"; } else { $oE = "odd"; }
echo '<li class="' . $oE . '">
<a href="' . WWW . '/articles?_news_id=' . $a['id'] . '">' . $a['title'] . ' »</a><div class="newsitem-date">' . $a['datestr'] . '</div>
</li>';
}
}
else {
$core->databaseError($db->error);
}
}
?>
-
Re: [REL] LightCMS [PHP, MySQLi][Butterfly & Phoenix][Leak]
I think we've established Jonty is a crap coder 8-).
Anyway, will look through this tomorrow or Friday, see what it's like.
-
Re: [REL] LightCMS [PHP, MySQLi][Butterfly & Phoenix][Leak]
Nice release...
A message to all the people saying "Messy", "dirty", He can't code..
Firstly it's his CMS so he could code it as he feels, It Could be 10000% messy, that doesn't concern you, what does is that it works.. Clearly he made it for HIS hotels, Leaked meaning he didn't want it out, I think he if wanted it out he would have released it HIM SELF.. that's first.. secondly.. just because you don't like him.. doesn't mean you should judge his CMS as "Horrrrriiiibbbllleeeee! :(".. Thirdly @ the Thread owner, Not sure why you would release this here, RageZone Doesn't appreciate shit.. It could be 100% perfect and this forum doesn't appreciate it.. A bunch of haters and trash talkers are here if you ask me.. But that's just me..
-
Re: [REL] LightCMS [PHP, MySQLi][Butterfly & Phoenix][Leak]
Quote:
Originally Posted by
iBling14
Nice release...
A message to all the people saying "Messy", "dirty", He can't code..
Firstly it's his CMS so he could code it as he feels, It Could be 10000% messy, that doesn't concern you, what does is that it works.. Clearly he made it for HIS hotels, Leaked meaning he didn't want it out, I think he if wanted it out he would have released it HIM SELF.. that's first.. secondly.. just because you don't like him.. doesn't mean you should judge his CMS as "Horrrrriiiibbbllleeeee! :(".. Thirdly @ the Thread owner, Not sure why you would release this here, RageZone Doesn't appreciate shit.. It could be 100% perfect and this forum doesn't appreciate it.. A bunch of haters and trash talkers are here if you ask me.. But that's just me..
You really do not know the Habbo Hotel section..
It is a collection of the most unappreciative people possible. Not to mention the renames, exploits and all the other shit that makes this place what it is. :love:
-
Re: [REL] LightCMS [PHP, MySQLi][Butterfly & Phoenix][Leak]
Quote:
Originally Posted by
iBling14
Nice release...
A message to all the people saying "Messy", "dirty", He can't code..
Firstly it's his CMS so he could code it as he feels, It Could be 10000% messy, that doesn't concern you, what does is that it works.. Clearly he made it for HIS hotels, Leaked meaning he didn't want it out, I think he if wanted it out he would have released it HIM SELF.. that's first.. secondly.. just because you don't like him.. doesn't mean you should judge his CMS as "Horrrrriiiibbbllleeeee! :(".. Thirdly @ the Thread owner, Not sure why you would release this here, RageZone Doesn't appreciate shit.. It could be 100% perfect and this forum doesn't appreciate it.. A bunch of haters and trash talkers are here if you ask me.. But that's just me..
Got it out of your chest yet? If so; one question - how much $$ you get for saying that?
-
Re: [REL] LightCMS [PHP, MySQLi][Butterfly & Phoenix][Leak]
Quote:
Originally Posted by
iBling14
Nice release...
A message to all the people saying "Messy", "dirty", He can't code..
Firstly it's his CMS so he could code it as he feels, It Could be 10000% messy, that doesn't concern you, what does is that it works.. Clearly he made it for HIS hotels, Leaked meaning he didn't want it out, I think he if wanted it out he would have released it HIM SELF.. that's first.. secondly.. just because you don't like him.. doesn't mean you should judge his CMS as "Horrrrriiiibbbllleeeee! :(".. Thirdly @ the Thread owner, Not sure why you would release this here, RageZone Doesn't appreciate shit.. It could be 100% perfect and this forum doesn't appreciate it.. A bunch of haters and trash talkers are here if you ask me.. But that's just me..
It's a forum and it's users are freely allowed to voice their opinions. I don't care if he wanted it out or not it's messy and he should learn better coding practices before daring to make another CMS. Developers left RaGEZONE to develop privately, so the only way RaGEZONE is going to build itself is through leaking their private work. The community made that clear yesterday.
When I say RaGEZONE I mean RaGEZONE > Habbo Hotel Section, if you were confused.
-
Re: [REL] LightCMS [PHP, MySQLi][Butterfly & Phoenix][Leak]
Quote:
Originally Posted by
Makarov
It's a forum and it's users are freely allowed to voice their opinions. I don't care if he wanted it out or not it's messy and he should learn better coding practices before daring to make another CMS. Developers left RaGEZONE to develop privately, so the only way RaGEZONE is going to build itself is through leaking their private work. The community made that clear yesterday.
When I say RaGEZONE I mean RaGEZONE > Habbo Hotel Section, if you were confused.
It's been a fantastic couple of days for the scene and I'm glad to be a part of it. :love:
-
Re: [REL] LightCMS [PHP, MySQLi][Butterfly & Phoenix][Leak]
is it exploit free or not
-
Re: [REL] LightCMS [PHP, MySQLi][Butterfly & Phoenix][Leak]
Quote:
Originally Posted by
HolodayNL
is it exploit free or not
I really think it's secure, yes.
-
Re: [REL] LightCMS [PHP, MySQLi][Butterfly & Phoenix][Leak]
Quote:
Originally Posted by
Makarov
It's a forum and it's users are freely allowed to voice their opinions. I don't care if he wanted it out or not it's messy and he should learn better coding practices before daring to make another CMS. Developers left RaGEZONE to develop privately, so the only way RaGEZONE is going to build itself is through leaking their private work. The community made that clear yesterday.
When I say RaGEZONE I mean RaGEZONE > Habbo Hotel Section, if you were confused.
You don't care but he does, his CMS, his way of making things, you don't like the way he made the CMS, then stop leaking shit, and make your own, put it that way, and @ Leon I was paid a opinion like everyone else. And If you consider people saying SHIT, WHY DID you even try and a opinion then That's sad.. and opinion should stay constructive not with all these little brats coming posting all these posts that are over the border line of an "opinion" thank you very much..
@Grant, thanks for telling me, now I know not to release anything here :).