PixelTime CMS V12!

Page 1 of 3 123 LastLast
Results 1 to 15 of 37
  1. #1
    Apprentice HetIsNiels is offline
    MemberRank
    Oct 2011 Join Date
    17Posts

    PixelTime CMS V12!

    Hello Ragezone!

    Today i release version 12 of PixelCMS.. We dont use it :P

    There are some bugs because we lost the SQL, Someone from another forum says he had it and it works for 90%

    Screens:
    http://imgur.com/a/LYIxD
    This is someone using the CMS, He removed some copyrights & functions (But that guy is a dick :'))

    Download:
    CMS: public_html.rar
    SQL:PixelCMS database - Retroplace.nl.sql (Thanks ServerxStatus)

    Removing Security
    1. Go intro the inc.bootstrap.php file and comment the header to pixeltime.nl
    2. Go into the cache/javascript and remove pixel.core.js
    3. Rename pixel.core.uncompressed.js to pixel.core.js
    4. Open pixel.core.js and search for security and remove it
    5. Clear cache
    6. Profit

    We (Me and Bas Milius) hope that everyone can have fun with this CMS :)
    Last edited by HetIsNiels; 13-01-13 at 11:04 AM.


  2. #2
    Account Upgraded | Title Enabled! mohje is offline
    MemberRank
    Dec 2008 Join Date
    NLLocation
    651Posts

    Re: PixelTime CMS V12!

    Nealty ,

    Can you help my Mysql ?
    Kan je me helpen met de mysql?

  3. #3
    Apprentice HetIsNiels is offline
    MemberRank
    Oct 2011 Join Date
    17Posts

    Re: PixelTime CMS V12!

    Explain what help you need :)

  4. #4
    Member SilWare is offline
    MemberRank
    Aug 2012 Join Date
    Spaichingen, GeLocation
    93Posts

    Re: PixelTime CMS V12!

    Is this BcStorm Compatible?

  5. #5
    Apprentice HetIsNiels is offline
    MemberRank
    Oct 2011 Join Date
    17Posts

    Re: PixelTime CMS V12!

    If BcStrorm is compatible with phoenix: Yes

  6. #6
    Member SilWare is offline
    MemberRank
    Aug 2012 Join Date
    Spaichingen, GeLocation
    93Posts

    Re: PixelTime CMS V12!

    I think it's a Butterfly Edit...

  7. #7
    son, i am disappointed Squashing is offline
    MemberRank
    Apr 2011 Join Date
    CaliforniaLocation
    683Posts

    Re: PixelTime CMS V12!

    SilWare it's gonna work because the new edit uses ticket of phoenx :)

  8. #8
    Member SilWare is offline
    MemberRank
    Aug 2012 Join Date
    Spaichingen, GeLocation
    93Posts

    Re: PixelTime CMS V12!

    Ok Thanks I'm gonna try it

    It isn't working
    Screenshot by Lightshot

  9. #9
    son, i am disappointed Squashing is offline
    MemberRank
    Apr 2011 Join Date
    CaliforniaLocation
    683Posts

    Re: PixelTime CMS V12!

    Do you can explain this better?
    Go intro the inc.bootstrap.php file and comment the header to pixeltime.nl

    What do you mean with comment the header to pixeltime.nl

  10. #10
    Member SilWare is offline
    MemberRank
    Aug 2012 Join Date
    Spaichingen, GeLocation
    93Posts

    Re: PixelTime CMS V12!

    I don't understand how to config this can someone help via TeamViewer or something else? ._.

  11. #11
    I don't even know azaidi is offline
    MemberRank
    Apr 2010 Join Date
    the NetherlandsLocation
    2,065Posts

    Re: PixelTime CMS V12!

    Quote Originally Posted by Squashing View Post
    Do you can explain this better?
    Go intro the inc.bootstrap.php file and comment the header to pixeltime.nl

    What do you mean with comment the header to pixeltime.nl
    Remove

    $_host = $_SERVER['HTTP_HOST'];
    if(!stristr($_host, "pixeltime.nl") && !stristr($_host, "pixeltime.be") && !stristr($_host, "pixelstaff.nl")) {
    header("location: http://www.pixeltime.nl/?utm_source=nonpixeltime");44

    ___

    $defaults['global']['avatarimage'] = "http://www.habbo.com/habbo-imaging/avatarimage?figure=";

    I think that isn't working anymore.

    __

    function Security($input) {
    $output = $input;

    $output = addslashes($output);
    $output = DB::Escape($output);
    $output = htmlentities($output);

    return $output;
    }

    Just use

    function Security($input) {
    return DB::Escape(htmlentities($input));
    }

    Don't use Addslashes, instead use the mysqli->real_escape_string (or mysql_real_escape_string for mysql) function.

    __

    substr($query, 0, 5) == "SELECT"

    You know SELECT is 6 chars don't you?

    __

    Please use MySQLi instead of MySQL. Just change all the mysql_ to mysqli_ and it should work..

    __

    private $serverInfo;
    private $currentUser;
    private $systemStats;
    private $cache;


    $this->serverInfo = Array();
    $this->cmsInfo = Array();
    $this->systemStats = Array();
    $this->currentUser = null;
    $this->cache = Array('figure', 'head', 'ts');

    You could just do

    private $serverInfo = Array();
    private $currentUser = null;
    private $systemStats = Array();
    private $cache = Array('figure', 'head', 'ts');

    and where do you get this from?

    $this->cmsInfo = Array();

    ___

    Use single quotes instead of double, it's really going to make 2ms of a time difference. 2ms X 1 million visitors is something.

    __

    Why did you make 2 extra files for 2 functions?

    __

    Use require instead of require_once.

    __

    $banned_ips = Array('86.82.129.79', '84.82.68.32', '94.212.103.120', '86.91.109.128', '62.195.153.15', '82.136.249.1');
    if(in_array($_SERVER['REMOTE_ADDR'], $banned_ips)) {
    echo'This service is currently not available.';
    die();
    }

    Good security method, but put it at the start of your bootstrap and not at the end. So if one of the IPs HTTP Floods you, your MySQL server won't go down.
    Last edited by azaidi; 13-01-13 at 01:29 PM.

  12. #12
    Developer Eronisch is offline
    MemberRank
    Jul 2009 Join Date
    The NetherlandsLocation
    1,328Posts

    Re: PixelTime CMS V12!

    Based on revcms?

  13. #13
    Apprentice HetIsNiels is offline
    MemberRank
    Oct 2011 Join Date
    17Posts

    Re: PixelTime CMS V12!

    @azaidi The CMS is from begin 2012 and a bit outdated

    @Eronisch Made from scratch, Not based on any other CMS

  14. #14
    Developer Eronisch is offline
    MemberRank
    Jul 2009 Join Date
    The NetherlandsLocation
    1,328Posts

    Re: PixelTime CMS V12!

    Well done then!

  15. #15
    Check http://arcturus.pw The General is offline
    DeveloperRank
    Aug 2011 Join Date
    7,610Posts

    Re: PixelTime CMS V12!

    Hmm looks okay but I wont use it. It looks clean and havent looked at the source yet.



Page 1 of 3 123 LastLast

Advertisement