RevCMS Habbo Template

Page 10 of 11 FirstFirst ... 234567891011 LastLast
Results 136 to 150 of 153
  1. #136
    Apprentice iJoeyHD is offline
    MemberRank
    May 2012 Join Date
    7Posts

    Re: RevCMS Habbo Template

    Quote Originally Posted by n0minal View Post
    If you read the above post(s), you've most likely forgotten to replace the index.php in the package.

    Dunno about the rest.
    Thanks. Sorted it now xD

    No.. still not worked. i dont understand. what file is it i replace and what do i replace it with?

  2. #137
    Apprentice iJoeyHD is offline
    MemberRank
    May 2012 Join Date
    7Posts

    Re: RevCMS Habbo Template

    Anyways, good release!

  3. #138
    Apprentice JarrydNova is offline
    MemberRank
    Jun 2012 Join Date
    Adelaide, SouthLocation
    6Posts

    Re: RevCMS Habbo Template

    Quote Originally Posted by Hejula View Post
    This is as the title says, a Habbo theme for RevCMS! To use it you will need to use the custom index.php included in the file. I've also put the MangoCMS theme inside as well, as the old one will not work with the new index.php!










    Download: https://www.hejula.net/downloads/Rev...bo%20Theme.zip
    Great release! First of all. An advertisement? Argh! Would also love the client click to be fixed. -.- It redirects to api.php or something when its /client to enter. And i try to use /client and it fucks up. Also would be better if staff would have a housekeeping quick click? That'd be beast!

  4. #139
    The one and only! Hejula is offline
    MemberRank
    Nov 2008 Join Date
    4,128Posts

    Re: RevCMS Habbo Template

    Quote Originally Posted by JarrydNova View Post
    Great release! First of all. An advertisement? Argh! Would also love the client click to be fixed. -.- It redirects to api.php or something when its /client to enter. And i try to use /client and it fucks up. Also would be better if staff would have a housekeeping quick click? That'd be beast!
    Yeah, I'll re-do this soon if I get time.

  5. #140
    Member Nimo is offline
    MemberRank
    Feb 2011 Join Date
    87Posts

    Re: RevCMS Habbo Template

    Nice like it. :)
    10/10

  6. #141
    Apprentice xL3gi0nPH is offline
    MemberRank
    Aug 2012 Join Date
    6Posts

    Re: RevCMS Habbo Template

    Cool.

  7. #142
    hoi Nilenz is offline
    MemberRank
    May 2011 Join Date
    The NetherlandsLocation
    380Posts

    Re: RevCMS Habbo Template

    Thanks for the Release, this Verry nice, and the index also.

  8. #143
    Member Armo is offline
    MemberRank
    Sep 2012 Join Date
    66Posts

    Re: RevCMS Habbo Template

    Download link is down.

  9. #144
    Apprentice iRawrHotel is offline
    MemberRank
    Feb 2012 Join Date
    11Posts

    Re: RevCMS Habbo Template

    Quote Originally Posted by Hejula View Post
    This is as the title says, a Habbo theme for RevCMS! To use it you will need to use the custom index.php included in the file. I've also put the MangoCMS theme inside as well, as the old one will not work with the new index.php!










    Download: https://www.hejula.net/downloads/Rev...bo%20Theme.zip
    Anyone got a mirror?
    Hejula.net appears to be down :(

  10. #145
    The one and only! Hejula is offline
    MemberRank
    Nov 2008 Join Date
    4,128Posts

    Re: RevCMS Habbo Template

    Quote Originally Posted by iRawrHotel View Post
    Anyone got a mirror?
    Hejula.net appears to be down :(
    It's on my Mediafire drive. Habbo Theme.zip

    I have terminated my hosting for hejula.net, so it will not work :P

  11. #146
    Banned V for Vendetta is offline
    BannedRank
    Feb 2007 Join Date
    1,809Posts

    Re: RevCMS Habbo Template

    This sure is nice it's one of the most used themes actually to be honest

  12. #147
    Account Upgraded | Title Enabled! Amiroslo is offline
    MemberRank
    Jul 2012 Join Date
    NorwayLocation
    274Posts

    Re: RevCMS Habbo Template

    Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 261904 bytes) in C:\xampp\htdocs\app\tpl\class.html.php on line 27

  13. #148
    The one and only! Hejula is offline
    MemberRank
    Nov 2008 Join Date
    4,128Posts

    Re: RevCMS Habbo Template

    Quote Originally Posted by Amiroslo View Post
    Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 261904 bytes) in C:\xampp\htdocs\app\tpl\class.html.php on line 27
    Could you post your class.html.php?

  14. #149
    Account Upgraded | Title Enabled! Amiroslo is offline
    MemberRank
    Jul 2012 Join Date
    NorwayLocation
    274Posts

    Re: RevCMS Habbo Template

    here
    Code:
    <?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');
    			}
    		}
    		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);
    	}
    
    
    }
    ?>

  15. #150
    The one and only! Hejula is offline
    MemberRank
    Nov 2008 Join Date
    4,128Posts

    Re: RevCMS Habbo Template

    Quote Originally Posted by Amiroslo View Post
    here
    Code:
    <?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');
                }
            }
            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);
        }
    
    
    }
    ?>
    Ah, line 27 is this: "$this->get('404');" which is the file for when a page isn't found. As I didn't put a 404 file in this theme it times out. What page are you trying to access?



Page 10 of 11 FirstFirst ... 234567891011 LastLast

Advertisement