A faire pour pouvoir importer les bases MySQL dans phpMyAdmin sans erreur et uploader des extensions/plugins dans les CMS sur WAMP ou WAMPP: Solution trouvée ici: https://stackoverflow.com/questions/33974492/error-near-on-at-position-25-while-importing-table-for-wordpress-a-foreign I had the same error when I tried to migrate Drupal database to a new local apache server(I am using XAMPP on Windows machine). Actually I don't know the meaning of this error, but after trying steps below, I imported the database without errors. Hope this could help: Changing php.ini at C:\xampp\php\php.ini max_execution_time = 600 max_input_time = 600 memory_limit = 2000M post_max_size = 2000M ---> Attention, la valeur de "post_max_size" doit être supérieure u égale à la valeur de "upload_max_filesize". upload_max_filesize = 1000M Changing my.ini at C:\xampp\mysql\bin\my.ini max_allowed_packet = 1024M Cette valeur de 1024M pour "max_allowed_packet" est très élevé et pourrait provoquer des plantages serveurs: il vaut mieux se contenter d'une valeur plus faible. SOLUTION pour importer les extensions dans JOOMLA ou autre, le problème étant dû à la taille maxi des fichiers envoyables, définie dans php.ini de APACHE, situé dans c:\wamp64\bin\apache\apache2.4.54.2\bin: upload_max_filesize=10M post_max_size=12M (càd upload_max_size + 2M)