Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I set the default theme in phpMyAdmin?

By default the "theme" option in phpMyAdmin affects the theme only for the browser in which the theme setting is changed (stored in a cookie maybe?). How do I set a specific theme as the default for all users?

like image 973
John Langford Avatar asked Aug 05 '16 17:08

John Langford


People also ask

How do I set phpMyAdmin to dark mode?

The exact location should be: C:\xampp\phpMyAdmin\themes . After you install your theme you will have to open your phpMyAdmin dashboard and, under "Appearance settings" panel, change the theme to the one you installed.

How do I set a default theme in WordPress?

Using the WordPress administration dashboard. To do that, go to Appearance » Themes from the left sidebar of the WordPress admin panel. Move the mouse cursor over the theme you want to use and then click on the Activate button to change the WordPress theme.


1 Answers

A default theme can be specified from the config.inc.php file in the document root of the phpMyAdmin installation:

$cfg['ThemeDefault'] = 'original';

source: http://www.wallpaperama.com/forums/_wxxram.html

like image 160
John Langford Avatar answered Oct 18 '22 03:10

John Langford