[Release] ImperiaMuCMS 1.1.1 Nulled (license removed)

Page 5 of 5 FirstFirst 12345
Results 61 to 75 of 75
  1. #61
    Account Upgraded | Title Enabled! ADMTec is offline
    MemberRank
    Aug 2011 Join Date
    469Posts

    Re: [Release] ImperiaMuCMS 1.1.1 Nulled (license removed)

    Quote Originally Posted by DevCrypto View Post
    Thank you i will wait for that but yeah i tried the decrypted one but its not even working it will just show a white screen when i check the localhost but the encrypted one works fine without any problem

    127/5000
    I had the same white screen problem after I decrypted it, as I'm not a programmer, I could not solve it!

    here is the link for decrypted files!
    https://mega.nz/#!TRYASADD!exZ2O4veu...AShPlYkKsNVjI4

  2. #62
    Member DevCrypto is offline
    MemberRank
    Nov 2015 Join Date
    127.0.0.1Location
    90Posts

    Re: [Release] ImperiaMuCMS 1.1.1 Nulled (license removed)

    Quote Originally Posted by ADMTec View Post
    127/5000
    I had the same white screen problem after I decrypted it, as I'm not a programmer, I could not solve it!

    here is the link for decrypted files!
    https://mega.nz/#!TRYASADD!exZ2O4veu...AShPlYkKsNVjI4
    i already have that from your previews comment but that one have too much php errors

  3. #63
    Account Upgraded | Title Enabled! nofeara is offline
    MemberRank
    Nov 2009 Join Date
    510Posts
    Quote Originally Posted by Lautaro View Post
    If I remember correctly, yea, I managed to get the site working with that decrypted source code shared by Young. I have it buried somewhere in my external hdd's, i'll look for it when i have some time i guess.

    But it's fairly simple to do, all you have to do it run that decrypted source code and check your PHP error log, fix all the syntax errors that you get and that's pretty much it. The php errors will tell you exactly which file and line is the error, so those syntax errors are very easy to spot.
    Hi, i can add items into the market and can see it in the latest market items:



    But if i go into the market it is not listing anything so i can't purchase anything:



    This part seems doing the job and seems cannot pull out in array information but if i add the decrypted class to test it further my page turns plain white:

    PHP Code:
    $page $_GET['page'];
        
    $name_filter $_GET['search'];
        
    $category_filter $_GET['cat'];
        
    $token time();
        
    $_SESSION['token'] = $token;
        
    $items $Market->getMarketItems($page$name_filter$category_filter);
        if (
    is_array($items)) {
            
            echo 
    '<ul class="items">';
            foreach (
    $items as $thisItem) {
                
    $itemData $Items->ItemInfo($thisItem['item']);
                
    $price $Market->showStyledPrice($thisItem['price_type'], $thisItem['price']);
                
    $itemDb $Market->getItemInfo($itemData['type'], $itemData['id'], $thisItem['sticklevel']);
                
    $seller $thisItem['seller'];
                if (
    $itemDb['exc']) {
                    
    $level '+'.$itemData['level'].'';
                } else {
                    
    $level '';
                }

                if (
    $itemData['level']) {
                    
    $itemData['level'] = ' +'.$itemData['level'];
                } else {
                    
    $itemData['level'] = null;
                }

                if (
    $itemData['luck']) {
                    
    $luck '<br><font color=#9aadd5>'.$itemData['luck'].'</font>';
                } else {
                    
    $luck '';
                }

                if (
    $itemData['skill']) {
                    
    $skill '<br><font color=#9aadd5>'.$itemData['skill'].'</font>';
                } else {
                    
    $skill '';
                }

                if (
    $itemData['opt']) {
                    
    $option '<font color=#9aadd5>'.$itemData['opt'].'</font>';
                } else {
                    
    $option '';
                }

                if (
    $itemData['exl']) {
                    
    $exl '<font color=#4d668d>'.str_replace('^^''<br>'$itemData['exl']).'</font>';
                } else {
                    
    $exl '';
                }

                if (
    $itemData['ancsetopt']) {
                    
    $ancsetopt '<font color=#9aadd5>'.str_replace('^^''<br>'$itemData['ancsetopt']).'</font>';
                } else {
                    
    $ancsetopt '';
                }

                
    $exl str_replace("'""\\'"$exl);
                echo 
    "\r\n                      <li class=\"item\">\r\n                        <div id=\"hover\"></div>\r\n                        <span onmouseover=\"Tip('<center><img src=".$itemData['thumb'].'><br /><font color=yellow><br>'.lang('market_txt_100'true).' '.$itemData['sn2'].$itemData['sn'].'</font><br><font color=white><br>'.lang('market_txt_101'true).' '.$itemData['dur'].'</font><br><font color=#FF99CC>'.$itemData['jog'].'</font><font color=FFCC00>'.$itemData['harm'].'</font><br>'.$option.' '.$luck.' '.$skill.' '.$exl.' <br>'.$ancsetopt.'<br><font color=#4d668d>'.$itemData['socket'].'</font><br><br><span class=itemTooltipClassReq>'.$itemInfo['classReq']."</span></center>', TITLEFONTCOLOR, '".$itemData['color']."',TITLE,'".addslashes($itemData['name']).$itemData['level']."',TITLEBGCOLOR,'".$itemData['anco']."')\" onmouseout=\"UnTip()\">\r\n                          <img id=\"icon\" class=\"q4\" src=\"".$itemData['thumb']."\">\r\n                        </span>\r\n                        <div id=\"middle\"> \r\n                        <span style=\"color:".$itemData['color'].';background-color:'.$itemData['anco'].'; padding: 2px 2px 2px 2px;">'.$itemData['name'].' '.$level.'</span> | '.$price;
                if (
    mconfig('hide_author')) {
                    echo 
    '<p>'.sprintf(lang('market_txt_198'true), date($config['time_date_format'], strtotime($thisItem['start_date']))).'</p>';
                } else {
                    echo 
    '<p>'.sprintf(lang('market_txt_189'true), $thisItem['seller'], date($config['time_date_format'], strtotime($thisItem['start_date']))).'</p>';
                }

                echo 
    "\r\n                        </div>\r\n                        <form name=\"item\" method=\"post\">\r\n                          <input type=\"hidden\" name=\"".Encode('id').'" value="'.Encode($thisItem['id'])."\">\r\n                          <input type=\"hidden\" name=\"token\" value=\"".$token.'">';
                if (
    $_SESSION['username'] === $seller) {
                    echo 
    '<input type="submit" name="buyitem" value="'.lang('market_txt_190'true)."\" onclick=\"javascript:if(!confirm('".lang('market_txt_200'true)."')){ return false; }\"/ class=\"simple_button purchase_button\">";
                } else {
                    echo 
    '<input type="submit" name="buyitem" value="'.lang('market_txt_191'true)."\" onclick=\"javascript:if(!confirm('".lang('market_txt_199'true)."')){ return false; }\"/ class=\"simple_button purchase_button\">";
                }

                echo 
    "\r\n                        </form>\r\n                        <div class=\"clear\"></div>\r\n                      </li>";
            }
            echo 
    '</ul>';
        } else {
            
    message('info'lang('market_txt_192'true));
        } 
    Any input guys?

    @Young

    ...Update...

    Ok Lol hahaha i fixed it....

    I was using sql server 2008, and some sql syntax are not allowed on that version... so i moved into a higher one and got it fixed...

    and now my fcking problem is i can't buy the item hahahhaha....

    ...Update...

    ok lol so i fixed that aswell, i just put back the encrypted one for usercp/market... market system is working fine now :)
    Last edited by allexander; 30-03-20 at 04:35 AM.

  4. #64
    Enthusiast eurus is offline
    MemberRank
    Mar 2020 Join Date
    30Posts

    Re: [Release] ImperiaMuCMS 1.1.1 Nulled (license removed)

    Please help how to edit front page? I want to edit the welcome to imperia cms

  5. #65
    Account Upgraded | Title Enabled! nofeara is offline
    MemberRank
    Nov 2009 Join Date
    510Posts

    Re: [Release] ImperiaMuCMS 1.1.1 Nulled (license removed)

    Quote Originally Posted by eurus View Post
    Please help how to edit front page? I want to edit the welcome to imperia cms
    go to includes language find that text...

  6. #66
    Enthusiast eurus is offline
    MemberRank
    Mar 2020 Join Date
    30Posts

    Re: [Release] ImperiaMuCMS 1.1.1 Nulled (license removed)

    can i find it in admin panel sir?

    - - - Updated - - -

    how about server settings please help how to edit

    - - - Updated - - -

    how fix ranking please help

    - - - Updated - - -

    how to edit about sir please help

    - - - Updated - - -

    I HAVE FIXED MY OTHER PROBLEMS BUT RANKING I DON'T KNOW HOW TO FIX PLEASE HELP SOMEONE PLEASE HELP PLEASE.

  7. #67
    Novice DPKGZone is offline
    MemberRank
    Dec 2017 Join Date
    4Posts

    Re: [Release] ImperiaMuCMS 1.1.1 Nulled (license removed)

    you need to run cron

  8. #68
    Proficient Member VadimashRS is offline
    MemberRank
    Sep 2011 Join Date
    191Posts

    Re: [Release] ImperiaMuCMS 1.1.1 Nulled (license removed)

    2.0.7 copy paste?)

  9. #69
    Apprentice PlayersMU is offline
    MemberRank
    Jul 2021 Join Date
    9Posts

    Re: [Release] ImperiaMuCMS 1.1.1 Nulled (license removed)

    Quote Originally Posted by VadimashRS View Post
    2.0.7 copy paste?)


    - - - Updated - - -

    now you can cry quietly sir jacubb
    Last edited by PlayersMU; 20-10-21 at 05:38 PM.

  10. #70
    ImperiaMuCMS CEO jacubb is offline
    MemberRank
    Jul 2011 Join Date
    SlovakiaLocation
    1,507Posts

    Re: [Release] ImperiaMuCMS 1.1.1 Nulled (license removed)

    Quote Originally Posted by PlayersMU View Post
    no is 2.0.15

    https://mega.nz/file/pgc1XYiT#UVs451...kaTr-Ou7Tecnvw

    - - - Updated - - -

    now you can cry quietly sir jacubb
    So you're not able to profit on someone else's work so you decided to release it? Just wow. Your life must be very sad.

  11. #71
    Apprentice PlayersMU is offline
    MemberRank
    Jul 2021 Join Date
    9Posts

    Re: [Release] ImperiaMuCMS 1.1.1 Nulled (license removed)

    Quote Originally Posted by jacubb View Post
    So you're not able to profit on someone else's work so you decided to release it? Just wow. Your life must be very sad.
    why be sad when it can be beautiful and long :))
    Last edited by PlayersMU; 13-08-21 at 07:58 PM.

  12. #72
    Apprentice Artea is offline
    MemberRank
    Oct 2004 Join Date
    PortugalLocation
    5Posts

    Re: [Release] ImperiaMuCMS 1.1.1 Nulled (license removed)

    Good Job Leecher! ;)

  13. #73
    Novice Fazil is offline
    MemberRank
    Oct 2021 Join Date
    2Posts

    Re: [Release] ImperiaMuCMS 1.1.1 Nulled (license removed)

    Hello!
    Excuse for troubling
    I wanted to ask for help

    https://ibb.co/FXcfWtt
    https://ibb.co/h8tsHqq

    Throws an error at the end

    How can I fix this?

  14. #74
    Account Upgraded | Title Enabled! FCV2005 is offline
    MemberRank
    Mar 2007 Join Date
    RomaniaLocation
    1,080Posts

    Re: [Release] ImperiaMuCMS 1.1.1 Nulled (license removed)

    Quote Originally Posted by Fazil View Post
    Hello!
    Excuse for troubling
    I wanted to ask for help

    https://ibb.co/FXcfWtt
    https://ibb.co/h8tsHqq

    Throws an error at the end

    How can I fix this?
    just run it via query

  15. #75
    Novice Fazil is offline
    MemberRank
    Oct 2021 Join Date
    2Posts

    Re: [Release] ImperiaMuCMS 1.1.1 Nulled (license removed)

    Quote Originally Posted by FCV2005 View Post
    just run it via query
    I am still studying
    therefore I am not familiar with many subtleties

    I can ask you to explain in more detail
    if it is not hard for you



Page 5 of 5 FirstFirst 12345

Advertisement