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!

[BETA] MapleByte CMS

Initiate Mage
Joined
Apr 19, 2013
Messages
21
Reaction score
3
Does anyone know which font is used for the title and "ByteNetwork" bit?
 
Junior Spellweaver
Joined
Nov 26, 2012
Messages
156
Reaction score
35
Hmm im getting the not connected to database. Although in settings.json i have changed it to my the name of my database and also i did execute the SQL to the database. Any help?
-Xrin
 
Junior Spellweaver
Joined
Apr 29, 2011
Messages
126
Reaction score
2
How to change Icon?(now icon is red flag so I want to change it)
 
may web.very maple.pls.
Member
Joined
Aug 12, 2009
Messages
1,810
Reaction score
606
How to change Icon?(now icon is red flag so I want to change it)
index.php:
<link rel="shortcut icon" type="image/x-icon" href=" " />

Hmm im getting the not connected to database. Although in settings.json i have changed it to my the name of my database and also i did execute the SQL to the database. Any help?
-Xrin
Mind showing me what you editing(put fake information for an example) in settings.json?
 
Initiate Mage
Joined
Jun 16, 2013
Messages
18
Reaction score
0
It doesn't have a function to input your server's ip in config file :?:
 
may web.very maple.pls.
Member
Joined
Aug 12, 2009
Messages
1,810
Reaction score
606
I have been meaning to add that option but my main focus is to create the most complete character script so I can implement into this CMS ASAP!
 
Junior Spellweaver
Joined
Sep 4, 2008
Messages
132
Reaction score
14


edit ur details in /libary/pages/ranking.php

copy & paste

EDIT1:

@iAkira

i think this is vulnerble to directory jumping :x? i see u made a check file_exist(libary/pages/$pages .php)

but.. i can jump to the main directory aswell :x

../../index.php


EDIT2:

also this would be a nice addition for the .htaccess :)


ErrorDocument 404 /404.php


404.php
Code:
<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://YOURURL.TLD");
exit();
?>
 
Last edited:
may web.very maple.pls.
Member
Joined
Aug 12, 2009
Messages
1,810
Reaction score
606
Thanks, I'll be adding more security to this CMS as well :) the ranking is coming soon so sorry about the constant delay ><!
 
Initiate Mage
Joined
Apr 27, 2009
Messages
29
Reaction score
1
top5 shows the players but the image doesn't work, it's blank for me.
 
may web.very maple.pls.
Member
Joined
Aug 12, 2009
Messages
1,810
Reaction score
606
I will be adding it in the next revision.
Updates:
So I finally have a stable enough character generation to use for this cms. Also I have recently started redesigning this CMS as well, Got the top part done.
I'm sorry it took soo long for me to work on this CMS again but I wanted to add character generations into this cms, without it, the cms was crippled.. :)
 
Last edited:
may web.very maple.pls.
Member
Joined
Aug 12, 2009
Messages
1,810
Reaction score
606
I have been redesigning a lot and I might as well give you a little piece of the new top five ranking(not the design itself):
iAkira - [BETA] MapleByte CMS - RaGEZONE Forums
 
Junior Spellweaver
Joined
Jul 1, 2008
Messages
138
Reaction score
39
I have been redesigning a lot and I might as well give you a little piece of the new top five ranking(not the design itself):
iAkira - [BETA] MapleByte CMS - RaGEZONE Forums

Annnnd I'm sold, even more sold than I was way back when this was released. You're doing some wicked work Akira!
 
may web.very maple.pls.
Member
Joined
Aug 12, 2009
Messages
1,810
Reaction score
606
Already implemented the new top 5 ranking in my redesign
iAkira - [BETA] MapleByte CMS - RaGEZONE Forums

I decided to give away my new design's top part, I will be changing the top bar a bit but here's an ovrall previw of my new design:
iAkira - [BETA] MapleByte CMS - RaGEZONE Forums

I have saved the PSD so you will be able to modify it to your likings(not like before I didn't have it lolol)

Any suggestions? Like the new design?
 
Junior Spellweaver
Joined
Jul 1, 2008
Messages
138
Reaction score
39
I love neutral tones so this new design is really rubbin' me in all the right ways! I'm really looking forward to it.

Speaking of Design, how's the Project MAPLE PSD coming together?
 
Initiate Mage
Joined
Mar 10, 2012
Messages
50
Reaction score
0
I have setup my Settings.json file and here is what I have
iAkira - [BETA] MapleByte CMS - RaGEZONE Forums


But when I go to my site this is what I get
iAkira - [BETA] MapleByte CMS - RaGEZONE Forums


I used to have an old CMS on it and it worked fine. Why wont this one work? Btw my database has no password

I have been redesigning a lot and I might as well give you a little piece of the new top five ranking(not the design itself):
iAkira - [BETA] MapleByte CMS - RaGEZONE Forums

I have setup my Settings.json file and here is what I have
iAkira - [BETA] MapleByte CMS - RaGEZONE Forums


But when I go to my site this is what I get
iAkira - [BETA] MapleByte CMS - RaGEZONE Forums


I used to have an old CMS on it and it worked fine. Why wont this one work? Btw my database has no password
 
may web.very maple.pls.
Member
Joined
Aug 12, 2009
Messages
1,810
Reaction score
606
Well I have done a lot of recoding to this cms already, I just would like to know if you guys have any suggestions? I so far made everything much more efficient(optimized many files, switch from pdo to meekroDB, etc.). example of my optimization:
old right.php(58 lines):
iAkira - [BETA] MapleByte CMS - RaGEZONE Forums


Recoded right.php(33 lines):
iAkira - [BETA] MapleByte CMS - RaGEZONE Forums


I would like to know what you guys would like to add/change from the current design. I am kinda curious :p
 
may web.very maple.pls.
Member
Joined
Aug 12, 2009
Messages
1,810
Reaction score
606
I chose meekrodb because it handles sql injections for me and it is a lot cleaner than the pdo commands. it is really simple to use and i integrated it into the cms and removed all the pdo callings. I had been having problems with pdo like I couldn't make it flexible in the class I was making
 
Initiate Mage
Joined
Jul 16, 2013
Messages
11
Reaction score
0
HEY! Thanks for releasing this but I have a problem. I'm trying to use my admin panel and it says I need to set up my profile name but on the change profile page it says
Couldn't find
. I'm not sure what to do. Thanks!
 
Back
Top