Illumina CMS [PHP, OOP, Phoenix/Butterfly, Updated]

Page 8 of 26 FirstFirst 1234567891011121314151618 ... LastLast
Results 106 to 120 of 376
  1. #106
    Novice SuperBored is offline
    MemberRank
    Mar 2013 Join Date
    4Posts

    Re: [REL] Illumina CMS [PHP, OOP, MySQLi, Uber 3]

    How do you fix the white client screen (-CLICK ME-)? And these problems -CLICK ME-

  2. #107
    :joy: Jonteh is offline
    MemberRank
    Apr 2007 Join Date
    New York, USALocation
    3,375Posts

    Re: [REL] Illumina CMS [PHP, OOP, MySQLi, Uber 3]

    Quote Originally Posted by SuperBored View Post
    How do you fix the white client screen (-CLICK ME-)? And these problems -CLICK ME-
    Your white client suggests incorrect SWF setup. Does your Habbo.swf exist?

    As for the other errors, try replacing userprofile.php with this one.
    #7109914 - Pastie

  3. #108
    No, Just no. Matthew is offline
    MemberRank
    Jul 2008 Join Date
    United KingdomLocation
    1,408Posts

    Re: [REL] Illumina CMS [PHP, OOP, MySQLi, Uber 3]

    Quote Originally Posted by iJak View Post
    Turn show_errors off in PHP.ini. Fixes all your problems
    LALALLALALA I CAN'T SEE THE PROBLEM IT DOESN'T EXIST NOTHING WRONG HERE!!!

    That's the kind of attitude which gives PHP a bad name in the development community.

  4. #109
    Member SuperShane is offline
    MemberRank
    Jun 2007 Join Date
    90Posts

    Re: [REL] Illumina CMS [PHP, OOP, MySQLi, Uber 3]

    I Carnt seem to log into my housekeeping, it says Incorrect login. and yes I am using the correct details..

  5. #110
    :joy: Jonteh is offline
    MemberRank
    Apr 2007 Join Date
    New York, USALocation
    3,375Posts

    Re: [REL] Illumina CMS [PHP, OOP, MySQLi, Uber 3]

    Quote Originally Posted by SuperShane View Post
    I Carnt seem to log into my housekeeping, it says Incorrect login. and yes I am using the correct details..
    Are you using the correct hashing method? Which CMS were you using before you moved to Illumina?

  6. #111
    Proficient Member owot is offline
    MemberRank
    Jun 2010 Join Date
    185Posts

    Re: [REL] Illumina CMS [PHP, OOP, MySQLi, Uber 3]

    Quote Originally Posted by SuperShane View Post
    I Carnt seem to log into my housekeeping, it says Incorrect login. and yes I am using the correct details..
    Your minrank in hk_fuses.sql for login is probably higher than your rank, Zap uses a lot of ranks ;P

  7. #112
    Apprentice Ruthie3ondeau is offline
    MemberRank
    Mar 2013 Join Date
    6Posts

    Re: [REL] Illumina CMS [PHP, OOP, MySQLi, Uber 3]

    I highly recommend using Apache with this.

  8. #113
    Apprentice Zayy is offline
    MemberRank
    Mar 2013 Join Date
    14Posts

    Re: [REL] Illumina CMS [PHP, OOP, MySQLi, Uber 3]

    Hey,

    I thought I would contribute something that is fairly helpful to the people who use this, because in every CMS that I’ve seen Jonteh release he has never implemented a failsafe for use against TheHabbos.org.

    Effectively if you are using TheHabbos or VotingAPI your site can be rendered useless as soon as somebody attacks either of them websites.

    To combat this, all you need to do is check to see if the website is online before forcing the redirect to the website, to achieve this just use my code as found below and as soon as the VotingAPI is down your users will not be directed to that website.

    1) Go to engine/lightcms.php and add the following code at the very bottom of the lightcms.php page; before the closing }

    Code:
            public function checkVoting ()
            {
                $chk = curl_init("http://www.votingapi.com");
                curl_setopt($chk, CURLOPT_CONNECTTIMEOUT, 10);
                curl_setopt($chk, CURLOPT_HEADER, true);
                curl_setopt($chk, CURLOPT_NOBODY, true);
                curl_setopt($chk, CURLOPT_RETURNTRANSFER, true);
    
                $chkDown = curl_exec($chk);
                curl_close($chk);
    
                if ($chkDown) return true;
                return false;
            }
    2) Go to /client.php & /index.php and change the following code from this

    Code:
        if(!isset($_GET["novote"]) && $light->thehabbos_enabled) {
            $vote_uri = str_replace('/', '!', WWW);
            header ("Location: http://votingapi.com/vote.php?username=" . $light->thehabbos_username . "&api=" . $vote_uri . "!?novote");
        }
    to this

    Code:
        if(!isset($_GET["novote"]) && $light->thehabbos_enabled && $light->checkVoting() == true) {
            $vote_uri = str_replace('/', '!', WWW);
            header ("Location: http://votingapi.com/vote.php?username=" . $light->thehabbos_username . "&api=" . $vote_uri . "!client?novote");
        }

  9. #114
    :joy: Jonteh is offline
    MemberRank
    Apr 2007 Join Date
    New York, USALocation
    3,375Posts

    Re: [REL] Illumina CMS [PHP, OOP, MySQLi, Uber 3]

    Quote Originally Posted by Zayy View Post
    Hey,

    I thought I would contribute something that is fairly helpful to the people who use this, because in every CMS that I’ve seen Jonteh release he has never implemented a failsafe for use against TheHabbos.org.

    Effectively if you are using TheHabbos or VotingAPI your site can be rendered useless as soon as somebody attacks either of them websites.

    To combat this, all you need to do is check to see if the website is online before forcing the redirect to the website, to achieve this just use my code as found below and as soon as the VotingAPI is down your users will not be directed to that website.

    1) Go to engine/lightcms.php and add the following code at the very bottom of the lightcms.php page; before the closing }

    Code:
            public function checkVoting ()
            {
                $chk = curl_init("http://www.votingapi.com");
                curl_setopt($chk, CURLOPT_CONNECTTIMEOUT, 10);
                curl_setopt($chk, CURLOPT_HEADER, true);
                curl_setopt($chk, CURLOPT_NOBODY, true);
                curl_setopt($chk, CURLOPT_RETURNTRANSFER, true);
    
                $chkDown = curl_exec($chk);
                curl_close($chk);
    
                if ($chkDown) return true;
                return false;
            }
    2) Go to /client.php & /index.php and change the following code from this

    Code:
        if(!isset($_GET["novote"]) && $light->thehabbos_enabled) {
            $vote_uri = str_replace('/', '!', WWW);
            header ("Location: http://votingapi.com/vote.php?username=" . $light->thehabbos_username . "&api=" . $vote_uri . "!?novote");
        }
    to this

    Code:
        if(!isset($_GET["novote"]) && $light->thehabbos_enabled && $light->checkVoting() == true) {
            $vote_uri = str_replace('/', '!', WWW);
            header ("Location: http://votingapi.com/vote.php?username=" . $light->thehabbos_username . "&api=" . $vote_uri . "!client?novote");
        }
    Thanks.

    I used to have a fsockopen based solution with a 1s timeout but sometimes the API goes slow as well and it loses me votes. Feel free to integrate it yourself, but I'm happy with how it works at the moment.

    Thanks again :)

  10. #115
    Account Upgraded | Title Enabled! BoomHotel is offline
    MemberRank
    Oct 2008 Join Date
    In a box.Location
    372Posts

    Re: [REL] Illumina CMS [PHP, OOP, MySQLi, Uber 3]

    Quote Originally Posted by SuperBored View Post
    How do you fix the white client screen (-CLICK ME-)? And these problems -CLICK ME-
    Turn off errors displaying in PHP.ini

  11. #116
    Proficient Member Redirected is offline
    MemberRank
    Feb 2013 Join Date
    192Posts

    Re: [REL] Illumina CMS [PHP, OOP, MySQLi, Uber 3]

    no editing news in hk wow :L

  12. #117
    Apprentice Zayy is offline
    MemberRank
    Mar 2013 Join Date
    14Posts

    Re: [REL] Illumina CMS [PHP, OOP, MySQLi, Uber 3]

    Quote Originally Posted by Redirected View Post
    no editing news in hk wow :L
    I think you should be aware that the housekeeping does contain the needed ‘module’ for writing news.

    Code:
    - <a href='?_page=writenews'>Write news article</a>
    It's on the writenews.php item in the pages directory.

  13. #118
    :joy: Jonteh is offline
    MemberRank
    Apr 2007 Join Date
    New York, USALocation
    3,375Posts

    Re: [REL] Illumina CMS [PHP, OOP, MySQLi, Uber 3]

    Quote Originally Posted by Redirected View Post
    no editing news in hk wow :L
    It's on the 'to-do' list. Either wait for an update or code it yourself.

  14. #119
    Brad Bradshly is offline
    MemberRank
    Aug 2007 Join Date
    Ragezone :DLocation
    611Posts

    Re: [REL] Illumina CMS [PHP, OOP, MySQLi, Uber 3]

    My client don't load it just goes black after the bar goes accross?

  15. #120
    :joy: Jonteh is offline
    MemberRank
    Apr 2007 Join Date
    New York, USALocation
    3,375Posts

    Re: [REL] Illumina CMS [PHP, OOP, MySQLi, Uber 3]

    Quote Originally Posted by Bradshly View Post
    My client don't load it just goes black after the bar goes accross?
    This isn't a problem with the CMS. It's a problem with your Emulator or SWF config.



Advertisement