I have two CI installations
/aCI/
/aCI/bCI/
How can I include lang file from bCI in aCI xxx_lang.php? I tried to add this:
include('../../../../bCI/application/language/english/xxx_lang.php');
…in xxx_lang.php in aCI/application/language/xxx_lang.php but it does not work.
I want to do this because it saves time; when I change something in “bCI” languages and I can use it in “aCI” site.
Try write your full path like ‘/var/www/domain..etc’
I strongly recommend you to read this artile Codeigniter Multiple_Applications.
Not only language, you can also share library, models, helpers and etc.