Problem: There is an error in phpMyAdmin export page -- “Field:group: xxx has no type”
Solution: update Form.php in phpMyAdmin path.
- Add below function in Form.php
protected function cleanGroupPaths(array $form): array { foreach($form as &$name) { if (mb_strpos((string) $name, ':group:') === 0) { $name = str_replace('/', '-', $name); } } return $form; }
2. update loadForm function
public function loadForm($form_name, array $form) { $this->name = $form_name; $form=$this->cleanGroupPaths($form); $this->readFormPaths($form); $this->readTypes(); } }
ref: https://github.com/williamdes/phpmyadmintest/commit/47971806316304f650ca1b3742e2a53801d2a794