PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Wednesday, February 9, 2022

[FIXED] Phpmyadmin: How to add permanent setting for exporting mysql gzipped by default

 February 09, 2022     compression, config, gzip, phpmyadmin, settings     No comments   

Issue

There is a setting under settings > export > compression for default compression method when you hit "export database" (I want gzip).

How to add permanent setting for exporting mysql gzipped by default

I cannot do it permanent. Every time I restart server it is set back to compression none method.

How to make this settings permanent using phpmyadmin config file?


Solution

Update config file config.inc.php in top-level directory.

Add string

$cfg['Export']['compression'] = 'gzip';


Answered By - verybadbug
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing