Line 57:
Line 57:
Access Administration/Parameters/Email and then select "smtp" as mail_delivery_method, "localhost" as smtpserver and blank smtp_username, and smtp_password, and un-select SSL.
Access Administration/Parameters/Email and then select "smtp" as mail_delivery_method, "localhost" as smtpserver and blank smtp_username, and smtp_password, and un-select SSL.
+
+
=== Migrating data from previous version ===
+
Before overwriting or uninstalling the previous version you can dump the data from the database:<syntaxhighlight lang="shell">
+
mysqldump -u bugzilla -p bugzilla > bugzilla.sql
+
+
or
+
+
mysqldump105 -u bugzilla -p bugzilla > bugzilla.sql
+
+
</syntaxhighlight>and then import it into the "new" database:<syntaxhighlight>
+
mysql bugzilla < bugzilla.sql
+
</syntaxhighlight>and finally run the checksetup.pl bugzilla script to make sure that the database is upgraded to the latest structure (but retains the data).<syntaxhighlight>
+
/usr/share/bugzilla/checksetup.pl
+
</syntaxhighlight>
=== Uninstall ===
=== Uninstall ===