Index: win_installer/installer/templates/update_lams_configuration.sql =================================================================== diff -u -rd6f5035a737c68aebdb0f27324a6af99f9326346 -r6bea96a2ac932bc49e6f7dfa37b890d8dc1ce149 --- win_installer/installer/templates/update_lams_configuration.sql (.../update_lams_configuration.sql) (revision d6f5035a737c68aebdb0f27324a6af99f9326346) +++ win_installer/installer/templates/update_lams_configuration.sql (.../update_lams_configuration.sql) (revision 6bea96a2ac932bc49e6f7dfa37b890d8dc1ce149) @@ -1,15 +1,10 @@ update lams_configuration set config_value='@URL@' where config_key='ServerURL'; -update lams_configuration set config_value='@INSTDIR@' where config_key='LamsHome'; update lams_configuration set config_value='@TEMPDIR@' where config_key='TempDir'; update lams_configuration set config_value='@DUMPDIR@' where config_key='DumpDir'; update lams_configuration set config_value='@EARDIR@' where config_key='EARDir'; update lams_configuration set config_value='@REPOSITORYDIR@' where config_key='ContentRepositoryPath'; update lams_configuration set config_value='@LOCALE@' where config_key='ServerLanguage'; update lams_configuration set config_value='@LOCALE_DIRECTION@' where config_key='ServerPageDirection'; -update lams_configuration set config_value='@WILDFIRE_DOMAIN@' where config_key='XmppDomain'; -update lams_configuration set config_value='@WILDFIRE_CONFERENCE@' where config_key='XmppConference'; -update lams_configuration set config_value='@WILDFIRE_USER@' where config_key='XmppAdmin'; -update lams_configuration set config_value='@WILDFIRE_PASS@' where config_key='XmppPassword'; update lams_user set login='@LAMS_USER@', password=sha1('@LAMS_PASS@') where user_id=1; update lams_user set password=sha1('@LAMS_PASS@') where login='test1'; update lams_user set password=sha1('@LAMS_PASS@') where login='test2';