feindura 1.1 released
I'am proud to anounce the first stable release of feindura.
Besides many new features and fixed security holes, i renewed the basic structure in most parts.
- The login system, which was previously .htaccess based, is replaced by a completely new login system. Now there are two user types: administrators and authors.
- You can now edit the pages directly on the website if you activate the frontend editing feature.
(AdminSetup> User permissions) - A new plugin system makes it easy to add new functionality to each page (e.g. image galleries, or contact forms). You can also code your own plugins.
- The File Manager has been replaced by the better Mootools File Manager.
- feindura 1.1 has better statistics. Now you can also see your current visitors.
- You can now create Backups of the configurations, pages and statistics, which can easily be recovered.
- Each category can now get it's own RSS or Atom feed. These are automatically add in the createMetaTags() method.
- Pages within categories can be sorted by date or alphabetically.
- Pages which are currently being edited will now be blocked for other users, if multiple users are logged in. So no content can get lost.
- feindura 1.1 uses no more htmlentities, now everything is encoded in UTF-8.
- Feindura is now also available in French. Thanks go to Fabian Russ (fabianruss.de)
- Multiple security vulnerabilities fixed (Thanks to Eldar "Wireghoul" Marcussen www.justanotherhacker.com). All inputs are now filtered to protect against XSS Attacks.
- Of course, the new MooTools 1.3.2 and CKEditor 3.6 were added.
Important
The feindura class name has changed, the initial character is now written in uppercase like: "Feindura".
Therefore, the feindura class is implemented now as follows:
<?php
include('cms/feindura.include.php');
$myCms = new Feindura();
?>