In TYPO3, Version 6.1.5, I'd like to split my configuration in typo3conf in three parts:
- One part generated by the install-tool, under version control.
- One manually managed part, under version control.
- One manually managed part, containing server specific stuff, not under version control. Contains e.g. database credentials.
I've tried to do it like this:
- is done using LocalConfiguration.php,
- is done using AdditionalConfiguration.php
- is done by and additional file, included by the AdditionalConfiguration.php.
This does not work, as it seams that the files are evaluated in this order:
- LocalConfiguration.php
- AddtitionalConfiguration.php
- LocalConfiguration.php
So the changes from my server specific file (and AdditionalConfiguration.php) are simple overwritten by the stuff from LocalConfiguration.php.
Any idea how to get around something like this?