Installer

- make sure the folder 
- uploads
- uploads/images
- uploads/thumbs - for each format in fbv settings.php
- uploads/large
- uploads/small 


THIS IS A SHORT DEVELOPERS DOCUMENTATION

We recommend to use gii and giix shipped with this install. Please use the mg templates while creating models or CRUD code. 
If you generate CRUD code you can choose between two templates one for tables using created, modified columns and one for other models.
please generate all models representing actual database tables in the applications models (/protected/models/) folder this ensures easy reuse of the tables.

Plugins.
Place all plugins into one of the subfolders under proteted/plugins
Choose the folder that represents the category of you plugin
Please place all models representing database tables into the

USED Libraries
JQuery http://jquery.org/ MIT/GPL 
JQuery UI http://jqueryui.com/ MIT/GPL
FancyBox http://fancybox.net/  MIT/GPL

Used CSS N 
  http://blueprintcss.org/ 
  Copyright (c) 2007 - 2010 blueprintcss.org

jQuery Template
  https://github.com/jquery/jquery-tmpl MIT/GPL
  CDN 
  http://ajax.microsoft.com/ajax/jquery.templates/beta1/jquery.tmpl.js
  http://ajax.microsoft.com/ajax/jquery.templates/beta1/jquery.tmpl.min.js

USED Extensions
http://www.yiiframework.com/extension/yii-flash/ NEW BSD
http://www.yiiframework.com/extension/giix/ NEW BSD
http://www.yiiframework.com/extension/yii-user/ NEW BSD
http://www.yiiframework.com/extension/nlsclientscript/ NEW BSD
http://www.yiiframework.com/extension/image/ New BSD
http://www.yiiframework.com/extension/mail/ New BSD

http://www.yiiframework.com/extension/xupload MIT 
  which includes  https://github.com/blueimp/jQuery-File-Upload MIT
  
  

NOT sure if used

Documentation default settings in fbvsettings.php 

return array (
  'arcade' => 
  array (
    'description' => 'This is a short description of the project',
  ),
  'image' => 
  array (
    'formats' => 
    array (
      "thumbnail" => array (
        "width" => 100,
        "height" => 75,
        "quality" => FALSE, // set to integer 0 ... 100 to activate quality rendering
        "sharpen" => FALSE, // set to integer 0 ... 100 to activate sharpen
      ),
      "large" => array (
        "width" => 750,
        "height" => 750,
        "quality" => 80, // set to integer 0 ... 100 to activate quality rendering quality and sharpen 
        "sharpen" => 20, // set to integer 0 ... 100 to activate sharpen
      ),
      "medium" => array (
        "width" => 450,
        "height" => 450,
        "quality" => 80, // set to integer 0 ... 100 to activate quality rendering quality and sharpen 
        "sharpen" => 20, // set to integer 0 ... 100 to activate sharpen
      ),
    ),
  ),
);
