Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm setting up a project where i wish to use the same codeigniter system + share some common models, libraries and even config files between the different websites.

I have put my system folder and a shrunk in application folder in docs/include/codeigniter and i define the path for the system folder in the index file of every website. I figure, that in order to use the models, libraries and config files from this application folder, i should use the add_package_path() function from http://ellislab.com/codeigniter/user-guide/libraries/loader.html.

But where can i put this call to make sure that it loads as early as possible? I would like to be able to even share the autoload.php config file, but if i call this method in the constructor of the index controller i will receive an error, because CI needs to use some of the config files before starting to load controllers.

share|improve this question
If that's the case, make them one application & use folders + routes to manage it as if it was two applications. There's no point of writing two applications if you're going to re-use all the stuffs from the first one. – ahmad Feb 4 at 23:50

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.