Can anyone tell me what needs to be done to migrate my testcases and stuff from TL1.8.4 (Windows) to TL1.8.5(Unix)
Thank you
Jo
Migrating TL 1.8.4 (Windows) to TL 1.8.5 (Unix)
Moderators: Amaradana, TurboPT, TL Developers
Re: Migrating TL 1.8.4 (Windows) to TL 1.8.5 (Unix) - issues
Finally, migrated from TL 1.8.4 (Windows) to TL 1.8.5 (Unix) successfully.
1. /opt/testlink/lib/functions/database.class.php
Line # 193 had to add $this-> for the "reportFatal()" function. It was complaining that there is no function called reportFatal().
Change from
reportFatal($errorMsg);
to
$this->reportFatal($errorMsg);
2. Exported and imported all the testcases.
/opt/testlink/lib/bugtracking/int_fogbugz.php - In this file had to change the "bug" table to "Bug" in all the SELECT statements
Hope this helps someone. Otherwise, it Testlink works great!
Thank you
Jo
1. /opt/testlink/lib/functions/database.class.php
Line # 193 had to add $this-> for the "reportFatal()" function. It was complaining that there is no function called reportFatal().
Change from
reportFatal($errorMsg);
to
$this->reportFatal($errorMsg);
2. Exported and imported all the testcases.
/opt/testlink/lib/bugtracking/int_fogbugz.php - In this file had to change the "bug" table to "Bug" in all the SELECT statements
Hope this helps someone. Otherwise, it Testlink works great!
Thank you
Jo