novichotel.com CMS (My IlluminaCMS edit)
So I'm leaving retros for a bit and thought i'd release my cms. I fixed all the exploits in it so there shouldn't be any exploits. Filtered all the things users input and also used prepare statements for some querys since it's mysqli.
i'll explain some of the functions..
Poll System
You can create polls for news articles on the housekeeping page, for competitions etc.. once you created the poll you just copy the Poll ID and enter it in when you are creating a news article. You can view poll submissions and toggle opening and closing the poll on the Poll submissions page in housekeeping. Pretty neat for ROTW submissions?
Help System
Create a help ticket via website, shows on the /me page, staff get alerts and reply via housekeeping.
Avatar of the month
Changed by aotm column in site_config.sql
Vault
Automatically changed when someone guesses it, captcha required if the user has won already.
Point Shop
Points are the websites currency, used for VIP etc, add points in housekeeping.
There is also a form that is like 70% complete, to enable it just edit me.php and allow the form template to show..
Screenshots:
DOWNLOAD
cms + database
can someone please mirror?
This is the FULL database as there has been too much database work to get all the querys for you. Works with bcstorm and firewind or whatever everyone uses now. If you have another database then just take stuff from this full database until the CMS stops giving errors. I will NOT be providing support so please don't pm me or post support in here..
Credits
Lasuni
Me for doing all the PHP coding and creating it basically.
Jonty for the base
Habbo?
and whoever else.
Re: novichotel.com CMS (My IlluminaCMS edit)
Just looked through the pictures, looks like a very great CMS.
Thank you for this release.
Re: novichotel.com CMS (My IlluminaCMS edit)
Quote:
Originally Posted by
Matata
Just looked through the pictures, looks like a very great CMS.
Thank you for this release.
Thank you.
I forgot, there are some codes in housekeeping viewstaff.php that checks if the username is jayden. Just remove that sorry.
Also some codes in lightcms.php that checks to see if the username is "lenny" and just posts on the website as a novic hotel account, nothing too serious but can be removed aswell. Did not have time.
Re: novichotel.com CMS (My IlluminaCMS edit)
Quote:
Originally Posted by
tdid
They clearly ripped it from the site I ripped it from but made it worse. Mine is the proper one.
Look at lasuni.com.
Re: novichotel.com CMS (My IlluminaCMS edit)
lasuni.com layout 100% as they wouldn't rip from a habbo retro.
Re: novichotel.com CMS (My IlluminaCMS edit)
Re: novichotel.com CMS (My IlluminaCMS edit)
PHP Code:
if($db->stmt = $db->prepare("UPDATE profile_about SET bio = '" . $bio . "' WHERE user_id = '" . USER_ID . "'")) {
$db->stmt->execute();
$db->stmt->close();
}
if($db->stmt = $db->prepare("UPDATE profile_about SET facebookUrl = '" . $fb . "' WHERE user_id = '" . USER_ID . "'")) {
$db->stmt->execute();
$db->stmt->close();
}
if($db->stmt = $db->prepare("UPDATE profile_about SET twitterUrl = '" . $tw . "' WHERE user_id = '" . USER_ID . "'")) {
$db->stmt->execute();
$db->stmt->close();
}
if($db->stmt = $db->prepare("UPDATE profile_about SET flag = '" . $flag . "' WHERE user_id = '" . USER_ID . "'")) {
$db->stmt->execute();
$db->stmt->close();
}
if($db->stmt = $db->prepare("UPDATE profile_about SET youtube_url = '" . $yt . "' WHERE user_id = '" . USER_ID . "'")) {
$db->stmt->execute();
$db->stmt->close();
}
People really need to learn how to use prepared statements properly.
OVERKILL MUCH!
Re: novichotel.com CMS (My IlluminaCMS edit)
Screens aren't working unfortunately
Re: novichotel.com CMS (My IlluminaCMS edit)
captcha on register does not work please provide a fix? http://i.imgur.com/424GhtE.png
Re: novichotel.com CMS (My IlluminaCMS edit)
yo screenshots are broken.
Re: novichotel.com CMS (My IlluminaCMS edit)
What emulator and Compatible with DB?
Re: novichotel.com CMS (My IlluminaCMS edit)
You need to disable hotlinking on CloudFlare.
Re: novichotel.com CMS (My IlluminaCMS edit)
Quote:
Originally Posted by
Joseph
yo screenshots are broken.
Copy link and visit them in browser. Seems like hotlinking is not working for that host.
Re: novichotel.com CMS (My IlluminaCMS edit)