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!

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

Status
Not open for further replies.
Initiate Mage
Joined
Mar 2, 2013
Messages
3
Reaction score
0
Re: [REL] Illumina CMS [PHP, OOP, MySQLi, Uber 3]

Warning: require(engine/classes/ext/class_raintpl.php): failed to open stream: No such file or directory in C:\xampp\htdocs\app\tpl\skins\SomeCMS\engine\lightcms.php on line 75

Fatal error: require(): Failed opening required 'engine/classes/ext/class_raintpl.php' (include_path='.;C:\xampp\php\PEAR') in C:\xampp\htdocs\app\tpl\skins\SomeCMS\engine\lightcms.php on line 75

Whats that mean?
 

Jax

C# Programmer
Joined
Dec 11, 2009
Messages
881
Reaction score
431
Re: [REL] Illumina CMS [PHP, OOP, MySQLi, Uber 3]

Warning: require(engine/classes/ext/class_raintpl.php): failed to open stream: No such file or directory in C:\xampp\htdocs\app\tpl\skins\SomeCMS\engine\lightcms.php on line 75

Fatal error: require(): Failed opening required 'engine/classes/ext/class_raintpl.php' (include_path='.;C:\xampp\php\PEAR') in C:\xampp\htdocs\app\tpl\skins\SomeCMS\engine\lightcms.php on line 75

Whats that mean?


Turn show_errors off in PHP.ini. Fixes all your problems :):
 
Joined
Feb 5, 2010
Messages
415
Reaction score
244
Re: [REL] Illumina CMS [PHP, OOP, MySQLi, Uber 3]

Warning: require(engine/classes/ext/class_raintpl.php): failed to open stream: No such file or directory in C:\xampp\htdocs\app\tpl\skins\SomeCMS\engine\lightcms.php on line 75

Fatal error: require(): Failed opening required 'engine/classes/ext/class_raintpl.php' (include_path='.;C:\xampp\php\PEAR') in C:\xampp\htdocs\app\tpl\skins\SomeCMS\engine\lightcms.php on line 75

Whats that mean?

Because you put the CMS as a RevCMS skin..?

Turn show_errors off in PHP.ini. Fixes all your problems :):

... No.
 
Joined
Apr 30, 2007
Messages
2,339
Reaction score
1,547
Re: [REL] Illumina CMS [PHP, OOP, MySQLi, Uber 3]

Warning: require(engine/classes/ext/class_raintpl.php): failed to open stream: No such file or directory in C:\xampp\htdocs\app\tpl\skins\SomeCMS\engine\lightcms.php on line 75

Fatal error: require(): Failed opening required 'engine/classes/ext/class_raintpl.php' (include_path='.;C:\xampp\php\PEAR') in C:\xampp\htdocs\app\tpl\skins\SomeCMS\engine\lightcms.php on line 75

Whats that mean?

It means you didn't follow the instructions in the first post.
 
Initiate Mage
Joined
Mar 17, 2013
Messages
4
Reaction score
0
Re: [REL] Illumina CMS [PHP, OOP, MySQLi, Uber 3]

How do you fix the white client screen ? And these problems
 
Joined
Apr 30, 2007
Messages
2,339
Reaction score
1,547
Re: [REL] Illumina CMS [PHP, OOP, MySQLi, Uber 3]

How do you fix the white client screen ? And these problems

Your white client suggests incorrect SWF setup. Does your Habbo.swf exist?

As for the other errors, try replacing userprofile.php with this one.
 
Newbie Spellweaver
Joined
Jun 2, 2007
Messages
26
Reaction score
0
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..
 
Junior Spellweaver
Joined
Jun 1, 2010
Messages
152
Reaction score
27
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..
Your minrank in hk_fuses.sql for login is probably higher than your rank, Zap uses a lot of ranks ;P
 
Newbie Spellweaver
Joined
Mar 26, 2013
Messages
6
Reaction score
0
Re: [REL] Illumina CMS [PHP, OOP, MySQLi, Uber 3]

I highly recommend using Apache with this.
Jonteh - Illumina CMS [PHP, OOP, Phoenix/Butterfly, Updated] - RaGEZONE Forums
Jonteh - Illumina CMS [PHP, OOP, Phoenix/Butterfly, Updated] - RaGEZONE Forums
Jonteh - Illumina CMS [PHP, OOP, Phoenix/Butterfly, Updated] - RaGEZONE Forums
Jonteh - Illumina CMS [PHP, OOP, Phoenix/Butterfly, Updated] - RaGEZONE Forums
Jonteh - Illumina CMS [PHP, OOP, Phoenix/Butterfly, Updated] - RaGEZONE Forums
Jonteh - Illumina CMS [PHP, OOP, Phoenix/Butterfly, Updated] - RaGEZONE Forums
 
Newbie Spellweaver
Joined
Mar 26, 2013
Messages
13
Reaction score
1
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");
    }
 
Joined
Apr 30, 2007
Messages
2,339
Reaction score
1,547
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");
    }

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 :)
 
Experienced Elementalist
Joined
Oct 17, 2008
Messages
293
Reaction score
64
Re: [REL] Illumina CMS [PHP, OOP, MySQLi, Uber 3]

How do you fix the white client screen ? And these problems

Turn off errors displaying in PHP.ini
 
Junior Spellweaver
Joined
Feb 7, 2013
Messages
187
Reaction score
19
Re: [REL] Illumina CMS [PHP, OOP, MySQLi, Uber 3]

no editing news in hk wow :L
 
Newbie Spellweaver
Joined
Mar 26, 2013
Messages
13
Reaction score
1
Re: [REL] Illumina CMS [PHP, OOP, MySQLi, Uber 3]

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.
 
Brad
Joined
Aug 8, 2007
Messages
422
Reaction score
14
Re: [REL] Illumina CMS [PHP, OOP, MySQLi, Uber 3]

My client don't load it just goes black after the bar goes accross?
 
Status
Not open for further replies.
Back
Top