[TUT] How to make r63b Habbo Retro

Did this tutorial help you?


  • Total voters
    142
Status
Not open for further replies.

SideSyd

New Member
Jul 25, 2013
4
2
Black screen when I launch, I cleaned my cache and the rest, and in Bcstorm, there's a command "flush cache" but it doesn't work
 

SideSyd

New Member
Jul 25, 2013
4
2
Thank you thank you !
Finally !! I've tried a hundred times to create a r63b!

Now how can I be the admin ? :)

The shop is german and I can't go to the pulic rooms
 

SideSyd

New Member
Jul 25, 2013
4
2
Still I have a problem, infinite loading in the navigator :/
and do you think revCMS 1.9.9.9 works for R63B ?
 

oltem4682

New Member
Jun 30, 2012
11
0
Does somebody know how to fix:
Code:
Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 261904 bytes) in C:\Habbo R63B Server\xampp\htdocs\app\tpl\class.html.php on line 27

I get this when I try to go to

This is my class.html.php
PHP:
<?php
 
namespace Revolution;
if(!defined('IN_INDEX')) { die('Sorry, you cannot access this file.'); }
class html implements iHTML
{
 
    private $html;
 
    final public function get($file)
    {
        global $template, $_CONFIG;
 
        if($file != null && ctype_alnum($file))
        {
            if(file_exists('app/tpl/skins/'.$_CONFIG['template']['style'].'/' . $file . '.php'))
            {
                ob_start();
                include('app/tpl/skins/'.$_CONFIG['template']['style'].'/' . $file . '.php');
                $this->html .= ob_get_contents();
                ob_end_clean();
           
                    $this->setHTML();
            }
            else
            {
                $this->get('404'); // Line 27
            }
        }
        else
        {
            header('Location: '.$_CONFIG['hotel']['url'].'/index');
            exit;
        }
 
    }
 
    final public function getHK($file)
    {
        global $template, $_CONFIG;
 
        if($file != null)
        {
            if(file_exists('../app/tpl/skins/'.$_CONFIG['template']['style'].'/hk/' . $file . '.php'))
            {
                ob_start();
                require_once('../app/tpl/skins/'.$_CONFIG['template']['style'].'/hk/' . $file . '.php');
                $this->html .= ob_get_contents();
                ob_end_clean();
     
                $this->setHTML();
            }
            else
            {
                $this->getHK('404');
            }
        }
        else
        {
            $this->getHK('dash');
        }
    }
 
    final public function setHTML()
    {
        global $template;
        $template->tpl .= $this->html;
        unset($this->html);
    }
 
 
}
?>

Does somebody know how to fix this?
 

ptimmaq2

We all make mistakes
Aug 7, 2013
283
33
hey guys when i try to when im on xampp to turn on apache it said turned on but never says running etc but myqsl works but i cant finish this without apache so if u can help email orcontact on fb email: [email protected] fb: fb.com/herratimppa
 

MrArkalys

Java Dev
Jul 29, 2013
271
16
hey guys when i try to when im on xampp to turn on apache it said turned on but never says running etc but myqsl works but i cant finish this without apache so if u can help email orcontact on fb email: [email protected] fb: fb.com/herratimppa


Well i had the same issue and when i turned off skype my apache was working so... maybe try that?
 

MrArkalys

Java Dev
Jul 29, 2013
271
16
Does somebody know how to fix:
Code:
Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 261904 bytes) in C:\Habbo R63B Server\xampp\htdocs\app\tpl\class.html.php on line 27

I get this when I try to go to

This is my class.html.php
PHP:
<?php
 
namespace Revolution;
if(!defined('IN_INDEX')) { die('Sorry, you cannot access this file.'); }
class html implements iHTML
{
 
    private $html;
 
    final public function get($file)
    {
        global $template, $_CONFIG;
 
        if($file != null && ctype_alnum($file))
        {
            if(file_exists('app/tpl/skins/'.$_CONFIG['template']['style'].'/' . $file . '.php'))
            {
                ob_start();
                include('app/tpl/skins/'.$_CONFIG['template']['style'].'/' . $file . '.php');
                $this->html .= ob_get_contents();
                ob_end_clean();
         
                    $this->setHTML();
            }
            else
            {
                $this->get('404'); // Line 27
            }
        }
        else
        {
            header('Location: '.$_CONFIG['hotel']['url'].'/index');
            exit;
        }
 
    }
 
    final public function getHK($file)
    {
        global $template, $_CONFIG;
 
        if($file != null)
        {
            if(file_exists('../app/tpl/skins/'.$_CONFIG['template']['style'].'/hk/' . $file . '.php'))
            {
                ob_start();
                require_once('../app/tpl/skins/'.$_CONFIG['template']['style'].'/hk/' . $file . '.php');
                $this->html .= ob_get_contents();
                ob_end_clean();
   
                $this->setHTML();
            }
            else
            {
                $this->getHK('404');
            }
        }
        else
        {
            $this->getHK('dash');
        }
    }
 
    final public function setHTML()
    {
        global $template;
        $template->tpl .= $this->html;
        unset($this->html);
    }
 
 
}
?>

Does somebody know how to fix this?

Oltem MAYBE idk for sure you don't have much space in the disk you installed XAMPP in...
Just an idea since it's talking about your own PC if i'm right so it could be your RAM.
 

Ept

Many men wish death upon me.
Jun 16, 2011
591
276
The download links require you to complete a survey. Please give me the direct link (no surveys) over PM, in order to reopen the thread.
 

Quackster

a devbest user says what
Aug 22, 2010
1,763
1,234
You need to complete surveys in order to get the links.

Thread closed with links removed until you PM me working links with no surveys.
 
Status
Not open for further replies.

Users who are viewing this thread

Top