Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Recent content by Geo

  1. Geo

    RevCMS Encryptation

    This barely increases security for users. Both MD5 and SHA1 are deprecated and considered unsafe for use due to practical collision attacks on them. Further, this is hashing; not encryption. There's a huge difference. You shouldn't choose your own salt like that unless you know what you're...
  2. Geo

    [LucidCMS] CMS Development - Advanced - Smooth - Complex - Fast - Secure - Modern

    RevCMS isn't modern, it was developed over 5 years ago on PHP5. A lot of today's features were either unavailable or not used often, now there is no reason not to use PDO etc unless you are maintaining legacy software which even then it is quite easy to upgrade small projects to MySQLi and...
  3. Geo

    Nano - PHP7, MVC, PDO

    Yes that may make the author feel like they have more accessibility but it would also affect performance and security, it may also affect the appearance of the site as they may link an URL of an image which for example has different sizes to the standard articles images or even a dead/blocked...
  4. Geo

    Concor CMS (PHP, MySQLI, OOP)

    Not a fan of a lot of this: no auto loading, escaping queries instead of preparing them, redirection without killing scripts, too much unneeded data being processed, HTML mixed with PHP; could be a lot more minimal and efficient. Good luck
  5. Geo

    Nano - PHP7, MVC, PDO

    Do you mean article content images or the actual image of each article? Article images are stored in the CMS folder, but you are able to link any image URL for the content images e.g. the elphpant image above. You can preview the image, you select a name from the dropdown list and then select...
  6. Geo

    Nano - PHP7, MVC, PDO

    <?php declare(strict_types=1); namespace Library\Components\Storage; class Event { protected $callbacks = []; public function __construct(){} /** * [register is a function to register callback events] * param string $callback [The callback to register]...
  7. Geo

    Filter Add

    Even staff members should not be able to exploit your system, never trust user data; even if it is your own.
  8. Geo

    Nano - PHP7, MVC, PDO

    I'm using Twig as mentioned above and in my original post, it probably reminds you of Jinja because they are both template engines following the Django/like syntax.
  9. Geo

    Nano - PHP7, MVC, PDO

    How can you judge code re-usability with little information regarding those aspects of the inner workings behind the CMS? Yes, I'm always going back and forth improving certain parts of the CMS but a lot of the current functionality is pretty re-usable; a few examples below. E.g. the same...
  10. Geo

    Nano - PHP7, MVC, PDO

    Thanks for the feedback! Just to note this development is still on-going even though there hasn't been much updates recently, I have my hands full at the moment with some other things but it will continue as soon as things are out of the way. Yeah the design isn't too great, I used an already...
  11. Geo

    Nano - PHP7, MVC, PDO

    You must be registered for see element. Nano is a lightweight, clean & fast Content Management System (CMS) which follows the MVC architecure and is based on a modern, stable and extensible base. Features: Secure - Prepared statements, validated data & sanitized output, CSRF protection (A...
  12. Geo

    Peace Hotel CMS (BoltCMS v1)

    Damn, HTML inside functions is still a thing in 2016?
  13. Geo

    uHabboCMS Release ~ Older Version ~ Forums ~ Avatar Selector ~ Custom CMS

    Oh, so the only thing I liked about this release was yours? Nice design :)
  14. Geo

    Little Badge Script [PlusEMU]

    What do you mean solution to remove badge class? This method is also possible: define('DATABASENAME', 'habbo'); // change this to your database name $get = glob('c_images/album1584/*.{gif,GIF}', GLOB_BRACE); foreach($get as $badge){ if(is_file($badge)){ echo "INSERT INTO...
  15. Geo

    uHabboCMS Release ~ Older Version ~ Forums ~ Avatar Selector ~ Custom CMS

    He probably has better things to do, although he has recently mentioned where to find the shell and re-uploaded a few posts back. Anyhow, he also stated that this release should NOT be used in production and only for "further developmental purposes", so I guess it doesn't really matter whether...
Back
Top