Likes: 0
Results 1 to 4 of 4
Thread: Phentom CMS
-
27-11-14, 04:31 AM #1
Phentom CMS
Register to remove this adPhentomCMS
- The Best WoW Free CMS ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Warning:
-This project is under development.
-Beta versions will be released periodically but some features will only work for trinity while in beta.
-This project will always be free of charge.
-Some of the available features may not be 100% while in beta.
-After each release more future features will be posted.
-If you use this CMS i would love that you left the credits.
-If you want to see more or different features just tell your idea.
---------------------------------------------------------------------------------------------------------------------------------------------------------
Available Features
Front-End:
-Costum Installation
-Home/News
-Register/Login
-Shoutbox
-Online Players
-Account Panel
-Account Information
-Vote System
-Themes Fully Responsive
-Slider
-Logout
-Language Support
Back-End:
-Add News
-System Info
-Language Support
---------------------------------------------------------------------------------------------------------------------------------------------------------
Upcoming Features
Front-End:
-Initial Installation
-Top PVP
-ChangeLog
-Donation System
-Cart
-Forum
-Account Tools
-Character Tools
Back-End:
-Account Management
-Statistic Tools
-Theme Management
-Modules/Plugins Management
-Languages
---------------------------------------------------------------------------------------------------------------------------------------------------------
Preview
Front-End
Back-End
Installation
Installation in small screens
---------------------------------------------------------------------------------------------------------------------------------------------------------
Demo / Download -> 1.1 Beta
GitHub Download -> 1.1 Beta
› See More: Phentom CMS
-
27-11-14, 05:00 AM #2Dr.CoreGuest
Own Update...
Adding new register and Core module...
TrnityCore V6 (Batle.net Version)
Example...
PHP Code:<?php//Refuses direct accessif (!defined("PhentomCMS")){ exit; }
//Trinity Tables
//Auth$account_table = 'battlenet_accounts';$account_access = 'account_access';$account_banned_table = 'battlenet_account_bans';$realmlist_table = 'realmlist';$uptime_table = 'uptime';
//Characters$characters_table = 'characters';$gm_tickets_table = 'gm_tickets';$guild_table = 'guild';$mail_table = 'mail';$mail_items_table = 'mail_items';
//World
?>
PHP Code:<?php//Refuses direct accessif (!defined("PhentomCMS")){ exit; }
$username = $_POST['username'];$password = sha_password($username,$_POST['password']);
$mysqli -> select_db($acc_db);
$check_account = $mysqli -> query("SELECT * FROM `battlenet_accounts` WHERE email='$email' and sha_pass_hash='$password'") or die( $mysqli -> error );$count = $check_account -> num_rows; if ($count > 0){ $_SESSION['username'] = $username; header("Location: index.php");}else{ echo "<div class='fail'>Wrong User/Password</div>";}?>
PHP Code:<?php//Refuse direct accessif(!defined("PhentomCMS")){ exit; }
if (isset($_POST['remail']) and isset($_POST['rpassword'])){ if ($_POST['rpassword'] == $_POST['vpassword']){ $email = $_POST['remail']; $password = sha_password($email,$_POST['rpassword']); $mysqli -> select_db($acc_db); $check = $mysqli -> query("SELECT id FROM `battlenet_accounts` WHERE email='$email'") or die($mysqli -> error); $count = $check -> num_rows; if ($count > 0){ echo "<p class='fail'>Username already exists.</p>"; } else{ $mysqli -> query("INSERT INTO `battlenet_accounts` (email, sha_pass_hash) VALUES ('$email', '$password')") or die($mysqli -> error); header("Location: ?page=register_success"); } } else{ echo "<p class='fail'>Password missmatch.</p>"; }}
-
08-12-14, 06:40 PM #3
-
Post Thanks / Like - 1 LikesN/A liked this post
-
07-08-15, 07:45 PM #4
Register to remove this adObrigado mesmo o que procurava. Thank you!