Ubercms 2 By Jonteh

Page 2 of 2 FirstFirst 12
Results 26 to 49 of 49
  1. #26
    Elite Member marbogunz is offline
    Member +Rank
    Feb 2009 Join Date
    The NederlandsLocation
    119Posts

    Re: [TUT] Ubercms 2 By Jonteh [TUT]

    My client disconnects when I click on the Navigator, I know Giles u helped me before but I have VPS now and had to reinstall everything..
    But it doesnt work?

  2. #27
    Zephyr Studios PRIZM is offline
    Grand MasterRank
    Feb 2012 Join Date
    DenmarkLocation
    2,291Posts

    Re: [TUT] Ubercms 2 By Jonteh [TUT]

    I've got a loop.

  3. #28
    Newbie Storm33 is offline
    MemberRank
    May 2012 Join Date
    6Posts

    Re: [TUT] Ubercms 2 By Jonteh [TUT]

    It freezes. Can you help my on TV?

  4. #29
    Member SatoshiUshi is offline
    MemberRank
    Feb 2012 Join Date
    United KingdomLocation
    36Posts

    Re: [TUT] Ubercms 2 By Jonteh [TUT]

    I'm having this problem with the Client
    http://forum.ragezone.com/attachment...-tut-fixed.png

  5. #30
    Member nehr is offline
    MemberRank
    Aug 2011 Join Date
    25Posts

    Re: [TUT] Ubercms 2 By Jonteh [TUT]

    I have a bug: all page are white ... what is the problem ?



    Sorry for my bad english but i'm french...

  6. #31
    Newbie MatthewTS is offline
    MemberRank
    Mar 2012 Join Date
    14Posts

    Re: [TUT] Ubercms 2 By Jonteh [TUT]

    I get this error on my client :(

    error.png

    I've updated my flash player but it still doesn't work. Someone help me please I really want to use this CMS.

  7. #32
    Elite Member ljosh is offline
    Member +Rank
    Feb 2012 Join Date
    Seattle, WashinLocation
    100Posts

    Re: [TUT] Ubercms 2 By Jonteh [TUT]

    Quote Originally Posted by MatthewTS View Post
    I get this error on my client :(

    error.png

    I've updated my flash player but it still doesn't work. Someone help me please I really want to use this CMS.
    your swfs are not right make sure you edit them

  8. #33
    Sorcerer Supreme Jambokill is offline
    Member +Rank
    Dec 2010 Join Date
    PhilippinesLocation
    264Posts

    Re: [TUT] Ubercms 2 By Jonteh [TUT]

    Quote Originally Posted by ljosh View Post
    your swfs are not right make sure you edit them

    Its not the problem man...
    I posted a fix on tutrial section....

  9. #34
    Newbie MatthewTS is offline
    MemberRank
    Mar 2012 Join Date
    14Posts

    Re: [TUT] Ubercms 2 By Jonteh [TUT]

    Quote Originally Posted by Jambokill View Post
    Its not the problem man...
    I posted a fix on tutrial section....
    I did your fix, yet the same error still appears.

  10. #35
    Member nehr is offline
    MemberRank
    Aug 2011 Join Date
    25Posts

    sad Re: [TUT] Ubercms 2 By Jonteh [TUT]

    Quote Originally Posted by nehr View Post
    I have a bug: all page are white ... what is the problem ?



    Sorry for my bad english but i'm french...
    Please can you help me ?

  11. #36
    Sorcerer Supreme Jambokill is offline
    Member +Rank
    Dec 2010 Join Date
    PhilippinesLocation
    264Posts

    Re: [TUT] Ubercms 2 By Jonteh [TUT]

    Post youre Client.php

    And what webuild are you using??

  12. #37
    Member nehr is offline
    MemberRank
    Aug 2011 Join Date
    25Posts

    Re: [TUT] Ubercms 2 By Jonteh [TUT]

    I use a new web_build 63_1dc60c6d6ea6e089c6893ab4e0541ee0/1064
    And all page are whrite index me ....

  13. #38
    Newbie MatthewTS is offline
    MemberRank
    Mar 2012 Join Date
    14Posts

    Re: [TUT] Ubercms 2 By Jonteh [TUT]

    My client page

    Code:
    <?php
        /*
                   |
            .   .|---.,---.,---.
            |   ||   ||---'|         UberCMS 2.0
            `---'`---'`---'`
                UberCMS
                Coded originally by Meth0d (2010-2011)
                Continued by Jonty (2011-now)
                
                Build 2.0.0 SS, Public
        */
    
    
        require_once "global.php";
    
    
    if (!LOGGED_IN)
    {
        header("Location: " . WWW. "/");
        exit;
    }
    
    
    if(!isset($_SESSION["has_voted"]) || $_SESSION["has_voted"] == false) {
            if ($voting['thehabbos_enabled'] == true) {
                $hasVoted = true;
            } 
            else {
                $hasVoted = false;
            }
    }
    else {
            $hasVoted = true;
    }
    
    
    if($hasVoted == false) {
        $_SESSION["has_voted"] = true;
        header("Location: http://votingapi.com/vote.php?username=" . $voting['thehabbos_username'] . "&api=" . $voting['thehabbos_returnurl']);
    }
    
    
    if($site['enable_pincodes'] == true && $users->GetUserVar(USER_ID, 'rank') >= $site['pincode_minrank']) {
        if(!isset($_SESSION["staff_PassAuth"])) {
            header ("Location: " . WWW . "/client_denied");
        }
    }
    
    
    // **************************************************************************************************************
    // **************************************************************************************************************
    $users->CheckSSO(USER_ID);
    
    
    $checkExists = dbquery("SELECT userid FROM user_tickets WHERE userid = '" . USER_ID . "'");
    $userTicket = $users->GetUserVar(USER_ID, 'auth_ticket');
    
    
    if($server['butterfly_sso'] == true) {
        if(mysql_num_rows($checkExists)) {
            dbquery("UPDATE user_tickets SET sessionticket = '" . $userTicket . "', ipaddress = '" . $_SERVER["REMOTE_ADDR"] . "' WHERE userid = '" . USER_ID . "'");
        }
        else {
            dbquery("INSERT INTO user_tickets (userid,sessionticket,ipaddress) VALUES ('" . USER_ID . "', '" . $userTicket . "', '" . $_SERVER["REMOTE_ADDR"] . "')");
        }
    }
    else if($server['phoenix_secure_sessions'] == true) {
        dbquery("UPDATE `users` SET `auth_ticket` = '" . $users->GetUserVar(USER_ID, "auth_ticket") . "' WHERE id = '" . USER_ID . "'");
    }
    
    
    
    
    $forwardType = 0;
    $forwardId = 0;
    
    
    // Due to an issue with most servers, tags have been disabled in the CMS by default.
    
    
    if (mysql_num_rows(dbquery("SELECT * FROM user_tags WHERE user_id = '" . USER_ID . "' LIMIT 1"))) {
        dbquery("DELETE FROM user_tags WHERE user_id = '" . USER_ID . "'");
    }
    
    
    if ($users->getUserVar(USER_ID, 'newbie_status') == "2") {    
        // Run POST-REGISTRATION checks
        dbquery("UPDATE `users` SET
                    `motto` = '" . $server['default_motto'] . "',
                    `credits` = '" . $server['default_credits'] . "',
                    `activity_points` = '" . $server['default_pixels'] . "',
                    `look` = '" . $server['default_look'] . "',
                    `home_room` = '" . $server['default_room'] . "',
                    `rank` = '" . $server['default_rank'] . "',
                    `newbie_status` = '3'
                    WHERE `id` = '" . USER_ID . "'");
    }
    
    
    
    
    dbquery("UPDATE users SET ip_last = '".$_SERVER['REMOTE_ADDR']."' WHERE username = '".USER_NAME."'");
    
    
    $tpl->Init();
    
    
    $client = new Template('page-client');
    $client->SetParam('page_title', ' ');
    $client->SetParam('sso_ticket', $users->GetUserVar(USER_ID, 'auth_ticket', false));
    $client->SetParam('flash_base', 'http://127.0.0.1/r63/');
    $client->SetParam('flash_client_url', 'http://127.0.0.1/r63/');
    $client->SetParam('hotel_status', $core->GetUsersOnline() . ' users online now!');
    $client->SetParam('forwardType', $forwardType);
    $client->SetParam('forwardId', $forwardId);
    
    
    
    
    $tpl->AddGeneric('head-init');
    $tpl->AddIncludeSet('default');
    $tpl->AddIncludeFile(new IncludeFile('text/css', 'http://%cdn%/%hotel%/%web_build%/web-gallery/styles/habboclient.css', 'stylesheet'));
    $tpl->AddIncludeFile(new IncludeFile('text/css', 'http://%cdn%/%hotel%/%web_build%/web-gallery/styles/habboflashclient.css', 'stylesheet'));
    $tpl->AddIncludeFile(new IncludeFile('text/javascript', 'http://%cdn%/%hotel%/%web_build%/web-gallery/static/js/habboflashclient.js'));
    $tpl->WriteIncludeFiles();
    $tpl->AddGeneric('head-bottom');
    
    
    
    
    if (isset($_GET['forceTicket']) && $users->HasFuse(USER_ID, 'fuse_admin'))
    {
        $client->SetParam('sso_ticket', $_GET['forceTicket']);
    }
    
    
    $tpl->AddTemplate($client);
    
    
    $tpl->Output();
    
    
    ?>
    I am using the web build from Zap Hotel.

  14. #39
    Sorcerer Supreme Jambokill is offline
    Member +Rank
    Dec 2010 Join Date
    PhilippinesLocation
    264Posts

    Re: [TUT] Ubercms 2 By Jonteh [TUT]

    Try clearing Cache.....

    Quote Originally Posted by nehr View Post
    I use a new web_build 63_1dc60c6d6ea6e089c6893ab4e0541ee0/1064
    And all page are whrite index me ....
    Dont use the habbo web_build cuz some files in the web_build are in other directories...

  15. #40
    Grand Master DeliriousCoder is offline
    Grand MasterRank
    Nov 2011 Join Date
    United StatesLocation
    977Posts

    Re: [TUT] Ubercms 2 By Jonteh [TUT]

    Where the hell you been Giles? Helped me on my VPS and left from existence.

    OT: Good thread, helpful for UberNoobs :)

  16. #41
    Elite Member ljosh is offline
    Member +Rank
    Feb 2012 Join Date
    Seattle, WashinLocation
    100Posts

    Re: [TUT] Ubercms 2 By Jonteh [TUT]

    guys the new cms 2.10 has been released

  17. #42
    Elite Member pamoerk is offline
    Member +Rank
    May 2007 Join Date
    NorwayLocation
    205Posts

    Re: [TUT] Ubercms 2 By Jonteh [TUT]

    I'm getting this:

    UberCMS has encountered an error
    A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.

  18. #43
    Sorcerer Supreme Jambokill is offline
    Member +Rank
    Dec 2010 Join Date
    PhilippinesLocation
    264Posts

    Re: [TUT] Ubercms 2 By Jonteh [TUT]

    Quote Originally Posted by pamoerk View Post
    I'm getting this:

    UberCMS has encountered an error
    A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
    Pm me.....

  19. #44
    Sorcerer Supreme Giles121 is offline
    Member +Rank
    Jul 2011 Join Date
    EnglandLocation
    291Posts

    Re: [TUT] Ubercms 2 By Jonteh [TUT]

    Ill Help You All, Just Pm Me You TeamView Details And Ill Sort It All Out *FREE*

    Quote Originally Posted by DeliriousCoder View Post
    Where the hell you been Giles? Helped me on my VPS and left from existence.

    OT: Good thread, helpful for UberNoobs :)
    Hey Long Time + i got a job that following day so i had no time for retros, sorry to ditch you mate

  20. #45
    Newbie Jake3454 is offline
    MemberRank
    Apr 2012 Join Date
    1Posts

    Re: [TUT] Ubercms 2 By Jonteh [TUT]

    Can you help me setup the cms?

  21. #46
    Elite Member Stiezo is offline
    Member +Rank
    Apr 2010 Join Date
    The NetherlandsLocation
    105Posts

    Re: [TUT] Ubercms 2 By Jonteh [TUT]

    can you give the swf pack you used ?

  22. #47
    Elite Member Stiezo is offline
    Member +Rank
    Apr 2010 Join Date
    The NetherlandsLocation
    105Posts

    Re: [TUT] Ubercms 2 By Jonteh [TUT]

    My me page is fucked up hase anyone a fixed me page?

  23. #48
    Newbie SkyHotelNL is offline
    MemberRank
    Sep 2012 Join Date
    1Posts

    Re: [TUT] Ubercms 2 By Jonteh [TUT]

    Giles121 PM Send ! :D

  24. #49
    Sorcerer Supreme tomsandz is offline
    Member +Rank
    Nov 2012 Join Date
    EnglandLocation
    272Posts

    Re: Ubercms 2 By Jonteh

    I get this error whenever I try and put the sql in navicat
    Code:
     table `badgeshop`
    --
    
    CREATE TABLE IF NOT EXISTS `badgeshop` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `badgename` varchar(25) NOT NULL,
      `price` int(10) NOT NULL,
      `badgecode` varchar(10) NOT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=25 ;
    
    
    [Msg] Finished - Unsuccessfully
    ----------------------------------------



Page 2 of 2 FirstFirst 12

Advertisement