Getting Started

  1.  Download the feindura + demo site package
  2. Extract the .zip archiv into the Documentroot of your local server (e.g. XAMPP).
  3. Go to http://localhost/feinduraDemoSite/cms and set the correct paths in the Admin Settings.
  4.  Check out the Tutorials and check out the "how to's" in the forum

 

Whats next? To get an understanding how feindura was implemented, take a look at the index.php inside the /feinduraDemoSite/ folder.

How do i add feindura to my Website?

Download the just feindura and copy the content of the download feindura folder into a folder called /cms/ (you can also choose another name) inside your websites folder.

An index.php will work as your primary layout file. In there you tell feindura where to put the content of your pages. To include the Feindura class you have to add the following lines on the top of your index.php before any HTML tag.

 
<?php
 include('cms/feindura.include.php');
 $feindura = new Feindura();

?><!DOCTYPE html>
<html>
 <head>
 <?php
 $feindura->createMetaTags('Authors Name');
 ?>
 ...

After you created an instance of the Feindura class you can use the methods listed below to create menus and display pages.
The most used methods of the Feindura class are:

 Whats next? Head over to the Tutorials and read the Docs for more.

Javascript Frameworks

feindura uses MooTools extensivly. Even though should all javascript framework work fine, except Prototype which cause conflicts with the frontend editing mode.

If you want to use the MooTools framework in your website you should include the script at the end of your page (before the closing </body> tag) as follow:

 
<script>window.MooTools || document.write(unescape('<script src="//ajax.googleapis.com/ajax/libs/mootools/1.4.5/mootools-yui-compressed.js"><\/script>'))</script>

Scheme of the feindura implementation

Buffer