FAQ - CMS

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

CMS and htaccess (Seo)


If you server is running on Apache you can use the build in optimisation for short url's. This gives you the possibilities to have shorter and cleaner URL's and a better search engine performance.To use the ...

Read more

Installation - First Step


When you install CMS the first time, please read the installation manual very carefully! Installing CMS is very simple and the installation wizard will guide you thru in only two steps.Important information ...

Read more