-
Notifications
You must be signed in to change notification settings - Fork 3
Installation
crynobone edited this page Oct 7, 2011
·
5 revisions
This will create the default installation of the Fuel Hybrid in your Fuel Framework installation.
- Download the Fuel Hybrid.
- Unzip/Extract the download.
- Move the files to your server, extracted files should be added to fuel/packages/hybrid folder.
fuel/
app/
core/
packages/
hybrid/
classes/
config/
docs/
tasks/
tests/
vendor/
bootstrap.php
README.md
public/
.htaccess
assets/
index.php
oil
- Fuel Hybrid and Orm package need to be included in the autoload packages under APPPATH/config/config.php
'always_load' => array(
/**
* These packages are loaded on Fuel's startup. You can specify them in
* the following manner:
*
* array('auth'); // This will assume the packages are in PKGPATH
*
* // Use this format to specify the path to the package explicitly
* array(
* array('auth' => PKGPATH.'auth/')
* );
*/
'packages' => array(
'orm',
'hybrid',
),