Re: RevCMS Habbo Template
Hejula, when are going to make another me.php like Habbo :)
Love your work.
Re: RevCMS Habbo Template
Quote:
Originally Posted by
DeTerp
Hejula, when are going to make another me.php like Habbo :)
Love your work.
When I get a bit of free time I plan on re-making this :) It will be fully up-to-date and I might sort out full quickregister for it.
Re: RevCMS Habbo Template
Really nice mate, goodluck! :)
I'm waiting!
Re: RevCMS Habbo Template
I get stuck on client page then go to reload.php auto.
http://uploadpic.org/storage/2011/th...XN3uBQKKuX.jpg
and
Quote:
Fatal error: Allowed memory size of 335544320 bytes exhausted (tried to allocate 261904 bytes) in D:\Program Files\xampp\htdocs\app\tpl\class.html.php on line 27
How to fix it ?
Re: RevCMS Habbo Template
Re: RevCMS Habbo Template
Go to the client, change the Port to 30000
Re: RevCMS Habbo Template
Quote:
Originally Posted by
DeTerp
Go to the client, change the Port to 30000
WoW !!! , It's work
How i can fix this ?
Quote:
Fatal error: Allowed memory size of 335544320 bytes exhausted (tried to allocate 261904 bytes) in D:\Program Files\xampp\htdocs\app\tpl\class.html.php on line 27
Thanks.
3 Attachment(s)
Re: RevCMS Habbo Template
Re: RevCMS Habbo Template
Quote:
Originally Posted by
iJoeyHD
If you read the above post(s), you've most likely forgotten to replace the index.php in the package.
Dunno about the rest.
Re: RevCMS Habbo Template
Re: RevCMS Habbo Template
Quote:
Originally Posted by
n0minal
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?
Re: RevCMS Habbo Template
Re: RevCMS Habbo Template
Quote:
Originally Posted by
Hejula
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!
Re: RevCMS Habbo Template
Quote:
Originally Posted by
JarrydNova
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.
Re: RevCMS Habbo Template
Re: RevCMS Habbo Template
Re: RevCMS Habbo Template
Thanks for the Release, this Verry nice, and the index also.
Re: RevCMS Habbo Template
Re: RevCMS Habbo Template
Quote:
Originally Posted by
Hejula
Anyone got a mirror?
Hejula.net appears to be down :(
Re: RevCMS Habbo Template
Quote:
Originally Posted by
iRawrHotel
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
Re: RevCMS Habbo Template
This sure is nice it's one of the most used themes actually to be honest
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
Re: RevCMS Habbo Template
Quote:
Originally Posted by
Amiroslo
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?
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);
}
}
?>
Re: RevCMS Habbo Template
Quote:
Originally Posted by
Amiroslo
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?