LightMS - CMS

Results 1 to 2 of 2
  1. #1
    Apprentice Linnxy is offline
    MemberRank
    Jul 2012 Join Date
    8Posts

    big grin LightMS - CMS

    Hi guys

    Currently i am working on a CMS for MapleStory Private Servers.
    Its the old DarKCMS

    Done so far
    Login, Logout, News, Register

    Todo:
    Downloads, Commands, CashShop, Lost Password, Ranking
    Account, PM, community / forums ,Guide, Public Banlist, Administration

    ScreenShots
    Home: https://postimg.org/image/ewkutaddf/
    Home Loggedin: https://postimg.org/image/go365ql3h/
    Login: https://postimg.org/image/e5malvaot/87e6cf37/
    Register: https://postimg.org/image/8kx1qw1w3/

    Updated MapleTip Image Fetcher
    PHP Code:
    <?php

    /**
     * @author aRc0n
     * [MENTION=822345]Copyright[/MENTION] 2017
     */

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

    $ch curl_init();

    curl_setopt($chCURLOPT_URL$uri);
    curl_setopt($chCURLOPT_SSL_VERIFYPEERfalse);
    curl_setopt($chCURLOPT_RETURNTRANSFERtrue);

    $Show curl_exec($ch);

    curl_close($ch);

    echo 
    $Show;
    Usage - <img src="*.php?itemid=itemid" /> or use mapid / monsterid

    Tips and suggestions are welcome!
    Last edited by Linnxy; 03-03-17 at 07:11 AM.


  2. #2
    Novice ikwileten12 is offline
    MemberRank
    May 2014 Join Date
    2Posts

    Re: LightMS - CMS

    May I suggest using Guzzle for curl calls?



Advertisement