Posted by sean
2014-05-15

how can i install multiple forms as i get a sql error staff table already exists?? Sean
Posted by Tom
2014-05-16

Hi Sean,

First, you need to rename the tables of the first instance in your MySQL database. Use phpMyAdmin to change "tbl_staff" to say, "tbl2_staff". Do the same to the other table of the first instance. Also you need to change the table names in the script side. To do so, open web/codelib/cfg/config.table_name.inc.php and find this line.
define( 'TBL_PREFIX', 'tbl_' );
Change 'tbl_' to 'tbl2_' like
define( 'TBL_PREFIX', 'tbl2_' );
Now you are ready to install another instance.