DarKCMS

Status
Not open for further replies.
Newbie Spellweaver
Joined
Apr 18, 2009
Messages
11
Reaction score
0
Hi guys,
Currently i am working on a new CMS for MapleStory Private Servers.
Tips and suggestions are welcome

Done so far
Login, Logout, Downloads, Commands

Todo:
CashShop, Register, Lost Password, Ranking
Account, PM, community / forums ,News / Events / Notice
Guide, Public Banlist, Administration

DarKCMS Features

Commands
- Using MySQL
- Admin can Edit / Add or delete commands
- GM Commands ( only showing when you are gm )

Downloads
- Using MySQL
- Admin can Edit / Add or delete downloads

User System
- Users can login / Login

CashShop
- Using MySQL
- Admin can Edit / Add or delete items
- You can set it to nxCash or Mesos

Other
- Modal dialog (AJAX)
- Prototip (AJAX)
- Header / Footer system
- All MapleTip items, etc .... You can now fetch with cURL easy

MapleTip Image Fetcher
PHP:
<?php

/**
 * @author aRc0n
 * @copyright 2009
 */

if( isset( $_GET['itemid'] ) )
{
	$ItemID = $_GET['itemid'];
	$uri    = "http://images.mapletip.com/maplestory-monsters/0".$ItemID.".png";
}
elseif( isset( $_GET['mapid'] ) )
{
	$MapID = $_GET['mapid'];
	$uri   = "http://images.mapletip.com/new-maps/".$MapID.".png";
}
elseif( isset( $_GET['monsterid'] ) )
{
	$MonsterID = $_GET['monsterid'];
	$uri       = "http://images.mapletip.com/new-monsters/".$MonsterID.".png";
}

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, $uri);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

$Show = curl_exec($ch);

curl_close($ch);

echo $Show; 
?>

for ppl that can use this,
its a simpel image fetcher with cURL its easy to use and fast
Usage - <img src="mapletip.php?itemid=itemid" /> or use mapid / monsterid

ScreenShots
Login:
CashShop: /
Downloads:
Commands: /
 
Last edited:
Looks very simpe.
goodjob, the banner is awesome , pretty muc white but i like it.
Keep up the good work and make sure realese it s00n :)
 
Put a color on it and add some stuff to the layout cus its very ugly right now but it has potential to be awesome :]
 
why the fuck do you have curl in there?

have fun explaining to people on how to make it work... LOL

(i know what curl is, i had someone explain it to me about a month ago)

fyi curl is another library so have fun figuring out how to make it work

EDIT:
i guess you didnt test the snippet your posted. if thats the correct one your using.
Code:
$uri    = "http://images.mapletip.com/maplestory-monsters/".$ItemID.".png";
wouldnt work for if i use the item id 1000000, i get a 404 - Not Found error. add a 0 before ".$itemID."
Code:
$uri    = "http://images.mapletip.com/maplestory-monsters/0".$ItemID.".png";

i know the db doesnt post the ids like 01000000. just pointing out a flaw in your snippet
 
why the fuck do you have curl in there?

have fun explaining to people on how to make it work... LOL

(i know what curl is, i had someone explain it to me about a month ago)

fyi curl is another library so have fun figuring out how to make it work

EDIT:
i guess you didnt test the snippet your posted. if thats the correct one your using.
Code:
$uri    = "http://images.mapletip.com/maplestory-monsters/".$ItemID.".png";
wouldnt work for if i use the item id 1000000, i get a 404 - Not Found error. add a 0 before ".$itemID."
Code:
$uri    = "http://images.mapletip.com/maplestory-monsters/0".$ItemID.".png";

i know the db doesnt post the ids like 01000000. just pointing out a flaw in your snippet

why the fuck do you have curl in there?
it's easy

have fun explaining to people on how to make it work... LOL


fyi curl is another library so have fun figuring out how to make it work
its not hard 2 got it worked just load your php_curl extension and a good hoster has php_curl enabled

wouldnt work for if i use the item id 1000000, i get a 404 - Not Found error. add a 0 before ".$itemID."
forgot :lol:
 
why the fuck do you have curl in there?
it's easy

have fun explaining to people on how to make it work... LOL


fyi curl is another library so have fun figuring out how to make it work
its not hard 2 got it worked just load your php_curl extension and a good hoster has php_curl enabled

wouldnt work for if i use the item id 1000000, i get a 404 - Not Found error. add a 0 before ".$itemID."
forgot :lol:
1. i agree that its easy but most wont
2. that doesnt explain how it works to the full extent. just explains the variables.
3. thats one way to make it work
4. lol

im not going to bash you about it because it seems you know what your doing. keep up the good work
 
If you are still working on this here's a hint, make the bg a light gray, fix the banner [horrible], fix your main section as it looks like you stole stuff from a free template and edited and added a few things

-Kira
 
Status
Not open for further replies.
Back