FAQ

Add more Super Administrators


Adding another super administrator is fairly easy! However you need to know that every super administrator created in the administration panel is protected as well in the db.php file.Please follow this steps ...

Read more

Create your own Template


Any content management system is only as good as your own template/mydesign. I'm sure you want your own design associated with your business or brand.The easiest way to start is to duplicate the existing file ...

Read more

Setup your first Plugin


After installing your plugin (see FAQ Article - Install your first plugin), most of the time you have to setup user-group permissions and plugin settings.When you download a plugin from the CMS website there ...

Read more

MySQL Plugins Table


When creating a plugin you need to store anything about your plugin in the the plugins table, the structure of this table looks like this:Should be easy to understand if you know MySQL a little bit. However ...

Read more

Plugin uninstall.php


Let's explain how to build the uninstall.php for a plugin.Header:// Include the config file...if (!file_exists('../../config.php')) die('[uninstall.php] config.php not found');require_once ...

Read more

Plugin install.php


Let's explain how to build the install.php for a plugin.Header:// Include the config file...if (!file_exists('../../config.php')) die('[install.php] config.php not found');require_once '../../config.php';// If ...

Read more

My First Plugin


It is very easy to create your own plugin, with a little bit knowledge of PHP, MySQL and HTML/CSS it is fairly easy to create your own plugin!Let's have a look into the very simple plugin Open external URL in ...

Read more

Apache and Zlib


Do you have Apache and Zlib installed on your server, then you can get the most out of CMS.First change to Apache mode in the db.php, see this FAQ article for more information.Open your .htaccess file and add ...

Read more

Install your first plugin


To extend your CMS, you can extend it with plugins.Plugins are easy to install and bring great features into your website.To install a plugin follow this steps:Go to your administration panel -> ...

Read more

Hook: php_index_page


Use this hook to execute PHP code in the index.php file between the page.For example:// Confirm user if ($page == 'rf_ual') { if (is_numeric($page1) && is_numeric($page2) && ...

Read more