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] MapleBitCMS

Skilled Illusionist
Joined
Feb 15, 2013
Messages
323
Reaction score
10
when i go to Manage Accounts i get this error
greenelfx - [BETA] MapleBitCMS - RaGEZONE Forums
 
Initiate Mage
Joined
Dec 2, 2013
Messages
72
Reaction score
1
( ! ) Notice: Undefined index: Acash in C:\wamp\www\maple\sources\admin\manage-accounts.php on line 47
Call Stack
#TimeMemoryFunctionLocation
10.0004150568{main}( )..\index.php:0
20.0408359176include( 'C:\wamp\www\maple\sources\admin\main.php' )..\index.php:40
30.0415389896include( 'C:\wamp\www\maple\sources\admin\manage-accounts.php' )..\main.php:151



having this problem in manage account page =(
 
Initiate Mage
Joined
Jul 29, 2009
Messages
75
Reaction score
13
<label class="radio"><input type="radio" name="theme" value="cyborg" />Cyborg <a href="http://bootswatch.com/cybord/" target="_blank"><i class="fa fa-external-link"></i></a></label>

Cyborg.
:p:
 
Joined
Jul 12, 2011
Messages
1,229
Reaction score
475
Cyborg.
:p:

fixed, thanks.
( ! ) Notice: Undefined index: Acash in C:\wamp\www\maple\sources\admin\manage-accounts.php on line 47
Call Stack
#TimeMemoryFunctionLocation
10.0004150568{main}( )..\index.php:0
20.0408359176include( 'C:\wamp\www\maple\sources\admin\main.php' )..\index.php:40
30.0415389896include( 'C:\wamp\www\maple\sources\admin\manage-accounts.php' )..\main.php:151



having this problem in manage account page =(

Make sure the table "Acash" exists, exactly how it is spelled.

EDIT: Finished multisite voting
9IYGTwU - [BETA] MapleBitCMS - RaGEZONE Forums


j8K2uC - [BETA] MapleBitCMS - RaGEZONE Forums


h8RDAsf - [BETA] MapleBitCMS - RaGEZONE Forums


JZI39M6 - [BETA] MapleBitCMS - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Last edited:
Joined
Jul 12, 2011
Messages
1,229
Reaction score
475
Where. I don't see it. Are you talking about Vote or Site props, because I don't see it in both. I remember being able to edit it in the website itself, do you need to edit it in the source files now?
I guess I didn't add it in, will fix it soon.
edit: ok, pushed to github. thanks for the report
 
Last edited:
Initiate Mage
Joined
Mar 2, 2014
Messages
7
Reaction score
0
I have a problem. I try connecting to my Database "maple144". It says UNABLE to connect. I looked at my "MySQL Query Browser" and the Database is there. I look at PhPMyAdmin and that database is no where to be seen. Even on MySQL i checked my databases ( show databases; ) and it doesn't show "maple144". Heres my problem:

 
Joined
Jul 12, 2011
Messages
1,229
Reaction score
475
I have a problem. I try connecting to my Database "maple144". It says UNABLE to connect. I looked at my "MySQL Query Browser" and the Database is there. I look at PhPMyAdmin and that database is no where to be seen. Even on MySQL i checked my databases ( show databases; ) and it doesn't show "maple144". Heres my problem:


Is this hosted on a webhost?
 
Initiate Mage
Joined
Mar 2, 2014
Messages
7
Reaction score
0
Is this hosted on a webhost?

Hosted local-y and the server works fine.... but the server can see the maple144 but the website cannot....



What I mean is that I host my server on my PC. I use wamp to manage my things, but the MySQL q.browser does not have the same databases as my PhPMyAdmin OR MySQL Console( "show databases;" command). If some one could help me, that would be fine, but it will be in the afternoon because I'm working at the moment...
 
Joined
Jul 12, 2011
Messages
1,229
Reaction score
475
Just an update on the state of the CMS:
I feel that MapleBit is mature enough and that there are no longer huge, site breaking bugs to fix. I'm now working on experimental features, which are a lot of fun for me to code.
These features will not be integrated into the main branch until they are ready. You can tell if a site is running the experimental versions if the footer looks like this:
hx2O2Ni - [BETA] MapleBitCMS - RaGEZONE Forums


This is an example of a feature that I've began work on:
DV1ESIR - [BETA] MapleBitCMS - RaGEZONE Forums


I'm currently looking for one more server to run the gamma builds of the site. If you meet the following criteria, PM me:
- At least 15 accounts online during peak hours
- Comfortable with giving me full FTP access (as well as SQL access)
- 24/7 uptime

I'm currently pushing out a security fix, which will be considered to be a major patch. Please update your CMS's this weekend!
 

Attachments

You must be registered for see attachments list
Junior Spellweaver
Joined
Dec 21, 2008
Messages
108
Reaction score
69
Noticed that the "Character Info" page displayed job numbers rather than names. I borrowed the code from another page and replaced the job line with the following:

Code:
				<strong>Job:</strong> ";
				if ($c['job']=="000")
					echo "Beginner";
				if ($c['job']=="100")
					echo "Warrior";
				if ($c['job']=="110")
					echo "Fighter";
				if ($c['job']=="120")
					echo "Page";
				if ($c['job']=="130")
					echo "Spearman";
				if ($c['job']=="111")
					echo "Crusader";
				if ($c['job']=="121")
					echo "White Knight";
				if ($c['job']=="131")
					echo "Dragon Knight";
				if ($c['job']=="112")
					echo "Hero";
				if ($c['job']=="122")
					echo "Paladin";
				if ($c['job']=="132")
					echo "Dark Knight";
				if ($c['job']=="200")
					echo "Magician";
				if ($c['job']=="210")
					echo "Wizard";
				if ($c['job']=="220")
					echo "Wizard";
				if ($c['job']=="230")
					echo "Cleric";
				if ($c['job']=="211")
					echo "Mage";
				if ($c['job']=="221")
					echo "Mage";
				if ($c['job']=="231")
					echo "Priest";
				if ($c['job']=="212")
					echo "Arch Mage";
				if ($c['job']=="222")
					echo "Arch Mage";
				if ($c['job']=="232")
					echo "Bishop";
				if ($c['job']=="300")
					echo "Bowman";
				if ($c['job']=="310")
					echo "Hunter";
				if ($c['job']=="320")
					echo "Crossbowman";
				if ($c['job']=="311")
					echo "Ranger";
				if ($c['job']=="321")
					echo "Sniper";
				if ($c['job']=="312")
					echo "Bow Master";
				if ($c['job']=="322")
					echo "Crossbow Master";
				if ($c['job']=="400")
					echo "Thief";
				if ($c['job']=="410")
					echo "Assassin";
				if ($c['job']=="420")
					echo "Bandit";
				if ($c['job']=="411")
					echo "Hermit";
				if ($c['job']=="421")
					echo "Chief Bandit";
				if ($c['job']=="412")
					echo "Night Lord";
				if ($c['job']=="422")
					echo "Shadower";
				if ($c['job']=="500")
					echo "Pirate";
				if ($c['job']=="510")
					echo "Brawler";
				if ($c['job']=="520")
					echo "Gunslinger";
				if ($c['job']=="511")
					echo "Marauder";
				if ($c['job']=="521")
					echo "Buccaneer";
				if ($c['job']=="512")
					echo "Outlaw";
				if ($c['job']=="522")
					echo "Corsair";
				if ($c['job']=="900")
					echo "GMs";
				if ($c['job']=="910")
					echo "SuperGM";
				if ($c['job']=="1000")
					echo "Noblesse";
				if ($c['job']=="1100")
					echo "Dawn Warrior";
				if ($c['job']=="1110")
					echo "Dawn Warrior 2";
				if ($c['job']=="1111")
					echo "Dawn Warrior 3";
				if ($c['job']=="1112")
					echo "Dawn Warrior 4";
				if ($c['job']=="1200")
					echo "Flame Wizard";
				if ($c['job']=="1210")
					echo "Flame Wizard 2";
				if ($c['job']=="1211")
					echo "Flame Wizard 3";
				if ($c['job']=="1212")
					echo "Flame Wizard 4";
				if ($c['job']=="1300")
					echo "Wind Archer";
				if ($c['job']=="1310")
					echo "Wind Archer 2";
				if ($c['job']=="1311")
					echo "Wind Archer 3";
				if ($c['job']=="1312")
					echo "Wind Archer 4";
				if ($c['job']=="1400")
					echo "Night Walker";
				if ($c['job']=="1410")
					echo "Night Walker 2";
				if ($c['job']=="1411")
					echo "Night Walker 3";
				if ($c['job']=="1412")
					echo "Night Walker 4";
				if ($c['job']=="1500")
					echo "Thunder Breaker";
				if ($c['job']=="1510")
					echo "Thunder Breaker 2";
				if ($c['job']=="1511")
					echo "Thunder Breaker 3";
				if ($c['job']=="1512")
					echo "Thunder Breaker 4";
				if ($c['job']=="2000")
					echo "Legend";
				if ($c['job']=="2100")
					echo "Aran";
				if ($c['job']=="2111")
					echo "Aran 2";
				if ($c['job']=="2112")
					echo "Aran 3";
				echo "<br/>";

Of course it makes more sense to embed the job list as an include so that it only has to be updated once. I imagine this was on the to do list. Not a biggie. Just thought I'd throw it in here to help someone.
 
Joined
Jul 12, 2011
Messages
1,229
Reaction score
475
Noticed that the "Character Info" page displayed job numbers rather than names. I borrowed the code from another page and replaced the job line with the following:

Code:
				<strong>Job:</strong> ";
				if ($c['job']=="000")
					echo "Beginner";
				if ($c['job']=="100")
					echo "Warrior";
				if ($c['job']=="110")
					echo "Fighter";
				if ($c['job']=="120")
					echo "Page";
				if ($c['job']=="130")
					echo "Spearman";
				if ($c['job']=="111")
					echo "Crusader";
				if ($c['job']=="121")
					echo "White Knight";
				if ($c['job']=="131")
					echo "Dragon Knight";
				if ($c['job']=="112")
					echo "Hero";
				if ($c['job']=="122")
					echo "Paladin";
				if ($c['job']=="132")
					echo "Dark Knight";
				if ($c['job']=="200")
					echo "Magician";
				if ($c['job']=="210")
					echo "Wizard";
				if ($c['job']=="220")
					echo "Wizard";
				if ($c['job']=="230")
					echo "Cleric";
				if ($c['job']=="211")
					echo "Mage";
				if ($c['job']=="221")
					echo "Mage";
				if ($c['job']=="231")
					echo "Priest";
				if ($c['job']=="212")
					echo "Arch Mage";
				if ($c['job']=="222")
					echo "Arch Mage";
				if ($c['job']=="232")
					echo "Bishop";
				if ($c['job']=="300")
					echo "Bowman";
				if ($c['job']=="310")
					echo "Hunter";
				if ($c['job']=="320")
					echo "Crossbowman";
				if ($c['job']=="311")
					echo "Ranger";
				if ($c['job']=="321")
					echo "Sniper";
				if ($c['job']=="312")
					echo "Bow Master";
				if ($c['job']=="322")
					echo "Crossbow Master";
				if ($c['job']=="400")
					echo "Thief";
				if ($c['job']=="410")
					echo "Assassin";
				if ($c['job']=="420")
					echo "Bandit";
				if ($c['job']=="411")
					echo "Hermit";
				if ($c['job']=="421")
					echo "Chief Bandit";
				if ($c['job']=="412")
					echo "Night Lord";
				if ($c['job']=="422")
					echo "Shadower";
				if ($c['job']=="500")
					echo "Pirate";
				if ($c['job']=="510")
					echo "Brawler";
				if ($c['job']=="520")
					echo "Gunslinger";
				if ($c['job']=="511")
					echo "Marauder";
				if ($c['job']=="521")
					echo "Buccaneer";
				if ($c['job']=="512")
					echo "Outlaw";
				if ($c['job']=="522")
					echo "Corsair";
				if ($c['job']=="900")
					echo "GMs";
				if ($c['job']=="910")
					echo "SuperGM";
				if ($c['job']=="1000")
					echo "Noblesse";
				if ($c['job']=="1100")
					echo "Dawn Warrior";
				if ($c['job']=="1110")
					echo "Dawn Warrior 2";
				if ($c['job']=="1111")
					echo "Dawn Warrior 3";
				if ($c['job']=="1112")
					echo "Dawn Warrior 4";
				if ($c['job']=="1200")
					echo "Flame Wizard";
				if ($c['job']=="1210")
					echo "Flame Wizard 2";
				if ($c['job']=="1211")
					echo "Flame Wizard 3";
				if ($c['job']=="1212")
					echo "Flame Wizard 4";
				if ($c['job']=="1300")
					echo "Wind Archer";
				if ($c['job']=="1310")
					echo "Wind Archer 2";
				if ($c['job']=="1311")
					echo "Wind Archer 3";
				if ($c['job']=="1312")
					echo "Wind Archer 4";
				if ($c['job']=="1400")
					echo "Night Walker";
				if ($c['job']=="1410")
					echo "Night Walker 2";
				if ($c['job']=="1411")
					echo "Night Walker 3";
				if ($c['job']=="1412")
					echo "Night Walker 4";
				if ($c['job']=="1500")
					echo "Thunder Breaker";
				if ($c['job']=="1510")
					echo "Thunder Breaker 2";
				if ($c['job']=="1511")
					echo "Thunder Breaker 3";
				if ($c['job']=="1512")
					echo "Thunder Breaker 4";
				if ($c['job']=="2000")
					echo "Legend";
				if ($c['job']=="2100")
					echo "Aran";
				if ($c['job']=="2111")
					echo "Aran 2";
				if ($c['job']=="2112")
					echo "Aran 3";
				echo "<br/>";

Of course it makes more sense to embed the job list as an include so that it only has to be updated once. I imagine this was on the to do list. Not a biggie. Just thought I'd throw it in here to help someone.

Hey I think I sent you a PM a while ago. Could you reupload that .zip with all the programs you used to generate the GD?
Can't see images ,
[/URL]

I think you messed with the base URL of the CMS. Try reinstalling it.
 
Joined
Aug 24, 2009
Messages
1,221
Reaction score
170
Hey I think I sent you a PM a while ago. Could you reupload that .zip with all the programs you used to generate the GD?


I think you messed with the base URL of the CMS. Try reinstalling it.

well the installation all i did was type in the links the rate and the name i left the site path blank and samething happens everytime.
 
Junior Spellweaver
Joined
Dec 21, 2008
Messages
108
Reaction score
69
I actually lost the files on accident, but as far as the programs go, I referenced them all in the first post of the thread over there. I liked what iAkira was doing with JSON, and I am also interested in using Diamondo's method from his mapler.me source, since he said it "...has support for effects and such and isn't bound to per-item type rendering." It's not very motivating to work on something like that, though, when the current GD in MapleBit works great.

Also, great job on the CMS. It's really nice.
NyCPirate: Right click > View Source > Copy your source and paste it here... I can help you if you do that.
 
Last edited:
Back
Top