[eluser]dexcell[/eluser]
[quote author="wiredesignz" date="1225359423"]Create a normal {$module}/config/autoload.php file entry such as:
Code:
$autoload['config'] = array('some_filename');
Or in your controller create an $autoload class variable using the following format.
Code:
class SomeController extends Controller
{
protected $autoload = array('config' => array('some_filename'));
}
[/quote]
Sorry to bugging you again wiredesignz,
I've failed to convert my project to ME,
Here is what i do:
-Delete all matchbox related file
-Install ME by copying Controller.php, Modules.php and MY_Router.php into application/libraries folder
-Create the {$module}/config/autoload.php as you suggested
here is the autoload that i created (both in their own config folder)
Code:
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
$autoload['libraries'] = array('cl_auth');
$autoload['config'] = array('cl_auth');
?>
Code:
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/* the ignitedrecord library is in subfolder named ignitedrecord also */
$autoload['libraries'] = array('ignitedrecord/ignitedrecord');
?>
- Run my base url, error showup while usually it runs fine.
Any help is appreciated. Thank you