[SKIN] Habbo for RevCMS!

Status
Not open for further replies.

zMagenta

Posting Freak
Jul 15, 2011
1,414
682
Brilliant Oliver, is there another download link as your Hejula.net is unavalible?

Thanks, brill release.
 

Hejularr

Member
Dec 12, 2011
29
0
Er no, I had a folder on MegaUpload but that got took down, I don't want it anywhere I don't have control over...



It works fine here.
 

Hejularr

Member
Dec 12, 2011
29
0
Oh, maybe it was broken then. My host updated there nameservers, and claimed to have updated my child nameservers over a week ago. However they mustn't had. I've re-created my nameservers so it should work in 24 hours maximum... Maybe 2 hours, who knows.
 

Zipzop

New Member
Dec 29, 2011
1
0
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!

1.png

7.png

2.png

4.png

5.png

6.png


Download:
 

Tookie

Member
Feb 24, 2012
36
1
I uploaded it and looks f'd up for me. I'm guessing you need IIS or something? Because I'm running latest version of xampp.

374c0f84442540d3821e961.png
 

Navigation

Posting Freak
Feb 15, 2012
715
137
i didnt see any solution from that thread

Fine class.user.php, replace this;

Code:
function GetUserVar($id, $var, $allowCache = true) //Modified by Jacob Pollack
    {
        if ($allowCache && isset($this->userCache[$id][$var]))
        {
            if ($var == "last_online")
            {
                if ($var == "")
                {
                return "<i>Never</i>";
                }
                else
                {
                return $this->userCache[$id][$var];
                }
            }
            else
            {
            return $this->userCache[$id][$var];
            }
        }

With this;

Code:
function GetUserVar($id, $var, $allowCache = true) //Modified by Jacob Pollack
    {
        if ($allowCache && isset($this->userCache[$id][$var]))
        {
            if ($var == "last_online")
            {
            return "<i>Never</i>";
            }
            else
            {
            return $this->userCache[$id][$var];
            }
        }
       
        $val = @mysql_result(dbquery("SELECT " . $var . " FROM users WHERE id = '" . $id . "' LIMIT 1"), 0);
        $this->userCache[$id][$var] = $val;
        return $val;
    }
 

themaster2012

Member
Feb 16, 2012
188
15
Fine class.user.php, replace this;

Code:
function GetUserVar($id, $var, $allowCache = true) //Modified by Jacob Pollack
    {
        if ($allowCache && isset($this->userCache[$id][$var]))
        {
            if ($var == "last_online")
            {
                if ($var == "")
                {
                return "<i>Never</i>";
                }
                else
                {
                return $this->userCache[$id][$var];
                }
            }
            else
            {
            return $this->userCache[$id][$var];
            }
        }

With this;

Code:
function GetUserVar($id, $var, $allowCache = true) //Modified by Jacob Pollack
    {
        if ($allowCache && isset($this->userCache[$id][$var]))
        {
            if ($var == "last_online")
            {
            return "<i>Never</i>";
            }
            else
            {
            return $this->userCache[$id][$var];
            }
        }
     
        $val = @mysql_result(dbquery("SELECT " . $var . " FROM users WHERE id = '" . $id . "' LIMIT 1"), 0);
        $this->userCache[$id][$var] = $val;
        return $val;
    }


Sorry to say.....i dont find that code in class.users...
 
Status
Not open for further replies.

Users who are viewing this thread

Top