]> git.mxchange.org Git - mailer.git/commitdiff
Table types InnoDB/MEMORY added
authorRoland Häder <roland@mxchange.org>
Sat, 10 Jul 2010 09:44:11 +0000 (09:44 +0000)
committerRoland Häder <roland@mxchange.org>
Sat, 10 Jul 2010 09:44:11 +0000 (09:44 +0000)
inc/language/optimize_de.php
inc/modules/admin/what-optimize.php
templates/de/html/admin/admin_optimize.tpl

index e3ef284a346b62174141d1c15c872dff229b7e0b..441b99dcf7f2d57e3c62def9f71991092900f079 100644 (file)
@@ -50,6 +50,8 @@ addMessages(array(
        'OPTIMIZE_TOTAL_SIZE' => "Gesamtgr&ouml;sse",
        'OPTIMIZE_GAIN_SIZE' => "Eingespart",
        'OPTIMIZE_STATUS_OK' => "Nein",
+       'OPTIMIZE_STATUS_TABLE_DOES_NOT_SUPPORT_OPTIMIZE_DOING_RECREATE_ANALYZE_INSTEAD' => "Keine Unterst&uuml;tzung (1)",
+       'OPTIMIZE_STATUS_THE_STORAGE_ENGINE_FOR_THE_TABLE_DOESNT_SUPPORT_OPTIMIZE' => "Keine Unterst&uuml;tzung (2)",
        'OPTIMIZE_STATUS_UNSUPPORTED' => "Nicht m&ouml;glich",
        'OPTIMIZE_STATUS_OPTIMIZED' => "Optimiert.",
        'OPTIMIZE_DB_TOTAL_TABLES' => "Gesamtzahl angelegter Tabellen",
index 2f73c933e6c23f1b352439f277155cd11bb81515..68724755f3202aaada2765cd1899c5c1eb575e00 100644 (file)
@@ -58,7 +58,7 @@ foreach ($DATA['tables'] as $row_array) {
        if (empty($row_array[1])) $row_array[1] = 'NONE';
 
        // Get optimization status
-       $REP = '{--OPTIMIZE_STATUS_' . strtoupper($row_array[1]) . '--}';
+       $REP = '{--OPTIMIZE_STATUS_' . str_replace('__', '_', str_replace(',', '', str_replace('+', '', str_replace("'", '', str_replace(' ', '_', strtoupper($row_array[1])))))) . '--}';
 
        $OPT = '{--OPTIMIZE_STATUS_UNSUPPORTED--}';
 
index f67c421e93bce39df68816c8aa232e0bf568635b..10c56e8172d3d59a4f3a6f8002a2c6eb6e8c76b4 100644 (file)
        </tr>
 </table>
 </div>
+
+<div class="admin_note" align="left">
+       <strong>Aufl&ouml;sung der Zahlen in Klammern:</strong>
+       <ol>
+               <li>Tabellen mit dem Typ &quot;InnoDB&quot; brauchen nicht optimiert
+               werden und sollten eher neu erstellt (nicht l&ouml;schen und neu
+               anlegen!) und dann analysiert werden. Dies unterst&uuml;tzt {?TITLE?}
+               noch nicht.</li>
+               <li>Tabellen mit dem Typ &quot;Speicher/Heap&quot; k&ouml;nnen nicht
+               optimiert werden.</li>
+       </ol>
+</div>