### XAMPP 1.7.0 UPGRADE HOWTO ### ---------- English ---------- [By Setup]: Run "setup_xampp.bat". For Mysql "my.cnf" and for phpMyAdmin "config.inc.php" were new configured. [By Hand]: Editing "my.cnf" for Mysql => \mysgl\bin\my.cnf Comment out these line with #: innodb_log_arch_dir = "/xampp/mysql/" Editing "config.inc.php" for phpMyAdmin => \phpMyAdmin\config.inc.php Add these line: $cfg['Servers'][\$i]['AllowNoPasswordRoot'] = true; IMPORTANT: MySQL table upgrade to 5.1.30 in 13 steps! cd \mysql\bin mysql_upgrade.exe --force -u root -p -t "%TEMP%" mysql -u root -h localhost mysql> use mysql; mysql> REPAIR TABLE `event`; mysql> REPAIR TABLE `help_category`; mysql> REPAIR TABLE `help_keyword`; mysql> REPAIR TABLE `help_topic`; mysql> REPAIR TABLE `proc`; mysql> REPAIR TABLE `servers`; mysql> REPAIR TABLE `time_zone_name`; mysql> quit; mysql_upgrade ---------- German ---------- [Mit Setup]: Führen Sie "setup_xampp.bat" aus. Die "my.cnf" für Mysql und für phpMyAdmin die "config.inc.php" neu konfiguriert. [Per Hand]: Öffnen Sie die "my.cnf" für Mysql => \mysgl\bin\my.cnf Kommentieren Sie diese Zeile mit einer Raute (#) aus: innodb_log_arch_dir = "/xampp/mysql/" Öffnen Sie die "config.inc.php" für phpMyAdmin => \phpMyAdmin\config.inc.php Fügen Sie diese Zeile hier ein: $cfg['Servers'][\$i]['AllowNoPasswordRoot'] = true; WICHTIG: MySQL Tabellen Upgrade zu 5.1.30 in 13 Schritten! cd \mysql\bin mysql_upgrade mysql -u root -h localhost mysql> use mysql; mysql> REPAIR TABLE `event`; mysql> REPAIR TABLE `help_category`; mysql> REPAIR TABLE `help_keyword`; mysql> REPAIR TABLE `help_topic`; mysql> REPAIR TABLE `proc`; mysql> REPAIR TABLE `servers`; mysql> REPAIR TABLE `time_zone_name`; mysql> quit; mysql_upgrade