===== How to serve multiple mantis installations on the windows platform ===== with - just one mantis installation - one or more databases There are 6 areas to take into account: - Sources - Database - Configuration - Attachments - Scheduled tasks - Updating mantis ==== Sources ==== For all installations, sources go in one(1) place. ==== Database ==== This is a no-brainer, do what ever you like, combine the DB or use seperate ones, just have it reflected in the correct config file. ==== Configuration ==== The various Mantis installations should all point to the same directory, each having their own hostheaders. Based upon the hostheaders the correct config file can be selected within the normal ''config_inc.php'' (see sample below). Configuration of each installation, remains the same. All is handled in a dedicated config file. ==== Attachments ==== Clearly per installation a seperate file location should be defined in case these are stored using DISK of FTP. Handled in the specific config and within the project definition within each installation. ==== Scheduled tasks ==== For each task a unique script need to be created per installation. Suppose you have a script reading the email called ''read_email.php'' and you have ''mantis1'' and ''mantis2'' installed, you need to copy the default script to ''read_email_mantis1.php'' and ''read_email_mantis2.php''. So for each installation you now can run the script in isolation and still have the option to select the correct config. ==== Updating mantis ==== * As always , prepare a backup. * Next step is follow the default update instructions. * copy all new sources etcetera * Final step is within each installation to run the update script That is all ===== Examples of Configuration ===== ==== config_inc.php ==== So how would your ''config_inc.php'' look: Clearly the above script can be optimised using php - switch like : The contents of ''config_mantis1.php'' and ''config_mantis2.php'' is the normal config for each individual installation of mantis. ==== custom_strings_inc.php ==== There is one other area which needs to be addressed which is the reference within Mantis to ''custom_strings_inc.php''. In the current setup it is assumed that these would be the same for all instances running of that single install. This clearly is not de facto true. Good news is that it is not a real issue anyway. This can be handled pretty easily, exactly in the same way as for the base config !! Just move your custom strings into an instance dependent file called ''custom_strings_mantis1.php'' and so on. Then your ''custom_strings_inc.php'' would look like : ==== custom_constants_inc.php ==== The same applies for the custom_constants_inc.php