diff --git a/e107_admin/db.php b/e107_admin/db.php index 9055a8dc0..e68e9516f 100644 --- a/e107_admin/db.php +++ b/e107_admin/db.php @@ -9,9 +9,9 @@ * Administration - Database Utilities * * $Source: /cvs_backup/e107_0.8/e107_admin/db.php,v $ - * $Revision: 1.43 $ - * $Date: 2009-11-14 04:05:35 $ - * $Author: e107coders $ + * $Revision: 1.44 $ + * $Date: 2009-11-14 04:14:56 $ + * $Author: marj_nl_fr $ * */ @@ -210,22 +210,34 @@ class system_tools private function convertUTF8Form() { - $mes = e107::getMessage(); + $emessage = e107::getMessage(); $frm = e107::getForm(); - //TODO a function to call the e107_config information in e107_class.php. require(e_BASE."e107_config.php"); $dbtable = $mySQLdefaultdb; //TODO LAN - $message = " - This function will permanantly modify all tables in your database. (".$mySQLdefaultdb.")
+ $message = ' + This function will permanently modify all tables in your database. ('.$mySQLdefaultdb.')
It is HIGHLY recommended that you backup your database first.
- Be sure to click the 'Convert Database' button only once. - The conversion process can take up to one 1 minute or more depending on the size of your database. - "; + If possible use a copy of your database.
+ Do not forget to purge unnecessary input - e.g. old chatbox messages, pm, …
+ as well as to set the maintenance flag to main admins only.
+
+ Be sure to click the “Convert Database” button only once.
+ The conversion process can take up to one minute or much much more depending on the size of your database.
+
+ Known problems (list non-exhaustive): + + '; - $mes->add($message, E_MESSAGE_WARNING); + $emessage->add($message, E_MESSAGE_WARNING); $text = "
@@ -237,7 +249,7 @@ class system_tools
"; - e107::getRender()->tablerender("Convert", $mes->render().$text); + e107::getRender()->tablerender("Convert", $emessage->render().$text); }