Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[RELEASE] KakaCMS v.3! BEST EVER! :D

Status
Not open for further replies.
Junior Spellweaver
Joined
Apr 21, 2007
Messages
158
Reaction score
1
Yoz, :D well its me again.. and im releasing this CMS which is the best I ever made. :)

Features:
Home
Register
Download
Guild list
Ranking
Online users
Change password
Nx cash shop
Login fix
Map unstucker
Negative exp fix

Demo:
(Link might be down due to me being offline)

Pictures:


Register







Download: (Report dead links) (register fix included, navigation fix, unstuck + nx cash page fix)



ReadMe:
------------------------------------
_ ___ __
/\ /\__ _| | ____ _ / __\ /\/\ / _\
/ //_/ _` | |/ / _` |/ / / \ \ \
/ __ \ (_| | < (_| / /___/ /\/\ \_\ \
\/ \/\__,_|_|\_\__,_\____/\/ \/\__/
------------------------------------
KakaCMS v.3

Files to edit for database:
config2.php
page\logout.php
page\online.php
page\guild.php
page\ranking.php
page\fixexp.php
inc\config.inc.php
inc\config2.php

Customizing site files:
inc\info_inc.php (VERY IMPORTANT)
page\donate.php
page\download.php
page\home.php

And errors tell kakashirock.
Thanks for using! =D
KakaCMS Versions:
KakaCMS v.1
KakaCMS v.2

Still can be used. :D The layout is quite good too.

Thanks for reading/downloading! :)

Donate to MEH Pl0x. ( Paypal : ken_wong1423@hotmail.com )
If you like my graphics.
NOT SCRIPTS.

GRAPHICS.


If you don't wanna donate its fine. :)
Just use my layout and keep the copyright.

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


GUIDE TO EVERYTHING! :D (Not everything, request it to be there?)
This includes:
- Adding pages to navigation
- Editing server name, drop rate, exp rate, meso rate, server ip
- Changing forum url
- Adding in songs
- Content under navigation fix (Choose one)
- Logo without the text 'KakaCMS v.3'
- always say "banreason field does not exist" OR "mac blalala field does not exist"

CLICK HERE NOOBS! D:
 
Last edited:
Experienced Elementalist
Joined
May 29, 2008
Messages
241
Reaction score
0
k i got it to work but.. how do i change the forum url?
 
Newbie Spellweaver
Joined
Jun 6, 2008
Messages
17
Reaction score
0
Awesome. I love your CMS's, they get better every time :D
 
Newbie Spellweaver
Joined
Jun 6, 2008
Messages
17
Reaction score
0
Do you not see these? o.o

Download: (Report dead links)
Mediafire
Rapidshare
 
Experienced Elementalist
Joined
Apr 8, 2008
Messages
294
Reaction score
0
srry im half blind (not rly)
well im getting this when trying to register:
Not Found

The requested URL /register_do.php was not found on this server.
im SURE i edited ALL the needed files :X
 
Newbie Spellweaver
Joined
Jun 6, 2008
Messages
17
Reaction score
0
Ah, it should be in the index.php, look for where the menu bar links are held in it. Then change the url for the forum one.
 
Experienced Elementalist
Joined
Apr 8, 2008
Messages
294
Reaction score
0
jelly
why do i get this when trying to register?
:
The requested URL /register_do.php was not found on this server.
im SURE i edited ALL the needed files :X
 
Newbie Spellweaver
Joined
Apr 12, 2008
Messages
21
Reaction score
0
This is a great layout but can you tell me how to fix the status/info?

The servername, serverip, mesorate, etc. part

Nothing shows there, its blank.
 
Experienced Elementalist
Joined
Apr 8, 2008
Messages
294
Reaction score
0
jelly
why do i get this when trying to register?
:
The requested URL /register_do.php was not found on this server.
im SURE i edited ALL the needed files :X
 
Newbie Spellweaver
Joined
Jun 6, 2008
Messages
17
Reaction score
0
I'm mainly going by V.2, I guess it's changed. And moshik, I think that's because you don't have the file register_do.php uploaded or something.
 
Experienced Elementalist
Joined
Apr 8, 2008
Messages
294
Reaction score
0
i do...
o.o
why it doesnt let me register?
show me UR register_do content
EDIT:
i copyied register_do to the main folder and its working now..
exept it doesnt show a message saying registersion was success
 
Newbie Spellweaver
Joined
Apr 13, 2008
Messages
15
Reaction score
0
What if for unstuck thing someone put in the ID for the GM map or some other far away map?
 
Newbie Spellweaver
Joined
Dec 6, 2004
Messages
78
Reaction score
0
thank for update

anyone if you register not working just copy old register_do.php will work and duno why my logout not working anymore..
 
Junior Spellweaver
Joined
May 27, 2008
Messages
196
Reaction score
0
Amazing :O *claps*

but can you please put PHP Includes in? editing oage by page is hell for me T_T

EDIT // ZOMG MY 200th POST @_@
 
Junior Spellweaver
Joined
Apr 21, 2007
Messages
158
Reaction score
1
Uh, register_do.php fix.

1. go to your root folder (where all the config2.php,index.php,navigation.php etc aka htdocs or www)
2. make a new php file called register_do.php and paste this in it
PHP:
<?php
/* Store user details */
$name = $_POST['name'];
$pass = sha1($_POST['pass']);
$email = $_POST['email'];
$dob = $_POST['dob'];
$vpass = sha1($_POST['vpass']);
include('./config2.php');
$sel = 'SELECT * FROM accounts WHERE name="'.$_POST['name'].'"';
if($name == ""){
echo 'No username filled in.';
exit();
}elseif(mysql_num_rows(mysql_query($sel)) >= 1 ){
echo '<link rel=stylesheet href="style.css" type="text/css"><center>This username does already exists!</center>';
exit();
}elseif($pass == ""){
echo '<link rel=stylesheet href="style.css" type="text/css"><center>No password filled in.</center>';
exit();
}elseif($vpass != $pass){
echo '<link rel=stylesheet href="style.css" type="text/css"><center>The passwords did not match.</center>';
exit();
}else{

$d = 'INSERT INTO accounts (name, password, email, birthday) VALUES ("'.$name.'", "'.$pass.'", "'.$email.'", "'.$dob.'")';
mysql_query($d) OR die (mysql_error());
echo '<link rel=stylesheet href="style.css" type="text/css"><center>Your account has been created, you can now login!</center>';
}
?>

3. save it.
4. go to register.php in root folder and replace everything with this.
PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<?php require ("./inc/info.inc.php"); ?>
<title><?=$config['server_name'];?></title>
<link rel=stylesheet href="style.css" type="text/css">



<body class="thrColFixHdr">
<br />
<br />
<br />
<div id="container">
<?php include ("header.php"); ?>
<?php include ("navigation.php"); ?>
<?php include ("status.php"); ?>

<center>
<table cellspacing=1 cellpadding=5>
<tr><td class=listtitle colspan=2><center><b>Registration</b></center></td></tr>
<form action="register_do.php" method="POST">
<tr><td class=list align=right>Username:</td><td class=list><input type=text name=name maxlength="30"></td></tr>
<tr><td class=list align=right>Password:</td><td class=list><input type=password name=pass maxlength="30"></td></tr>
<tr><td class=list align=right>Verify Password:</td><td class=list><input type=password name=vpass maxlength="30"></td></tr>
<tr><td class=list align=right>Email:</td><td class=list><input type=text name=email maxlength="50"></td></tr>
<tr><td class=list align=right>Date of Birth: <br><i>Ex. 1988-09-23</i></td><td class=list><input type=text name=dob maxlength="15"></td></tr>
<tr><td class=listtitle align=right colspan=2><center><input type=submit name=submit value='Register'</td></tr></center>
</form>
</table>
<br>
<?php
include('config2.php');
$result = mysql_query("SELECT * FROM accounts", $db);// Account section
$num_rows = mysql_num_rows($result);
$result2 = mysql_query("SELECT * FROM characters", $db);// Character section
$num_rowsc = mysql_num_rows($result2);
$result3 = mysql_query("SELECT * FROM channelconfig", $db);// Channel section
$num_rowsd = mysql_num_rows($result3);
echo '<b>Stats:</b><br>
<b>'.$num_rowsd.'</b> Channel(s).<br>
<b>'.$num_rows.'</b> Accounts registed.<br>
<b>'.$num_rowsc.'</b> Characters created.';
?>
<br>
<?php
include('config2.php');
        echo $logserv_name;
        $fp = @fsockopen($serverip, $loginport, $errno, $errstr, 1);
	  if (!$fp) {
           echo $offline;
        } else {
           echo $online;
        }

        @fclose($fp);
        $sql = mysql_connect($sql_host, $sql_user, $sql_pass)or die("Error on trying to connect in MySQL: " . mysql_error());
        mysql_select_db($sql_db)or die("Error on trying to connect in Database");
        ?>



<!-- do not remove-->
<br class="clearfloat" />
<?php include ("footer.php"); ?>
</div>
<!-- end #container -->
<Br />
<br />
<Br />
</body>
</html>

and for editing problems read the readme? :D
 
Status
Not open for further replies.
Back
Top