InterJinn

Development Framework For PHP

Configuration

Configuration of the InterJinn framework is relatively simple. To create a new project configuration, just copy the file /INTERJINN/Projects/templateConfig.inc to your project location and give it a more relevant name.

Example:
copy /INTERJINN/Projects/templateConfig.inc /BANK_PROJECT/bankConfig.inc
Now you can go ahead and modify this file to meet the requirements of your project. Generally speaking all core aspects that require configuration do so via the global interJinn array.
Example:
$GLOBALS['interJinn']['configVarName'] = 'configVarValue';
The actual configuration of the framework itself is broken into several sub sections which ellaborate upon the configuration variables and their values. Please use the links to yor left to learn more about these specific configuration schemes. You may find it useful to download the package and see how this Website was created and configured.

WARNING

For maximum compatibility it is important that all configuration variables that require a path be set using the Unix/Linux style. Specifically, in Windows, you should replace all backslashes (\) with forward slashes (/) when setting a path variable. This has the effect of forcing InterJinn and any project files to exist on the same partition as the Web server when run under Windows.