BrickPHP ~ Complete CMS

Page 6 of 20 FirstFirst 123456789101112131416 ... LastLast
Results 76 to 90 of 289
  1. #76
    Eye Eye Capt'n Spheral is offline
    MemberRank
    May 2010 Join Date
    TumptonshireLocation
    2,488Posts

    Re: BrickPHP ~ Complete CMS

    This is the first full CMS that can be used as a comparison to Habbo's. I like this one better, even though its based off Habbo's own, but better. BrickPHP and BrickEmulator C# is the way its going.

  2. #77
    Live Ocottish Sverlord Joopie is offline
    LegendRank
    Jun 2010 Join Date
    The NetherlandsLocation
    2,773Posts

    Re: BrickPHP ~ Complete CMS

    Client finished and 100% working + easy to set-up in config file =D

    PHP Code:
    <?php
        define
    ('MUSTLOGGEDIN'true);
        require 
    './global.php';
        
        
    $tpl = new tpl('Client');
        
    $tpl->SetParam('host_ip'Core::$config['client']['ip']);
        
    $tpl->SetParam('host_port'Core::$config['client']['port']);
        
    $tpl->SetParam('external_variables'Core::$config['client']['external_variables']);
        
    $tpl->SetParam('external_texts'Core::$config['client']['external_texts']);
        
    $tpl->SetParam('external_override_texts'Core::$config['client']['external_override_texts']);
        
    $tpl->SetParam('external_override_variables'Core::$config['client']['external_override_variables']);
        
    $tpl->SetParam('productdata'Core::$config['client']['productdata']);
        
    $tpl->SetParam('furnidata'Core::$config['client']['furnidata']);
        
    $tpl->SetParam('flash_base'Core::$config['client']['flash_base']);
        
        
    $tpl->SetParam('ssoticket'User::SSOTicket());
        
    $tpl->SetParam('user_hash'User::GetUserData('user_hash'));
        
        
    $tpl->AddFile('page-client');
        
        echo 
    $tpl;
    ?>
    Predict: YOU SEE uber rip off...
    I: The idee to use it is good, So why not..

    Externals (always up-to-date)
    PHP Code:
    <?php
        define
    ('MUSTLOGGEDIN'true);
        require 
    './global.php';
        
        
    $type $_GET['type'];
        
    $build 0;
        
        
    $lang 'us'//Hotel language nl/us etc
        
        
    switch ($type)
        {
            case 
    'override/external_override_variables'// Change it to your own urls (URL is already defined at the top)
                
    echo "image.library.url=".Core::$config['client']['flash_base']."/c_images/\n";
                echo 
    "private.image.library.url=".Core::$config['client']['flash_base']."/c_images/\n";
                echo 
    "image.library.catalogue.url=".Core::$config['client']['flash_base']."/c_images/catalogue/\n";
                echo 
    "flash.dynamic.download.url=".Core::$config['client']['flash_base']."/dcr/hof_furni/\n";
                echo 
    "dynamic.download.url=".Core::$config['client']['flash_base']."/dcr/hof_furni/\n";
                echo 
    "client.hotel_view.image=hotel_view_images_hq/beta_hotelview.png\n";
                echo 
    "external.figurepartlist.txt=".URL."/external.php?type=figuredata\n";                     
                echo 
    "flash.dynamic.download.name.template=%typeid%.swf\n";
                echo 
    "furnidata.load.url=".URL."/external.php?type=furnidata\n";
                break;
                    
            case 
    'override/external_override_flash_texts'// Flash texts to override     
                
    break;
            
            case 
    'figuredata'// Don't edit
                
    echo file_get_contents('http://hotel-'.$lang.'.habbo.com/gamedata/'.$type);
                break;
            
            default: 
    //Don't edit
                
    echo file_get_contents('http://hotel-'.$lang.'.habbo.com/gamedata/'.$type.'/'.$build);
                break;
        }
    ?>

  3. #78
    Account Upgraded | Title Enabled! mmaxwell is offline
    MemberRank
    Sep 2009 Join Date
    403Posts

    Re: BrickPHP ~ Complete CMS

    any idea on how u will make the converter for phoenix

  4. #79
    Live Ocottish Sverlord Joopie is offline
    LegendRank
    Jun 2010 Join Date
    The NetherlandsLocation
    2,773Posts

    Re: BrickPHP ~ Complete CMS

    Quote Originally Posted by mmaxwell View Post
    any idea on how u will make the converter for phoenix
    What do you wan't to convert?

    Users?, Rooms?, ...

    But it also depents on how big your db is x.x,

    Otherwise I'll made a console converter..

    Updated quickmenu query x.x

    PHP Code:
    SELECT  `user_friendships`.`friend_id` ,  `user_friendships`.`user_id` ,  `u1`.`id` AS `u1id`,  `u1`.`username` AS  `u1username` ,  `u1`.`status` AS  `u1status` ,  `u2`.`id` AS `u2id`,  `u2`.`username` AS  `u2username` ,  `u2`.`status` AS  `u2status
    FROM  `user_friendships
    INNER JOIN  `users` AS  `u1ON  `u1`.`id` =  `user_friendships`.`friend_id
    INNER JOIN  `users` AS  `u2ON  `u2`.`id` =  `user_friendships`.`user_id
    WHERE (
        `
    user_friendships`.`user_id` =  "'.USER_ID.'"
        
    OR  `user_friendships`.`friend_id` =  "'.USER_ID.'"
    )
    AND  `
    user_friendships`.`pending` =  "0"
    ORDER BY  `u1`.`status
    OR  `
    u2`.`statusDESC 

  5. #80
    Account Upgraded | Title Enabled! mmaxwell is offline
    MemberRank
    Sep 2009 Join Date
    403Posts

    Re: BrickPHP ~ Complete CMS

    well my database it pretty big so all of it conveted but leaveing a orignial of the db so ur copy is new

  6. #81
    Live Ocottish Sverlord Joopie is offline
    LegendRank
    Jun 2010 Join Date
    The NetherlandsLocation
    2,773Posts

    Re: BrickPHP ~ Complete CMS

    Quote Originally Posted by mmaxwell View Post
    well my database it pretty big so all of it conveted but leaveing a orignial of the db so ur copy is new
    I'll make it so, That you have 2 databases..

    One to convert (Phoenix/Uber).
    And one brickdb

    Then it will transport the data from the converted one to the brickdb in the right fields etc

  7. #82
    Enthusiast Cypeh is offline
    MemberRank
    Aug 2011 Join Date
    London, UKLocation
    28Posts

    Re: BrickPHP ~ Complete CMS

    I like the idea of that all the Configurations of Database and Client SWFS being in 1 file, makes things alot easier for Hotel Owners.

    Nice work!

  8. #83
    Live Ocottish Sverlord Joopie is offline
    LegendRank
    Jun 2010 Join Date
    The NetherlandsLocation
    2,773Posts

    Re: BrickPHP ~ Complete CMS

    Yhee, It it ^.^,

    Mus fully working, 10 request per min

    ---------- Post added at 06:43 PM ---------- Previous post was at 06:41 PM ----------

    Avatar habblet working.



    (Yes I use a older client, My swf is 3 months out-to-date, Someone got a new swf pack for me?)

    ---------- Post added at 07:08 PM ---------- Previous post was at 06:43 PM ----------

    News habblet <'3


  9. #84
    Eye Eye Capt'n Spheral is offline
    MemberRank
    May 2010 Join Date
    TumptonshireLocation
    2,488Posts

    Re: BrickPHP ~ Complete CMS

    joopie, im on the 11.08.2011 swfs.

    And i love all the work you are doing.

  10. #85
    Account Upgraded | Title Enabled! mmaxwell is offline
    MemberRank
    Sep 2009 Join Date
    403Posts

    Re: BrickPHP ~ Complete CMS

    the client news isnt needed theres a line on ur client delete and the news wont popup when u get kicked from room cant wait for this and the converter

  11. #86
    Live Ocottish Sverlord Joopie is offline
    LegendRank
    Jun 2010 Join Date
    The NetherlandsLocation
    2,773Posts

    Re: BrickPHP ~ Complete CMS

    Quote Originally Posted by mmaxwell View Post
    the client news isnt needed theres a line on ur client delete and the news wont popup when u get kicked from room cant wait for this and the converter
    Then it isn't a compleet habbo cms =D, I keep it <'3

  12. #87
    Novice Loders is offline
    MemberRank
    Aug 2011 Join Date
    3Posts

    Re: BrickPHP ~ Complete CMS

    Quote Originally Posted by joopie View Post
    Then it isn't a compleet habbo cms =D, I keep it <'3
    Not trying to be a dick but uberCMS has this working, but you just need to remove a line of code from the file for it to work properly!

    Seems like a fantastic development, which has 100% of Habbo.com's current features - this is epic.

    Keep up the great work :D

  13. #88
    Live Ocottish Sverlord Joopie is offline
    LegendRank
    Jun 2010 Join Date
    The NetherlandsLocation
    2,773Posts

    Re: BrickPHP ~ Complete CMS

    Quote Originally Posted by Loders View Post
    Not trying to be a dick but uberCMS has this working, but you just need to remove a line of code from the file for it to work properly!

    Seems like a fantastic development, which has 100% of Habbo.com's current features - this is epic.

    Keep up the great work :D
    UberCMS hasn't working habblet news.. Not properly. x]

  14. #89
    What about no. Davidaap is offline
    MemberRank
    Nov 2009 Join Date
    773Posts

    Re: BrickPHP ~ Complete CMS

    Quote Originally Posted by joopie View Post
    UberCMS hasn't working habblet news.. Not properly. x]
    UberCMS news habblet is working 100% ;)

  15. #90
    Live Ocottish Sverlord Joopie is offline
    LegendRank
    Jun 2010 Join Date
    The NetherlandsLocation
    2,773Posts

    Re: BrickPHP ~ Complete CMS

    The days that i had uber cms i didnt work properly . :o
    Posted via Mobile Device



Advertisement