BrickPHP ~ Complete CMS

Page 12 of 20 FirstFirst ... 24567891011121314151617181920 LastLast
Results 166 to 180 of 289
  1. #166
    Apprentice sirwael is offline
    MemberRank
    Mar 2011 Join Date
    16Posts

    Re: BrickPHP ~ Complete CMS

    Joopie doesn't works for me

  2. #167
    Valued Member Nathan is offline
    MemberRank
    Jun 2011 Join Date
    123Posts

    Re: BrickPHP ~ Complete CMS

    When are you planning on release this, joopie?

  3. #168
    this is title Shredinator is offline
    MemberRank
    May 2011 Join Date
    399Posts

    Re: BrickPHP ~ Complete CMS

    Quote Originally Posted by Fustigate View Post
    When are you planning on release this, joopie?
    When the emu is out aswell, probably.

    If I recall correctly, the release date set for the emu was sometime in oktober.

  4. #169
    Account Upgraded | Title Enabled! wichard is offline
    MemberRank
    Jul 2009 Join Date
    The NetherlandsLocation
    649Posts

    Re: BrickPHP ~ Complete CMS

    Quote Originally Posted by Shredinator View Post
    When the emu is out aswell, probably.

    If I recall correctly, the release date set for the emu was sometime in oktober.
    31-10-2011 (Between 7:00 AM - 20:00);

  5. #170
    Account Upgraded | Title Enabled! George2000 is offline
    MemberRank
    Jul 2011 Join Date
    The NetherlandsLocation
    1,150Posts

    Re: BrickPHP ~ Complete CMS

    Quote Originally Posted by wichard View Post
    31-10-2011 (Between 7:00 AM - 20:00);
    And you know that for sure? Not like Meth0d. We had to wait 2 more hours after it had to be released o_O.
    I Hope you aren't like that.

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

    Re: BrickPHP ~ Complete CMS

    Quote Originally Posted by George2000 View Post
    And you know that for sure? Not like Meth0d. We had to wait 2 more hours after it had to be released o_O.
    I Hope you aren't like that.
    Lol... you can tell by the speed things get done on the cms that Joopie wont delay the release. Also Brick Emulator is released on that date so it has to have a CMS with it.

  7. #172
    Member Jaxite is offline
    MemberRank
    Sep 2011 Join Date
    EnglandLocation
    50Posts

    Re: BrickPHP ~ Complete CMS

    Words really cant describe how much I love this... It looks fantastic, this is by far one of the best web systems (or, cms, as it is commonly known as) I've seen for a Habbo Retro.

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

    Re: BrickPHP ~ Complete CMS

    Bussy with homes :D


  9. #174
    Minor Devolper ntl200 is offline
    MemberRank
    Dec 2007 Join Date
    EnglandLocation
    538Posts

    Re: BrickPHP ~ Complete CMS

    yes joopies skills seem to be stretching to new limits, i still remember goodcms i loved that software even though it was messy i really enjoyed playing around with it, to be honest even though everyone seen it as a mess i seen it as a beautiful passageway quietly hidden in a far away land, lul wut? :)

    very good progress joopie, i predict this will be done before brickemu, also can i see a snippet of the core? im a little curious

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

    Re: BrickPHP ~ Complete CMS

    Quote Originally Posted by ntl200 View Post
    yes joopies skills seem to be stretching to new limits, i still remember goodcms i loved that software even though it was messy i really enjoyed playing around with it, to be honest even though everyone seen it as a mess i seen it as a beautiful passageway quietly hidden in a far away land, lul wut? :)

    very good progress joopie, i predict this will be done before brickemu, also can i see a snippet of the core? im a little curious
    Yhee it was messy xd, But homes was fun to-do
    Know I'm remaking them ;3, Better ofcourse.

    Progress:
    Change stickie style.

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

    Re: BrickPHP ~ Complete CMS

    BrickPHP will have homes? They were removed in Desire Edit becuase they had 'exploits'

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

    Re: BrickPHP ~ Complete CMS

    PHP Code:
    <?php
        
    class Core
        
    {
            public static 
    $config;
            public static 
    $ready;
            
            function 
    __Construct()
            {
                
    self::LoadConfig();
                
                
    self::MySQLConnect();
                
                
    self::FilterAll();
                
                
    self::CheckSession(true);
                
                
    //If ready
                
    self::$ready false;
                
                if (
    MySQL::$connected)
                {
                    
    self::$ready true;
                }
            }
            
            public static function 
    Filter($string$allowHTML false)
            {
                if (!
    $allowHTML)
                {
                    
    $string = @htmlspecialchars($string);
                }
                
                return 
    mysql_real_escape_string($stringMySQL::$link);            
            }
            
            public static function 
    RealString($string)
            {
                
    $string str_replace('\\\'''\''$string);
                return 
    str_replace(array('\\n\\r''\\n''\\r'), ''$string);
            }
            
            public static function 
    Hash($string)
            {
                return 
    md5($string.self::$config['blowfish']);
            }
            
            
    //Easy shit
            
            
    public static function Exception($error$errno 0)
            {
                exit(
    $errno.': '.$error);
            }
            
            public static function 
    Location($url)
            {
                
    header('Location: '.$url);
                exit;
            }
            
            public static function 
    Is_Maintenance()
            {
                
    $file BASE.'includes/maintenance.txt';
                if (!
    file_exists($file))
                {
                    return 
    false;
                }
                
                return 
    filter_var(file_get_contents($file), FILTER_VALIDATE_BOOLEAN);
            }
            
            public static function 
    TimeToDate($time 0)
            {
                if (
    $time == 0)
                {
                    
    $time time();
                }
                
                return 
    date('Y-m-d H:i:s'$time);
            }
            
            public static function 
    CheckSession($OnlySession false)
            {
                if (
    User::LoggedIn())
                {
                    if (
    $OnlySession)
                    {
                        
    User::UpdateUserData($_SESSION['user']['id'], true);
                        new 
    MultiUser(true);
                        
                        return 
    true;
                    }
                    
                    
    Core::CleanSessions();
                
                    return 
    User::Login(
                        
    $_SESSION['user']['login'],
                        
    $_SESSION['user']['password']
                    );
                }
                
                return 
    false;
            }
            
            public static function 
    CleanSessions()
            {
                
    User::ClubClean();

                unset(
    $_SESSION['online_count']);
                unset(
    $_SESSION['register']);
            }
            
            public static function 
    GetOnlineCount()
            {
                if (isset(
    $_SESSION['online_count']))
                {
                    return 
    $_SESSION['online_count'];
                }
                
                
    $_SESSION['online_count'] = $count MySQL::Query('SELECT count(status) FROM `users` WHERE `status` = "1"')->Result();
                
                return 
    $count;
            }
            
            
    //Init
            
            
    private static function LoadConfig()
            {
                require 
    BASE.'/includes/inc.config.php';
                
                
    self::$config $_config;
            }
            
            private static function 
    MySQLConnect()
            {
                new 
    MySQL(
                    
    self::$config['mysql']['hostname'],
                    
    self::$config['mysql']['username'],
                    
    self::$config['mysql']['password']
                );
                
                
    MySQL::SelectDB(self::$config['mysql']['database']); 
            }
            
            private static function 
    FilterAll()
            {
                
    //Filter POST input
                
    foreach($_POST as $key => $value)
                {
                    
    $_POST[$key] = self::Filter($value);
                }
                
                
    //Filter GET input
                
    foreach($_GET as $key => $value)
                {
                    
    $_GET[$key] = self::Filter($value);
                }
            }
        }
    ?>

  13. #178
    What about no. Davidaap is offline
    MemberRank
    Nov 2009 Join Date
    773Posts

    Re: BrickPHP ~ Complete CMS

    Quote Originally Posted by JohnHearfield View Post
    BrickPHP will have homes? They were removed in Desire Edit becuase they had 'exploits'
    wtf is desire edit? probably a another ubercms rename

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

    Re: BrickPHP ~ Complete CMS

    Save skin + position 100% working

  15. #180
    Web & Interaction Design Gangnam is offline
    MemberRank
    Dec 2010 Join Date
    Lincoln, UKLocation
    1,983Posts

    Re: BrickPHP ~ Complete CMS

    Joopies, this is awesome! Erm, erm, one thing when you're bored. You missed a tiny bit of CSS out from the homepage, for the speech bubble ;). It should be aligned a little more to the left. :)



Advertisement