by
Larzan » Mon Jul 28, 2014 1:54 pm
Juuuuuust on more thing

Now i am trying to separate the configuration settings to various sections, so i created one file for each language setting.
The language setting file is set up as discussed with cms:php and also a template tag to give it the proper name.
This works fine when i just call them separately,
BUT as soon as i am trying to include them all at the same time the last one is not 'compiled' by couch, but just written as text to the output.
- Code: Select all
// ALLGEMEIN
require_once('tv_data_general.php');
// ENGLISCH
require_once('tv_data_en.php');
// DEUTSCH
require_once('tv_data_de.php');
I tried this with different files in different orders, and the first two always work fine, but the third one is not being parsed as php by couch but just written to the output.
What might the problem be here, some limitation of couch, or some problem in my setup?