I installed XAMPP today on Ubuntu 14.04. I tried to create a new database in phpMyAdmin but received the error
#1932 - Table \'phpmyadmin.pma__tracki
I did not want to run create_tables.sql as pointed in other answers. I added below line after Servers configuration.
/*
* Servers configuration
*/
$i = 1;
Then I logged out from phpMyAdmin and logged in again. Problems were solved there. Logout seems to be important here.
Since none of the solutions worked for me I did the following:
sudo nautlius./opt/lampp/var/mysql.create_tables.sql (found at /opt/lampp/phpmyadmin/sql) file to another one on the desktop called sql.sql/opt/lampp/bin/mysql -uroot -pphpmyadmin with source /home/user/Desktop/sql.sqlThat solved the problem for me.
I made it working with some changes in /opt/lampp/phpmyadmin/config.inc.php:
Add a $i=1 after /* server parameters */
/* Server parameters */
$i = 1
AND fix tablespaces of phpMyAdmin as written in
1932-table-phpmyadmin-pma-tracking-doesnt-exist-in-engine