skip to Main Content

I always find that error every time I export a database from phpMyAdmin using XAMPP. This is what it looks like, but, if I download another file from YouTube, or Pinterest, or any other site, then there will not be any problem.

I ask my university friends, and most of them don’t have the solution, because most of them don’t have a problem like that.

3

Answers


  1. phpMyAdmin export network error in PHP 8.1.4

    When I tried to export a test database as SQL, it gave me an error file as test.sql.

    I renamed it as .html and copied it to the pma folder and accessed via localhost/phpmyadmin/test.html.

    It shows

    index.php: Missing parameter: what
    index.php: Missing parameter: export_type
    

    See error image

    phpMyAdmin 5.1.3 has an issue with PHP 8.1.4.

    Downgrading to older a PHP version solves this problem. I downgraded to 8.0.18. It works for me.

    Login or Signup to reply.
  2. There had been a bug or change with how PHP handles setting headers which had affected phpMyAdmin, but it has been worked around by phpMyAdmin starting with releases 5.1.4 and 5.2.0 which were published on 2022-05-10.

    There’s a phpMyAdmin bug report with quite a bit of discussion if you want the back history on this.

    Edit: Updated the answer because the fix has been released.

    Login or Signup to reply.
  3. Downgrading to an older PHP version solves this problem. phpMyAdmin 5.1.3 currently has issues with PHP 8.1. So, I downgraded to 7.4.28.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search