config.html 350.4 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">


<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    
    <title>Configuration &#8212; phpMyAdmin 4.8.5 documentation</title>
    
    <link rel="stylesheet" href="_static/classic.css" type="text/css" />
    <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
    
    <script type="text/javascript">
      var DOCUMENTATION_OPTIONS = {
        URL_ROOT:    './',
        VERSION:     '4.8.5',
        COLLAPSE_INDEX: false,
        FILE_SUFFIX: '.html',
        HAS_SOURCE:  true
      };
    </script>
    <script type="text/javascript" src="_static/jquery.js"></script>
    <script type="text/javascript" src="_static/underscore.js"></script>
    <script type="text/javascript" src="_static/doctools.js"></script>
    <link rel="index" title="Index" href="genindex.html" />
    <link rel="search" title="Search" href="search.html" />
    <link rel="copyright" title="Copyright" href="copyright.html" />
    <link rel="top" title="phpMyAdmin 4.8.5 documentation" href="index.html" />
    <link rel="next" title="User Guide" href="user.html" />
    <link rel="prev" title="Installation" href="setup.html" /> 
  </head>
  <body role="document">
    <div class="related" role="navigation" aria-label="related navigation">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="genindex.html" title="General Index"
             accesskey="I">index</a></li>
        <li class="right" >
          <a href="user.html" title="User Guide"
             accesskey="N">next</a> |</li>
        <li class="right" >
          <a href="setup.html" title="Installation"
             accesskey="P">previous</a> |</li>
        <li class="nav-item nav-item-0"><a href="index.html">phpMyAdmin 4.8.5 documentation</a> &#187;</li> 
      </ul>
    </div>  

    <div class="document">
      <div class="documentwrapper">
        <div class="bodywrapper">
          <div class="body" role="main">
            
  <div class="section" id="configuration">
<span id="config"></span><span id="index-0"></span><h1>Configuration<a class="headerlink" href="#configuration" title="Permalink to this headline"></a></h1>
<p>All configurable data is placed in <code class="file docutils literal"><span class="pre">config.inc.php</span></code> in phpMyAdmin&#8217;s
toplevel directory.  If this file does not exist, please refer to the
<a class="reference internal" href="setup.html#setup"><span class="std std-ref">Installation</span></a> section to create one. This file only needs to contain the
parameters you want to change from their corresponding default value in
<code class="file docutils literal"><span class="pre">libraries/config.default.php</span></code> (this file is not inteded for changes).</p>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last"><a class="reference internal" href="#config-examples"><span class="std std-ref">Examples</span></a> for examples of configurations</p>
</div>
<p>If a directive is missing from your file, you can just add another line with
the file. This file is for over-writing the defaults; if you wish to use the
default value there&#8217;s no need to add a line here.</p>
<p>The parameters which relate to design (like colors) are placed in
<code class="file docutils literal"><span class="pre">themes/themename/layout.inc.php</span></code>. You might also want to create
<code class="file docutils literal"><span class="pre">config.footer.inc.php</span></code> and <code class="file docutils literal"><span class="pre">config.header.inc.php</span></code> files to add
your site specific code to be included on start and end of each page.</p>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">Some distributions (eg. Debian or Ubuntu) store <code class="file docutils literal"><span class="pre">config.inc.php</span></code> in
<code class="docutils literal"><span class="pre">/etc/phpmyadmin</span></code> instead of within phpMyAdmin sources.</p>
</div>
<div class="admonition warning">
<p class="first admonition-title">Warning</p>
<p class="last"><a class="reference internal" href="glossary.html#term-mac"><span class="xref std std-term">Mac</span></a> users should note that if you are on a version before
<a class="reference internal" href="glossary.html#term-mac-os-x"><span class="xref std std-term">Mac OS X</span></a>, PHP does not seem to
like <a class="reference internal" href="glossary.html#term-mac"><span class="xref std std-term">Mac</span></a> end of lines character (<code class="docutils literal"><span class="pre">\r</span></code>). So
ensure you choose the option that allows to use the *nix end of line
character (<code class="docutils literal"><span class="pre">\n</span></code>) in your text editor before saving a script you have
modified.</p>
</div>
<div class="section" id="basic-settings">
<h2>Basic settings<a class="headerlink" href="#basic-settings" title="Permalink to this headline"></a></h2>
<dl class="option">
<dt id="cfg_PmaAbsoluteUri">
<code class="descname">$cfg['PmaAbsoluteUri']</code><a class="headerlink" href="#cfg_PmaAbsoluteUri" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<div class="versionchanged">
<p><span class="versionmodified">Changed in version 4.6.5: </span>This setting was not available in phpMyAdmin 4.6.0 - 4.6.4.</p>
</div>
<p>Sets here the complete <a class="reference internal" href="glossary.html#term-url"><span class="xref std std-term">URL</span></a> (with full path) to your phpMyAdmin
installation&#8217;s directory. E.g.
<code class="docutils literal"><span class="pre">https://www.example.net/path_to_your_phpMyAdmin_directory/</span></code>.  Note also
that the <a class="reference internal" href="glossary.html#term-url"><span class="xref std std-term">URL</span></a> on most of web servers are case sensitive (even on
Windows). Don’t forget the trailing slash at the end.</p>
<p>Starting with version 2.3.0, it is advisable to try leaving this blank. In
most cases phpMyAdmin automatically detects the proper setting. Users of
port forwarding or complex reverse proxy setup might need to set this.</p>
<p>A good test is to browse a table, edit a row and save it. There should be
an error message if phpMyAdmin is having trouble auto–detecting the correct
value. If you get an error that this must be set or if the autodetect code
fails to detect your path, please post a bug report on our bug tracker so
we can improve the code.</p>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last"><a class="reference internal" href="faq.html#faq1-40"><span class="std std-ref">1.40 When accessing phpMyAdmin via an Apache reverse proxy, cookie login does not work.</span></a>, <a class="reference internal" href="faq.html#faq2-5"><span class="std std-ref">2.5 Each time I want to insert or change a row or drop a database or a table, an error 404 (page not found) is displayed or, with HTTP or cookie authentication, I&#8217;m asked to log in again. What&#8217;s wrong?</span></a>, <a class="reference internal" href="faq.html#faq4-7"><span class="std std-ref">4.7 Authentication window is displayed more than once, why?</span></a>, <a class="reference internal" href="faq.html#faq5-16"><span class="std std-ref">5.16 With Internet Explorer, I get &#8220;Access is denied&#8221; Javascript errors. Or I cannot make phpMyAdmin work under Windows.</span></a></p>
</div>
</dd></dl>

<dl class="option">
<dt id="cfg_PmaNoRelation_DisableWarning">
<code class="descname">$cfg['PmaNoRelation_DisableWarning']</code><a class="headerlink" href="#cfg_PmaNoRelation_DisableWarning" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<p>Starting with version 2.3.0 phpMyAdmin offers a lot of features to
work with master / foreign – tables (see <span class="target" id="index-1"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a>).</p>
<p>If you tried to set this
up and it does not work for you, have a look on the <span class="guilabel">Structure</span> page
of one database where you would like to use it. You will find a link
that will analyze why those features have been disabled.</p>
<p>If you do not want to use those features set this variable to <code class="docutils literal"><span class="pre">true</span></code> to
stop this message from appearing.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_AuthLog">
<code class="descname">$cfg['AuthLog']</code><a class="headerlink" href="#cfg_AuthLog" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'auto'</span></code></td>
</tr>
</tbody>
</table>
<div class="versionadded">
<p><span class="versionmodified">New in version 4.8.0: </span>This is supported since phpMyAdmin 4.8.0.</p>
</div>
<p>Configure authentication logging destination. Failed (or all, depending on
<span class="target" id="index-2"></span><a class="reference internal" href="#cfg_AuthLogSuccess"><code class="xref config config-option docutils literal"><span class="pre">$cfg['AuthLogSuccess']</span></code></a>) authentication attempts will be
logged according to this directive:</p>
<dl class="docutils">
<dt><code class="docutils literal"><span class="pre">auto</span></code></dt>
<dd>Let phpMyAdmin automatically choose between <code class="docutils literal"><span class="pre">syslog</span></code> and <code class="docutils literal"><span class="pre">php</span></code>.</dd>
<dt><code class="docutils literal"><span class="pre">syslog</span></code></dt>
<dd>Log using syslog, using AUTH facility, on most systems this ends up
in <code class="file docutils literal"><span class="pre">/var/log/auth.log</span></code>.</dd>
<dt><code class="docutils literal"><span class="pre">php</span></code></dt>
<dd>Log into PHP error log.</dd>
<dt><code class="docutils literal"><span class="pre">sapi</span></code></dt>
<dd>Log into PHP SAPI logging.</dd>
<dt><code class="docutils literal"><span class="pre">/path/to/file</span></code></dt>
<dd>Any other value is treated as a filename and log entries are written there.</dd>
</dl>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">When logging to a file, make sure its permissions are correctly set
for a web server user, the setup should closely match instructions
described in <span class="target" id="index-3"></span><a class="reference internal" href="#cfg_TempDir"><code class="xref config config-option docutils literal"><span class="pre">$cfg['TempDir']</span></code></a>:</p>
</div>
</dd></dl>

<dl class="option">
<dt id="cfg_AuthLogSuccess">
<code class="descname">$cfg['AuthLogSuccess']</code><a class="headerlink" href="#cfg_AuthLogSuccess" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<div class="versionadded">
<p><span class="versionmodified">New in version 4.8.0: </span>This is supported since phpMyAdmin 4.8.0.</p>
</div>
<p>Whether to log successful authentication attempts into
<span class="target" id="index-4"></span><a class="reference internal" href="#cfg_AuthLog"><code class="xref config config-option docutils literal"><span class="pre">$cfg['AuthLog']</span></code></a>.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_SuhosinDisableWarning">
<code class="descname">$cfg['SuhosinDisableWarning']</code><a class="headerlink" href="#cfg_SuhosinDisableWarning" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<p>A warning is displayed on the main page if Suhosin is detected.</p>
<p>You can set this parameter to <code class="docutils literal"><span class="pre">true</span></code> to stop this message from appearing.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_LoginCookieValidityDisableWarning">
<code class="descname">$cfg['LoginCookieValidityDisableWarning']</code><a class="headerlink" href="#cfg_LoginCookieValidityDisableWarning" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<p>A warning is displayed on the main page if the PHP parameter
session.gc_maxlifetime is lower than cookie validity configured in phpMyAdmin.</p>
<p>You can set this parameter to <code class="docutils literal"><span class="pre">true</span></code> to stop this message from appearing.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_ServerLibraryDifference_DisableWarning">
<code class="descname">$cfg['ServerLibraryDifference_DisableWarning']</code><a class="headerlink" href="#cfg_ServerLibraryDifference_DisableWarning" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<div class="deprecated">
<p><span class="versionmodified">Deprecated since version 4.7.0: </span>This setting was removed as the warning has been removed as well.</p>
</div>
<p>A warning is displayed on the main page if there is a difference
between the MySQL library and server version.</p>
<p>You can set this parameter to <code class="docutils literal"><span class="pre">true</span></code> to stop this message from appearing.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_ReservedWordDisableWarning">
<code class="descname">$cfg['ReservedWordDisableWarning']</code><a class="headerlink" href="#cfg_ReservedWordDisableWarning" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<p>This warning is displayed on the Structure page of a table if one or more
column names match with words which are MySQL reserved.</p>
<p>If you want to turn off this warning, you can set it to <code class="docutils literal"><span class="pre">true</span></code> and
warning will no longer be displayed.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_TranslationWarningThreshold">
<code class="descname">$cfg['TranslationWarningThreshold']</code><a class="headerlink" href="#cfg_TranslationWarningThreshold" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">integer</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">80</td>
</tr>
</tbody>
</table>
<p>Show warning about incomplete translations on certain threshold.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_SendErrorReports">
<code class="descname">$cfg['SendErrorReports']</code><a class="headerlink" href="#cfg_SendErrorReports" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'ask'</span></code></td>
</tr>
</tbody>
</table>
<p>Sets the default behavior for JavaScript error reporting.</p>
<p>Whenever an error is detected in the JavaScript execution, an error report
may be sent to the phpMyAdmin team if the user agrees.</p>
<p>The default setting of <code class="docutils literal"><span class="pre">'ask'</span></code> will ask the user everytime there is a new
error report. However you can set this parameter to <code class="docutils literal"><span class="pre">'always'</span></code> to send error
reports without asking for confirmation or you can set it to <code class="docutils literal"><span class="pre">'never'</span></code> to
never send error reports.</p>
<p>This directive is available both in the configuration file and in users
preferences. If the person in charge of a multi-user installation prefers
to disable this feature for all users, a value of <code class="docutils literal"><span class="pre">'never'</span></code> should be
set, and the <span class="target" id="index-5"></span><a class="reference internal" href="#cfg_UserprefsDisallow"><code class="xref config config-option docutils literal"><span class="pre">$cfg['UserprefsDisallow']</span></code></a> directive should
contain <code class="docutils literal"><span class="pre">'SendErrorReports'</span></code> in one of its array values.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_ConsoleEnterExecutes">
<code class="descname">$cfg['ConsoleEnterExecutes']</code><a class="headerlink" href="#cfg_ConsoleEnterExecutes" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<p>Setting this to <code class="docutils literal"><span class="pre">true</span></code> allows the user to execute queries by pressing Enter
instead of Ctrl+Enter. A new line can be inserted by pressing Shift + Enter.</p>
<p>The behaviour of the console can be temporarily changed using console&#8217;s
settings interface.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_AllowThirdPartyFraming">
<code class="descname">$cfg['AllowThirdPartyFraming']</code><a class="headerlink" href="#cfg_AllowThirdPartyFraming" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<p>Setting this to <code class="docutils literal"><span class="pre">true</span></code> allows phpMyAdmin to be included inside a frame,
and is a potential security hole allowing cross-frame scripting attacks or
clickjacking.</p>
</dd></dl>

</div>
<div class="section" id="server-connection-settings">
<h2>Server connection settings<a class="headerlink" href="#server-connection-settings" title="Permalink to this headline"></a></h2>
<dl class="option">
<dt id="cfg_Servers">
<code class="descname">$cfg['Servers']</code><a class="headerlink" href="#cfg_Servers" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">array</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">one server array with settings listed below</td>
</tr>
</tbody>
</table>
<p>Since version 1.4.2, phpMyAdmin supports the administration of multiple
MySQL servers. Therefore, a <span class="target" id="index-6"></span><a class="reference internal" href="#cfg_Servers"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers']</span></code></a>-array has been
added which contains the login information for the different servers. The
first <span class="target" id="index-7"></span><a class="reference internal" href="#cfg_Servers_host"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['host']</span></code></a> contains the hostname of
the first server, the second <span class="target" id="index-8"></span><a class="reference internal" href="#cfg_Servers_host"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['host']</span></code></a>
the hostname of the second server, etc. In
<code class="file docutils literal"><span class="pre">libraries/config.default.php</span></code>, there is only one section for server
definition, however you can put as many as you need in
<code class="file docutils literal"><span class="pre">config.inc.php</span></code>, copy that block or needed parts (you don&#8217;t have to
define all settings, just those you need to change).</p>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">The <span class="target" id="index-9"></span><a class="reference internal" href="#cfg_Servers"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers']</span></code></a> array starts with
$cfg[&#8216;Servers&#8217;][1]. Do not use $cfg[&#8216;Servers&#8217;][0]. If you want more
than one server, just copy following section (including $i
incrementation) serveral times. There is no need to define full server
array, just define values you need to change.</p>
</div>
</dd></dl>

<dl class="option">
<dt id="cfg_Servers_host">
<code class="descname">$cfg['Servers'][$i]['host']</code><a class="headerlink" href="#cfg_Servers_host" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'localhost'</span></code></td>
</tr>
</tbody>
</table>
<p>The hostname or <a class="reference internal" href="glossary.html#term-ip"><span class="xref std std-term">IP</span></a> address of your $i-th MySQL-server. E.g.
<code class="docutils literal"><span class="pre">localhost</span></code>.</p>
<p>Possible values are:</p>
<ul class="simple">
<li>hostname, e.g., <code class="docutils literal"><span class="pre">'localhost'</span></code> or <code class="docutils literal"><span class="pre">'mydb.example.org'</span></code></li>
<li>IP address, e.g., <code class="docutils literal"><span class="pre">'127.0.0.1'</span></code> or <code class="docutils literal"><span class="pre">'192.168.10.1'</span></code></li>
<li>IPv6 address, e.g. <code class="docutils literal"><span class="pre">2001:cdba:0000:0000:0000:0000:3257:9652</span></code></li>
<li>dot - <code class="docutils literal"><span class="pre">'.'</span></code>, i.e., use named pipes on windows systems</li>
<li>empty - <code class="docutils literal"><span class="pre">''</span></code>, disables this server</li>
</ul>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">The hostname <code class="docutils literal"><span class="pre">localhost</span></code> is handled specially by MySQL and it uses
the socket based connection protocol. To use TCP/IP networking, use an
IP address or hostname such as <code class="docutils literal"><span class="pre">127.0.0.1</span></code> or <code class="docutils literal"><span class="pre">db.example.com</span></code>. You
can configure the path to the socket with
<span class="target" id="index-10"></span><a class="reference internal" href="#cfg_Servers_socket"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['socket']</span></code></a>.</p>
</div>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last"><span class="target" id="index-11"></span><a class="reference internal" href="#cfg_Servers_port"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['port']</span></code></a>,
&lt;<a class="reference external" href="https://dev.mysql.com/doc/refman/5.7/en/connecting.html">https://dev.mysql.com/doc/refman/5.7/en/connecting.html</a>&gt;</p>
</div>
</dd></dl>

<dl class="option">
<dt id="cfg_Servers_port">
<code class="descname">$cfg['Servers'][$i]['port']</code><a class="headerlink" href="#cfg_Servers_port" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>The port-number of your $i-th MySQL-server. Default is 3306 (leave
blank).</p>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">If you use <code class="docutils literal"><span class="pre">localhost</span></code> as the hostname, MySQL ignores this port number
and connects with the socket, so if you want to connect to a port
different from the default port, use <code class="docutils literal"><span class="pre">127.0.0.1</span></code> or the real hostname
in <span class="target" id="index-12"></span><a class="reference internal" href="#cfg_Servers_host"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['host']</span></code></a>.</p>
</div>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last"><span class="target" id="index-13"></span><a class="reference internal" href="#cfg_Servers_host"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['host']</span></code></a>,
&lt;<a class="reference external" href="https://dev.mysql.com/doc/refman/5.7/en/connecting.html">https://dev.mysql.com/doc/refman/5.7/en/connecting.html</a>&gt;</p>
</div>
</dd></dl>

<dl class="option">
<dt id="cfg_Servers_socket">
<code class="descname">$cfg['Servers'][$i]['socket']</code><a class="headerlink" href="#cfg_Servers_socket" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>The path to the socket to use. Leave blank for default. To determine
the correct socket, check your MySQL configuration or, using the
<strong class="command">mysql</strong> command–line client, issue the <code class="docutils literal"><span class="pre">status</span></code> command. Among the
resulting information displayed will be the socket used.</p>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">This takes effect only if <span class="target" id="index-14"></span><a class="reference internal" href="#cfg_Servers_host"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['host']</span></code></a> is set
to <code class="docutils literal"><span class="pre">localhost</span></code>.</p>
</div>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last"><span class="target" id="index-15"></span><a class="reference internal" href="#cfg_Servers_host"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['host']</span></code></a>,
&lt;<a class="reference external" href="https://dev.mysql.com/doc/refman/5.7/en/connecting.html">https://dev.mysql.com/doc/refman/5.7/en/connecting.html</a>&gt;</p>
</div>
</dd></dl>

<dl class="option">
<dt id="cfg_Servers_ssl">
<code class="descname">$cfg['Servers'][$i]['ssl']</code><a class="headerlink" href="#cfg_Servers_ssl" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<p>Whether to enable SSL for the connection between phpMyAdmin and the MySQL
server to secure the connection.</p>
<p>When using the <code class="docutils literal"><span class="pre">'mysql'</span></code> extension,
none of the remaining <code class="docutils literal"><span class="pre">'ssl...'</span></code> configuration options apply.</p>
<p>We strongly recommend the <code class="docutils literal"><span class="pre">'mysqli'</span></code> extension when using this option.</p>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last"><a class="reference internal" href="setup.html#ssl"><span class="std std-ref">Using SSL for connection to database server</span></a>,
<a class="reference internal" href="#example-google-ssl"><span class="std std-ref">Google Cloud SQL with SSL</span></a>,
<span class="target" id="index-16"></span><a class="reference internal" href="#cfg_Servers_ssl_key"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_key']</span></code></a>,
<span class="target" id="index-17"></span><a class="reference internal" href="#cfg_Servers_ssl_cert"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_cert']</span></code></a>,
<span class="target" id="index-18"></span><a class="reference internal" href="#cfg_Servers_ssl_ca"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_ca']</span></code></a>,
<span class="target" id="index-19"></span><a class="reference internal" href="#cfg_Servers_ssl_ca_path"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_ca_path']</span></code></a>,
<span class="target" id="index-20"></span><a class="reference internal" href="#cfg_Servers_ssl_ciphers"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_ciphers']</span></code></a>,
<span class="target" id="index-21"></span><a class="reference internal" href="#cfg_Servers_ssl_verify"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_verify']</span></code></a></p>
</div>
</dd></dl>

<dl class="option">
<dt id="cfg_Servers_ssl_key">
<code class="descname">$cfg['Servers'][$i]['ssl_key']</code><a class="headerlink" href="#cfg_Servers_ssl_key" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">NULL</td>
</tr>
</tbody>
</table>
<p>Path to the client key file when using SSL for connecting to the MySQL
server. This is used to authenticate the client to the server.</p>
<p>For example:</p>
<div class="highlight-php"><div class="highlight"><pre><span></span><span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;Servers&#39;</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">&#39;ssl_key&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="s1">&#39;/etc/mysql/server-key.pem&#39;</span><span class="p">;</span>
</pre></div>
</div>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last"><a class="reference internal" href="setup.html#ssl"><span class="std std-ref">Using SSL for connection to database server</span></a>,
<a class="reference internal" href="#example-google-ssl"><span class="std std-ref">Google Cloud SQL with SSL</span></a>,
<span class="target" id="index-22"></span><a class="reference internal" href="#cfg_Servers_ssl"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl']</span></code></a>,
<span class="target" id="index-23"></span><a class="reference internal" href="#cfg_Servers_ssl_cert"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_cert']</span></code></a>,
<span class="target" id="index-24"></span><a class="reference internal" href="#cfg_Servers_ssl_ca"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_ca']</span></code></a>,
<span class="target" id="index-25"></span><a class="reference internal" href="#cfg_Servers_ssl_ca_path"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_ca_path']</span></code></a>,
<span class="target" id="index-26"></span><a class="reference internal" href="#cfg_Servers_ssl_ciphers"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_ciphers']</span></code></a>,
<span class="target" id="index-27"></span><a class="reference internal" href="#cfg_Servers_ssl_verify"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_verify']</span></code></a></p>
</div>
</dd></dl>

<dl class="option">
<dt id="cfg_Servers_ssl_cert">
<code class="descname">$cfg['Servers'][$i]['ssl_cert']</code><a class="headerlink" href="#cfg_Servers_ssl_cert" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">NULL</td>
</tr>
</tbody>
</table>
<p>Path to the client certificate file when using SSL for connecting to the
MySQL server. This is used to authenticate the client to the server.</p>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last"><a class="reference internal" href="setup.html#ssl"><span class="std std-ref">Using SSL for connection to database server</span></a>,
<a class="reference internal" href="#example-google-ssl"><span class="std std-ref">Google Cloud SQL with SSL</span></a>,
<span class="target" id="index-28"></span><a class="reference internal" href="#cfg_Servers_ssl"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl']</span></code></a>,
<span class="target" id="index-29"></span><a class="reference internal" href="#cfg_Servers_ssl_key"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_key']</span></code></a>,
<span class="target" id="index-30"></span><a class="reference internal" href="#cfg_Servers_ssl_ca"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_ca']</span></code></a>,
<span class="target" id="index-31"></span><a class="reference internal" href="#cfg_Servers_ssl_ca_path"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_ca_path']</span></code></a>,
<span class="target" id="index-32"></span><a class="reference internal" href="#cfg_Servers_ssl_ciphers"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_ciphers']</span></code></a>,
<span class="target" id="index-33"></span><a class="reference internal" href="#cfg_Servers_ssl_verify"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_verify']</span></code></a></p>
</div>
</dd></dl>

<dl class="option">
<dt id="cfg_Servers_ssl_ca">
<code class="descname">$cfg['Servers'][$i]['ssl_ca']</code><a class="headerlink" href="#cfg_Servers_ssl_ca" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">NULL</td>
</tr>
</tbody>
</table>
<p>Path to the CA file when using SSL for connecting to the MySQL server.</p>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last"><a class="reference internal" href="setup.html#ssl"><span class="std std-ref">Using SSL for connection to database server</span></a>,
<a class="reference internal" href="#example-google-ssl"><span class="std std-ref">Google Cloud SQL with SSL</span></a>,
<span class="target" id="index-34"></span><a class="reference internal" href="#cfg_Servers_ssl"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl']</span></code></a>,
<span class="target" id="index-35"></span><a class="reference internal" href="#cfg_Servers_ssl_key"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_key']</span></code></a>,
<span class="target" id="index-36"></span><a class="reference internal" href="#cfg_Servers_ssl_cert"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_cert']</span></code></a>,
<span class="target" id="index-37"></span><a class="reference internal" href="#cfg_Servers_ssl_ca_path"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_ca_path']</span></code></a>,
<span class="target" id="index-38"></span><a class="reference internal" href="#cfg_Servers_ssl_ciphers"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_ciphers']</span></code></a>,
<span class="target" id="index-39"></span><a class="reference internal" href="#cfg_Servers_ssl_verify"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_verify']</span></code></a></p>
</div>
</dd></dl>

<dl class="option">
<dt id="cfg_Servers_ssl_ca_path">
<code class="descname">$cfg['Servers'][$i]['ssl_ca_path']</code><a class="headerlink" href="#cfg_Servers_ssl_ca_path" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">NULL</td>
</tr>
</tbody>
</table>
<p>Directory containing trusted SSL CA certificates in PEM format.</p>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last"><a class="reference internal" href="setup.html#ssl"><span class="std std-ref">Using SSL for connection to database server</span></a>,
<a class="reference internal" href="#example-google-ssl"><span class="std std-ref">Google Cloud SQL with SSL</span></a>,
<span class="target" id="index-40"></span><a class="reference internal" href="#cfg_Servers_ssl"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl']</span></code></a>,
<span class="target" id="index-41"></span><a class="reference internal" href="#cfg_Servers_ssl_key"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_key']</span></code></a>,
<span class="target" id="index-42"></span><a class="reference internal" href="#cfg_Servers_ssl_cert"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_cert']</span></code></a>,
<span class="target" id="index-43"></span><a class="reference internal" href="#cfg_Servers_ssl_ca"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_ca']</span></code></a>,
<span class="target" id="index-44"></span><a class="reference internal" href="#cfg_Servers_ssl_ciphers"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_ciphers']</span></code></a>,
<span class="target" id="index-45"></span><a class="reference internal" href="#cfg_Servers_ssl_verify"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_verify']</span></code></a></p>
</div>
</dd></dl>

<dl class="option">
<dt id="cfg_Servers_ssl_ciphers">
<code class="descname">$cfg['Servers'][$i]['ssl_ciphers']</code><a class="headerlink" href="#cfg_Servers_ssl_ciphers" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">NULL</td>
</tr>
</tbody>
</table>
<p>List of allowable ciphers for SSL connections to the MySQL server.</p>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last"><a class="reference internal" href="setup.html#ssl"><span class="std std-ref">Using SSL for connection to database server</span></a>,
<a class="reference internal" href="#example-google-ssl"><span class="std std-ref">Google Cloud SQL with SSL</span></a>,
<span class="target" id="index-46"></span><a class="reference internal" href="#cfg_Servers_ssl"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl']</span></code></a>,
<span class="target" id="index-47"></span><a class="reference internal" href="#cfg_Servers_ssl_key"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_key']</span></code></a>,
<span class="target" id="index-48"></span><a class="reference internal" href="#cfg_Servers_ssl_cert"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_cert']</span></code></a>,
<span class="target" id="index-49"></span><a class="reference internal" href="#cfg_Servers_ssl_ca"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_ca']</span></code></a>,
<span class="target" id="index-50"></span><a class="reference internal" href="#cfg_Servers_ssl_ca_path"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_ca_path']</span></code></a>,
<span class="target" id="index-51"></span><a class="reference internal" href="#cfg_Servers_ssl_verify"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_verify']</span></code></a></p>
</div>
</dd></dl>

<dl class="option">
<dt id="cfg_Servers_ssl_verify">
<code class="descname">$cfg['Servers'][$i]['ssl_verify']</code><a class="headerlink" href="#cfg_Servers_ssl_verify" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<div class="versionadded">
<p><span class="versionmodified">New in version 4.6.0: </span>This is supported since phpMyAdmin 4.6.0.</p>
</div>
<p>If your PHP install uses the MySQL Native Driver (mysqlnd), your
MySQL server is 5.6 or later, and your SSL certificate is self-signed,
there is a chance your SSL connection will fail due to validation.
Setting this to <code class="docutils literal"><span class="pre">false</span></code> will disable the validation check.</p>
<p>Since PHP 5.6.0 it also verifies whether server name matches CN of its
certificate. There is currently no way to disable just this check without
disabling complete SSL verification.</p>
<div class="admonition warning">
<p class="first admonition-title">Warning</p>
<p class="last">Disabling the certificate verification defeats purpose of using SSL.
This will make the connection vulnerable to man in the middle attacks.</p>
</div>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">This flag only works with PHP 5.6.16 or later.</p>
</div>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last"><a class="reference internal" href="setup.html#ssl"><span class="std std-ref">Using SSL for connection to database server</span></a>,
<a class="reference internal" href="#example-google-ssl"><span class="std std-ref">Google Cloud SQL with SSL</span></a>,
<span class="target" id="index-52"></span><a class="reference internal" href="#cfg_Servers_ssl"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl']</span></code></a>,
<span class="target" id="index-53"></span><a class="reference internal" href="#cfg_Servers_ssl_key"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_key']</span></code></a>,
<span class="target" id="index-54"></span><a class="reference internal" href="#cfg_Servers_ssl_cert"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_cert']</span></code></a>,
<span class="target" id="index-55"></span><a class="reference internal" href="#cfg_Servers_ssl_ca"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_ca']</span></code></a>,
<span class="target" id="index-56"></span><a class="reference internal" href="#cfg_Servers_ssl_ca_path"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_ca_path']</span></code></a>,
<span class="target" id="index-57"></span><a class="reference internal" href="#cfg_Servers_ssl_ciphers"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_ciphers']</span></code></a>,
<span class="target" id="index-58"></span><a class="reference internal" href="#cfg_Servers_ssl_verify"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_verify']</span></code></a></p>
</div>
</dd></dl>

<dl class="option">
<dt id="cfg_Servers_connect_type">
<code class="descname">$cfg['Servers'][$i]['connect_type']</code><a class="headerlink" href="#cfg_Servers_connect_type" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'tcp'</span></code></td>
</tr>
</tbody>
</table>
<div class="deprecated">
<p><span class="versionmodified">Deprecated since version 4.7.0: </span>This setting is no longer used as of 4.7.0, since MySQL decides the
connection type based on host, so it could lead to unexpected results.
Please set <span class="target" id="index-59"></span><a class="reference internal" href="#cfg_Servers_host"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['host']</span></code></a> accordingly
instead.</p>
</div>
<p>What type connection to use with the MySQL server. Your options are
<code class="docutils literal"><span class="pre">'socket'</span></code> and <code class="docutils literal"><span class="pre">'tcp'</span></code>. It defaults to tcp as that is nearly guaranteed
to be available on all MySQL servers, while sockets are not supported on
some platforms. To use the socket mode, your MySQL server must be on the
same machine as the Web server.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_Servers_compress">
<code class="descname">$cfg['Servers'][$i]['compress']</code><a class="headerlink" href="#cfg_Servers_compress" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<p>Whether to use a compressed protocol for the MySQL server connection
or not (experimental).</p>
</dd></dl>

<span class="target" id="controlhost"></span><dl class="option">
<dt id="cfg_Servers_controlhost">
<code class="descname">$cfg['Servers'][$i]['controlhost']</code><a class="headerlink" href="#cfg_Servers_controlhost" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>Permits to use an alternate host to hold the configuration storage
data.</p>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last"><span class="target" id="index-60"></span><a class="reference internal" href="#cfg_Servers_control_*"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['control_*']</span></code></a></p>
</div>
</dd></dl>

<span class="target" id="controlport"></span><dl class="option">
<dt id="cfg_Servers_controlport">
<code class="descname">$cfg['Servers'][$i]['controlport']</code><a class="headerlink" href="#cfg_Servers_controlport" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>Permits to use an alternate port to connect to the host that
holds the configuration storage.</p>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last"><span class="target" id="index-61"></span><a class="reference internal" href="#cfg_Servers_control_*"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['control_*']</span></code></a></p>
</div>
</dd></dl>

<span class="target" id="controluser"></span><dl class="option">
<dt id="cfg_Servers_controluser">
<code class="descname">$cfg['Servers'][$i]['controluser']</code><a class="headerlink" href="#cfg_Servers_controluser" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
</dd></dl>

<dl class="option">
<dt id="cfg_Servers_controlpass">
<code class="descname">$cfg['Servers'][$i]['controlpass']</code><a class="headerlink" href="#cfg_Servers_controlpass" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>This special account is used to access <a class="reference internal" href="setup.html#linked-tables"><span class="std std-ref">phpMyAdmin configuration storage</span></a>.
You don&#8217;t need it in single user case, but if phpMyAdmin is shared it
is recommended to give access to <a class="reference internal" href="setup.html#linked-tables"><span class="std std-ref">phpMyAdmin configuration storage</span></a> only to this user
and configure phpMyAdmin to use it. All users will then be able to use
the features without need to have direct access to <a class="reference internal" href="setup.html#linked-tables"><span class="std std-ref">phpMyAdmin configuration storage</span></a>.</p>
<div class="versionchanged">
<p><span class="versionmodified">Changed in version 2.2.5: </span>those were called <code class="docutils literal"><span class="pre">stduser</span></code> and <code class="docutils literal"><span class="pre">stdpass</span></code></p>
</div>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last"><a class="reference internal" href="setup.html#setup"><span class="std std-ref">Installation</span></a>,
<a class="reference internal" href="setup.html#authentication-modes"><span class="std std-ref">Using authentication modes</span></a>,
<a class="reference internal" href="setup.html#linked-tables"><span class="std std-ref">phpMyAdmin configuration storage</span></a>,
<span class="target" id="index-62"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a>,
<span class="target" id="index-63"></span><a class="reference internal" href="#cfg_Servers_controlhost"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['controlhost']</span></code></a>,
<span class="target" id="index-64"></span><a class="reference internal" href="#cfg_Servers_controlport"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['controlport']</span></code></a>,
<span class="target" id="index-65"></span><a class="reference internal" href="#cfg_Servers_control_*"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['control_*']</span></code></a></p>
</div>
</dd></dl>

<dl class="option">
<dt id="cfg_Servers_control_*">
<code class="descname">$cfg['Servers'][$i]['control_*']</code><a class="headerlink" href="#cfg_Servers_control_*" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">mixed</td>
</tr>
</tbody>
</table>
<div class="versionadded">
<p><span class="versionmodified">New in version 4.7.0.</span></p>
</div>
<p>You can change any MySQL connection setting for control link (used to
access <a class="reference internal" href="setup.html#linked-tables"><span class="std std-ref">phpMyAdmin configuration storage</span></a>) using configuration prefixed with <code class="docutils literal"><span class="pre">control_</span></code>.</p>
<p>This can be used to change any aspect of the control connection, which by
default uses same parameters as the user one.</p>
<p>For example you can configure SSL for the control connection:</p>
<div class="highlight-php"><div class="highlight"><pre><span></span><span class="c1">// Enable SSL</span>
<span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;Servers&#39;</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">&#39;control_ssl&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="k">true</span><span class="p">;</span>
<span class="c1">// Client secret key</span>
<span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;Servers&#39;</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">&#39;control_ssl_key&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="s1">&#39;../client-key.pem&#39;</span><span class="p">;</span>
<span class="c1">// Client certificate</span>
<span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;Servers&#39;</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">&#39;control_ssl_cert&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="s1">&#39;../client-cert.pem&#39;</span><span class="p">;</span>
<span class="c1">// Server certification authority</span>
<span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;Servers&#39;</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">&#39;control_ssl_ca&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="s1">&#39;../server-ca.pem&#39;</span><span class="p">;</span>
</pre></div>
</div>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last"><span class="target" id="index-66"></span><a class="reference internal" href="#cfg_Servers_ssl"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl']</span></code></a>,
<span class="target" id="index-67"></span><a class="reference internal" href="#cfg_Servers_ssl_key"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_key']</span></code></a>,
<span class="target" id="index-68"></span><a class="reference internal" href="#cfg_Servers_ssl_cert"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_cert']</span></code></a>,
<span class="target" id="index-69"></span><a class="reference internal" href="#cfg_Servers_ssl_ca"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_ca']</span></code></a>,
<span class="target" id="index-70"></span><a class="reference internal" href="#cfg_Servers_ssl_ca_path"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_ca_path']</span></code></a>,
<span class="target" id="index-71"></span><a class="reference internal" href="#cfg_Servers_ssl_ciphers"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_ciphers']</span></code></a>,
<span class="target" id="index-72"></span><a class="reference internal" href="#cfg_Servers_ssl_verify"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_verify']</span></code></a></p>
</div>
</dd></dl>

<dl class="option">
<dt id="cfg_Servers_auth_type">
<code class="descname">$cfg['Servers'][$i]['auth_type']</code><a class="headerlink" href="#cfg_Servers_auth_type" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'cookie'</span></code></td>
</tr>
</tbody>
</table>
<p>Whether config or cookie or <a class="reference internal" href="glossary.html#term-http"><span class="xref std std-term">HTTP</span></a> or signon authentication should be
used for this server.</p>
<ul class="simple">
<li>&#8216;config&#8217; authentication (<code class="docutils literal"><span class="pre">$auth_type</span> <span class="pre">=</span> <span class="pre">'config'</span></code>) is the plain old
way: username and password are stored in <code class="file docutils literal"><span class="pre">config.inc.php</span></code>.</li>
<li>&#8216;cookie&#8217; authentication mode (<code class="docutils literal"><span class="pre">$auth_type</span> <span class="pre">=</span> <span class="pre">'cookie'</span></code>) allows you to
log in as any valid MySQL user with the help of cookies.</li>
<li>&#8216;http&#8217; authentication allows you to log in as any
valid MySQL user via HTTP-Auth.</li>
<li>&#8216;signon&#8217; authentication mode (<code class="docutils literal"><span class="pre">$auth_type</span> <span class="pre">=</span> <span class="pre">'signon'</span></code>) allows you to
log in from prepared PHP session data or using supplied PHP script.</li>
</ul>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last"><a class="reference internal" href="setup.html#authentication-modes"><span class="std std-ref">Using authentication modes</span></a></p>
</div>
</dd></dl>

<span class="target" id="servers-auth-http-realm"></span><dl class="option">
<dt id="cfg_Servers_auth_http_realm">
<code class="descname">$cfg['Servers'][$i]['auth_http_realm']</code><a class="headerlink" href="#cfg_Servers_auth_http_realm" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>When using auth_type = <code class="docutils literal"><span class="pre">http</span></code>, this field allows to define a custom
<a class="reference internal" href="glossary.html#term-http"><span class="xref std std-term">HTTP</span></a> Basic Auth Realm which will be displayed to the user. If not
explicitly specified in your configuration, a string combined of
&#8220;phpMyAdmin &#8221; and either <span class="target" id="index-73"></span><a class="reference internal" href="#cfg_Servers_verbose"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['verbose']</span></code></a> or
<span class="target" id="index-74"></span><a class="reference internal" href="#cfg_Servers_host"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['host']</span></code></a> will be used.</p>
</dd></dl>

<span class="target" id="servers-user"></span><dl class="option">
<dt id="cfg_Servers_user">
<code class="descname">$cfg['Servers'][$i]['user']</code><a class="headerlink" href="#cfg_Servers_user" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'root'</span></code></td>
</tr>
</tbody>
</table>
</dd></dl>

<dl class="option">
<dt id="cfg_Servers_password">
<code class="descname">$cfg['Servers'][$i]['password']</code><a class="headerlink" href="#cfg_Servers_password" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>When using <span class="target" id="index-75"></span><a class="reference internal" href="#cfg_Servers_auth_type"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['auth_type']</span></code></a> set to
&#8216;config&#8217;, this is the user/password-pair which phpMyAdmin will use to
connect to the MySQL server. This user/password pair is not needed when
<a class="reference internal" href="glossary.html#term-http"><span class="xref std std-term">HTTP</span></a> or cookie authentication is used
and should be empty.</p>
</dd></dl>

<span class="target" id="servers-nopassword"></span><dl class="option">
<dt id="cfg_Servers_nopassword">
<code class="descname">$cfg['Servers'][$i]['nopassword']</code><a class="headerlink" href="#cfg_Servers_nopassword" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<div class="deprecated">
<p><span class="versionmodified">Deprecated since version 4.7.0: </span>This setting was removed as it can produce unexpected results.</p>
</div>
<p>Allow attempt to log in without password when a login with password
fails. This can be used together with http authentication, when
authentication is done some other way and phpMyAdmin gets user name
from auth and uses empty password for connecting to MySQL. Password
login is still tried first, but as fallback, no password method is
tried.</p>
</dd></dl>

<span class="target" id="servers-only-db"></span><dl class="option">
<dt id="cfg_Servers_only_db">
<code class="descname">$cfg['Servers'][$i]['only_db']</code><a class="headerlink" href="#cfg_Servers_only_db" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string or array</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>If set to a (an array of) database name(s), only this (these)
database(s) will be shown to the user. Since phpMyAdmin 2.2.1,
this/these database(s) name(s) may contain MySQL wildcards characters
(&#8220;_&#8221; and &#8220;%&#8221;): if you want to use literal instances of these
characters, escape them (I.E. use <code class="docutils literal"><span class="pre">'my\_db'</span></code> and not <code class="docutils literal"><span class="pre">'my_db'</span></code>).</p>
<p>This setting is an efficient way to lower the server load since the
latter does not need to send MySQL requests to build the available
database list. But <strong>it does not replace the privileges rules of the
MySQL database server</strong>. If set, it just means only these databases
will be displayed but <strong>not that all other databases can&#8217;t be used.</strong></p>
<p>An example of using more that one database:</p>
<div class="highlight-php"><div class="highlight"><pre><span></span><span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;Servers&#39;</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">&#39;only_db&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="k">array</span><span class="p">(</span><span class="s1">&#39;db1&#39;</span><span class="p">,</span> <span class="s1">&#39;db2&#39;</span><span class="p">);</span>
</pre></div>
</div>
<div class="versionchanged">
<p><span class="versionmodified">Changed in version 4.0.0: </span>Previous versions permitted to specify the display order of
the database names via this directive.</p>
</div>
</dd></dl>

<dl class="option">
<dt id="cfg_Servers_hide_db">
<code class="descname">$cfg['Servers'][$i]['hide_db']</code><a class="headerlink" href="#cfg_Servers_hide_db" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>Regular expression for hiding some databases from unprivileged users.
This only hides them from listing, but a user is still able to access
them (using, for example, the SQL query area). To limit access, use
the MySQL privilege system.  For example, to hide all databases
starting with the letter &#8220;a&#8221;, use</p>
<div class="highlight-php"><div class="highlight"><pre><span></span><span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;Servers&#39;</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">&#39;hide_db&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="s1">&#39;^a&#39;</span><span class="p">;</span>
</pre></div>
</div>
<p>and to hide both &#8220;db1&#8221; and &#8220;db2&#8221; use</p>
<div class="highlight-php"><div class="highlight"><pre><span></span><span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;Servers&#39;</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">&#39;hide_db&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="s1">&#39;^(db1|db2)$&#39;</span><span class="p">;</span>
</pre></div>
</div>
<p>More information on regular expressions can be found in the <a class="reference external" href="https://secure.php.net/manual/en/reference.pcre.pattern.syntax.php">PCRE
pattern syntax</a> portion
of the PHP reference manual.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_Servers_verbose">
<code class="descname">$cfg['Servers'][$i]['verbose']</code><a class="headerlink" href="#cfg_Servers_verbose" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>Only useful when using phpMyAdmin with multiple server entries. If
set, this string will be displayed instead of the hostname in the
pull-down menu on the main page. This can be useful if you want to
show only certain databases on your system, for example. For HTTP
auth, all non-US-ASCII characters will be stripped.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_Servers_extension">
<code class="descname">$cfg['Servers'][$i]['extension']</code><a class="headerlink" href="#cfg_Servers_extension" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'mysqli'</span></code></td>
</tr>
</tbody>
</table>
<p>The PHP MySQL extension to use (<code class="docutils literal"><span class="pre">mysql</span></code> or <code class="docutils literal"><span class="pre">mysqli</span></code>).</p>
<p>It is recommended to use <code class="docutils literal"><span class="pre">mysqli</span></code> in all installations.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_Servers_pmadb">
<code class="descname">$cfg['Servers'][$i]['pmadb']</code><a class="headerlink" href="#cfg_Servers_pmadb" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>The name of the database containing the phpMyAdmin configuration
storage.</p>
<p>See the <a class="reference internal" href="setup.html#linked-tables"><span class="std std-ref">phpMyAdmin configuration storage</span></a>  section in this document to see the benefits of
this feature, and for a quick way of creating this database and the needed
tables.</p>
<p>If you are the only user of this phpMyAdmin installation, you can use your
current database to store those special tables; in this case, just put your
current database name in <span class="target" id="index-76"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a>. For a
multi-user installation, set this parameter to the name of your central
database containing the phpMyAdmin configuration storage.</p>
</dd></dl>

<span class="target" id="bookmark"></span><dl class="option">
<dt id="cfg_Servers_bookmarktable">
<code class="descname">$cfg['Servers'][$i]['bookmarktable']</code><a class="headerlink" href="#cfg_Servers_bookmarktable" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string or false</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>Since release 2.2.0 phpMyAdmin allows users to bookmark queries. This
can be useful for queries you often run. To allow the usage of this
functionality:</p>
<ul class="simple">
<li>set up <span class="target" id="index-77"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</li>
<li>enter the table name in <span class="target" id="index-78"></span><a class="reference internal" href="#cfg_Servers_bookmarktable"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['bookmarktable']</span></code></a></li>
</ul>
<p>This feature can be disabled by setting the configuration to <code class="docutils literal"><span class="pre">false</span></code>.</p>
</dd></dl>

<span class="target" id="relation"></span><dl class="option">
<dt id="cfg_Servers_relation">
<code class="descname">$cfg['Servers'][$i]['relation']</code><a class="headerlink" href="#cfg_Servers_relation" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string or false</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>Since release 2.2.4 you can describe, in a special &#8216;relation&#8217; table,
which column is a key in another table (a foreign key). phpMyAdmin
currently uses this to:</p>
<ul class="simple">
<li>make clickable, when you browse the master table, the data values that
point to the foreign table;</li>
<li>display in an optional tool-tip the &#8220;display column&#8221; when browsing the
master table, if you move the mouse to a column containing a foreign
key (use also the &#8216;table_info&#8217; table); (see <a class="reference internal" href="faq.html#faqdisplay"><span class="std std-ref">6.7 How can I use the &#8220;display column&#8221; feature?</span></a>)</li>
<li>in edit/insert mode, display a drop-down list of possible foreign keys
(key value and &#8220;display column&#8221; are shown) (see <a class="reference internal" href="faq.html#faq6-21"><span class="std std-ref">6.21 In edit/insert mode, how can I see a list of possible values for a column, based on some foreign table?</span></a>)</li>
<li>display links on the table properties page, to check referential
integrity (display missing foreign keys) for each described key;</li>
<li>in query-by-example, create automatic joins (see <a class="reference internal" href="faq.html#faq6-6"><span class="std std-ref">6.6 How can I use the relation table in Query-by-example?</span></a>)</li>
<li>enable you to get a <a class="reference internal" href="glossary.html#term-pdf"><span class="xref std std-term">PDF</span></a> schema of
your database (also uses the table_coords table).</li>
</ul>
<p>The keys can be numeric or character.</p>
<p>To allow the usage of this functionality:</p>
<ul class="simple">
<li>set up <span class="target" id="index-79"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</li>
<li>put the relation table name in <span class="target" id="index-80"></span><a class="reference internal" href="#cfg_Servers_relation"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['relation']</span></code></a></li>
<li>now as normal user open phpMyAdmin and for each one of your tables
where you want to use this feature, click <span class="guilabel">Structure/Relation view/</span>
and choose foreign columns.</li>
</ul>
<p>This feature can be disabled by setting the configuration to <code class="docutils literal"><span class="pre">false</span></code>.</p>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">In the current version, <code class="docutils literal"><span class="pre">master_db</span></code> must be the same as <code class="docutils literal"><span class="pre">foreign_db</span></code>.
Those columns have been put in future development of the cross-db
relations.</p>
</div>
</dd></dl>

<span class="target" id="table-info"></span><dl class="option">
<dt id="cfg_Servers_table_info">
<code class="descname">$cfg['Servers'][$i]['table_info']</code><a class="headerlink" href="#cfg_Servers_table_info" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string or false</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>Since release 2.3.0 you can describe, in a special &#8216;table_info&#8217;
table, which column is to be displayed as a tool-tip when moving the
cursor over the corresponding key. This configuration variable will
hold the name of this special table. To allow the usage of this
functionality:</p>
<ul class="simple">
<li>set up <span class="target" id="index-81"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</li>
<li>put the table name in <span class="target" id="index-82"></span><a class="reference internal" href="#cfg_Servers_table_info"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['table_info']</span></code></a> (e.g.
<code class="docutils literal"><span class="pre">pma__table_info</span></code>)</li>
<li>then for each table where you want to use this feature, click
&#8220;Structure/Relation view/Choose column to display&#8221; to choose the
column.</li>
</ul>
<p>This feature can be disabled by setting the configuration to <code class="docutils literal"><span class="pre">false</span></code>.</p>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last"><a class="reference internal" href="faq.html#faqdisplay"><span class="std std-ref">6.7 How can I use the &#8220;display column&#8221; feature?</span></a></p>
</div>
</dd></dl>

<span class="target" id="table-coords"></span><dl class="option">
<dt id="cfg_Servers_table_coords">
<code class="descname">$cfg['Servers'][$i]['table_coords']</code><a class="headerlink" href="#cfg_Servers_table_coords" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string or false</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>The designer feature can save your page layout; by pressing the &#8220;Save page&#8221; or &#8220;Save page as&#8221;
button in the expanding designer menu, you can customize the layout and have it loaded the next
time you use the designer. That layout is stored in this table. Furthermore, this table is also
required for using the PDF relation export feature, see
<span class="target" id="index-83"></span><a class="reference internal" href="#cfg_Servers_pdf_pages"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['pdf_pages']</span></code></a> for additional details.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_Servers_pdf_pages">
<code class="descname">$cfg['Servers'][$i]['pdf_pages']</code><a class="headerlink" href="#cfg_Servers_pdf_pages" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string or false</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>Since release 2.3.0 you can have phpMyAdmin create <a class="reference internal" href="glossary.html#term-pdf"><span class="xref std std-term">PDF</span></a> pages
showing the relations between your tables. Further, the designer interface
permits visually managing the relations. To do this it needs two tables
&#8220;pdf_pages&#8221; (storing information about the available <a class="reference internal" href="glossary.html#term-pdf"><span class="xref std std-term">PDF</span></a> pages)
and &#8220;table_coords&#8221; (storing coordinates where each table will be placed on
a <a class="reference internal" href="glossary.html#term-pdf"><span class="xref std std-term">PDF</span></a> schema output).  You must be using the &#8220;relation&#8221; feature.</p>
<p>To allow the usage of this functionality:</p>
<ul class="simple">
<li>set up <span class="target" id="index-84"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</li>
<li>put the correct table names in
<span class="target" id="index-85"></span><a class="reference internal" href="#cfg_Servers_table_coords"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['table_coords']</span></code></a> and
<span class="target" id="index-86"></span><a class="reference internal" href="#cfg_Servers_pdf_pages"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['pdf_pages']</span></code></a></li>
</ul>
<p>This feature can be disabled by setting either of the configurations to <code class="docutils literal"><span class="pre">false</span></code>.</p>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last"><a class="reference internal" href="faq.html#faqpdf"><span class="std std-ref">6.8 How can I produce a PDF schema of my database?</span></a>.</p>
</div>
</dd></dl>

<span class="target" id="col-com"></span><dl class="option">
<dt id="cfg_Servers_column_info">
<code class="descname">$cfg['Servers'][$i]['column_info']</code><a class="headerlink" href="#cfg_Servers_column_info" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string or false</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>This part requires a content update!  Since release 2.3.0 you can
store comments to describe each column for each table. These will then
be shown on the &#8220;printview&#8221;.</p>
<p>Starting with release 2.5.0, comments are consequently used on the table
property pages and table browse view, showing up as tool-tips above the
column name (properties page) or embedded within the header of table in
browse view. They can also be shown in a table dump. Please see the
relevant configuration directives later on.</p>
<p>Also new in release 2.5.0 is a MIME- transformation system which is also
based on the following table structure. See <a class="reference internal" href="transformations.html#transformations"><span class="std std-ref">Transformations</span></a> for
further information. To use the MIME- transformation system, your
column_info table has to have the three new columns &#8216;mimetype&#8217;,
&#8216;transformation&#8217;, &#8216;transformation_options&#8217;.</p>
<p>Starting with release 4.3.0, a new input-oriented transformation system
has been introduced. Also, backward compatibility code used in the old
transformations system was removed. As a result, an update to column_info
table is necessary for previous transformations and the new input-oriented
transformation system to work. phpMyAdmin will upgrade it automatically
for you by analyzing your current column_info table structure.
However, if something goes wrong with the auto-upgrade then you can
use the SQL script found in <code class="docutils literal"><span class="pre">./sql/upgrade_column_info_4_3_0+.sql</span></code>
to upgrade it manually.</p>
<p>To allow the usage of this functionality:</p>
<ul>
<li><p class="first">set up <span class="target" id="index-87"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</p>
</li>
<li><p class="first">put the table name in <span class="target" id="index-88"></span><a class="reference internal" href="#cfg_Servers_column_info"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['column_info']</span></code></a> (e.g.
<code class="docutils literal"><span class="pre">pma__column_info</span></code>)</p>
</li>
<li><p class="first">to update your PRE-2.5.0 Column_comments table use this:  and
remember that the Variable in <code class="file docutils literal"><span class="pre">config.inc.php</span></code> has been renamed from
<code class="samp docutils literal"><span class="pre">$cfg['Servers'][$i]['column_comments']</span></code> to
<span class="target" id="index-89"></span><a class="reference internal" href="#cfg_Servers_column_info"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['column_info']</span></code></a></p>
<div class="highlight-mysql"><div class="highlight"><pre><span></span><span class="k">ALTER</span> <span class="k">TABLE</span> <span class="ss">`pma__column_comments`</span>
<span class="k">ADD</span> <span class="ss">`mimetype`</span> <span class="kt">VARCHAR</span><span class="p">(</span> <span class="mi">255</span> <span class="p">)</span> <span class="k">NOT</span> <span class="no">NULL</span><span class="p">,</span>
<span class="k">ADD</span> <span class="ss">`transformation`</span> <span class="kt">VARCHAR</span><span class="p">(</span> <span class="mi">255</span> <span class="p">)</span> <span class="k">NOT</span> <span class="no">NULL</span><span class="p">,</span>
<span class="k">ADD</span> <span class="ss">`transformation_options`</span> <span class="kt">VARCHAR</span><span class="p">(</span> <span class="mi">255</span> <span class="p">)</span> <span class="k">NOT</span> <span class="no">NULL</span><span class="p">;</span>
</pre></div>
</div>
</li>
<li><p class="first">to update your PRE-4.3.0 Column_info table manually use this
<code class="docutils literal"><span class="pre">./sql/upgrade_column_info_4_3_0+.sql</span></code> SQL script.</p>
</li>
</ul>
<p>This feature can be disabled by setting the configuration to <code class="docutils literal"><span class="pre">false</span></code>.</p>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">For auto-upgrade functionality to work, your
<span class="target" id="index-90"></span><a class="reference internal" href="#cfg_Servers_controluser"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['controluser']</span></code></a> must have ALTER privilege on
<code class="docutils literal"><span class="pre">phpmyadmin</span></code> database. See the <a class="reference external" href="https://dev.mysql.com/doc/refman/5.7/en/grant.html">MySQL documentation for GRANT</a> on how to
<code class="docutils literal"><span class="pre">GRANT</span></code> privileges to a user.</p>
</div>
</dd></dl>

<span class="target" id="history"></span><dl class="option">
<dt id="cfg_Servers_history">
<code class="descname">$cfg['Servers'][$i]['history']</code><a class="headerlink" href="#cfg_Servers_history" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string or false</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>Since release 2.5.0 you can store your <a class="reference internal" href="glossary.html#term-sql"><span class="xref std std-term">SQL</span></a> history, which means all
queries you entered manually into the phpMyAdmin interface. If you don&#8217;t
want to use a table-based history, you can use the JavaScript-based
history.</p>
<p>Using that, all your history items are deleted when closing the window.
Using <span class="target" id="index-91"></span><a class="reference internal" href="#cfg_QueryHistoryMax"><code class="xref config config-option docutils literal"><span class="pre">$cfg['QueryHistoryMax']</span></code></a> you can specify an amount of
history items you want to have on hold. On every login, this list gets cut
to the maximum amount.</p>
<p>The query history is only available if JavaScript is enabled in
your browser.</p>
<p>To allow the usage of this functionality:</p>
<ul class="simple">
<li>set up <span class="target" id="index-92"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</li>
<li>put the table name in <span class="target" id="index-93"></span><a class="reference internal" href="#cfg_Servers_history"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['history']</span></code></a> (e.g.
<code class="docutils literal"><span class="pre">pma__history</span></code>)</li>
</ul>
<p>This feature can be disabled by setting the configuration to <code class="docutils literal"><span class="pre">false</span></code>.</p>
</dd></dl>

<span class="target" id="recent"></span><dl class="option">
<dt id="cfg_Servers_recent">
<code class="descname">$cfg['Servers'][$i]['recent']</code><a class="headerlink" href="#cfg_Servers_recent" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string or false</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>Since release 3.5.0 you can show recently used tables in the
navigation panel. It helps you to jump across table directly, without
the need to select the database, and then select the table. Using
<span class="target" id="index-94"></span><a class="reference internal" href="#cfg_NumRecentTables"><code class="xref config config-option docutils literal"><span class="pre">$cfg['NumRecentTables']</span></code></a> you can configure the maximum number
of recent tables shown. When you select a table from the list, it will jump to
the page specified in <span class="target" id="index-95"></span><a class="reference internal" href="#cfg_NavigationTreeDefaultTabTable"><code class="xref config config-option docutils literal"><span class="pre">$cfg['NavigationTreeDefaultTabTable']</span></code></a>.</p>
<p>Without configuring the storage, you can still access the recently used tables,
but it will disappear after you logout.</p>
<p>To allow the usage of this functionality persistently:</p>
<ul class="simple">
<li>set up <span class="target" id="index-96"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</li>
<li>put the table name in <span class="target" id="index-97"></span><a class="reference internal" href="#cfg_Servers_recent"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['recent']</span></code></a> (e.g.
<code class="docutils literal"><span class="pre">pma__recent</span></code>)</li>
</ul>
<p>This feature can be disabled by setting the configuration to <code class="docutils literal"><span class="pre">false</span></code>.</p>
</dd></dl>

<span class="target" id="favorite"></span><dl class="option">
<dt id="cfg_Servers_favorite">
<code class="descname">$cfg['Servers'][$i]['favorite']</code><a class="headerlink" href="#cfg_Servers_favorite" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string or false</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>Since release 4.2.0 you can show a list of selected tables in the
navigation panel. It helps you to jump to the table directly, without
the need to select the database, and then select the table. When you
select a table from the list, it will jump to the page specified in
<span class="target" id="index-98"></span><a class="reference internal" href="#cfg_NavigationTreeDefaultTabTable"><code class="xref config config-option docutils literal"><span class="pre">$cfg['NavigationTreeDefaultTabTable']</span></code></a>.</p>
<p>You can add tables to this list or remove tables from it in database
structure page by clicking on the star icons next to table names. Using
<span class="target" id="index-99"></span><a class="reference internal" href="#cfg_NumFavoriteTables"><code class="xref config config-option docutils literal"><span class="pre">$cfg['NumFavoriteTables']</span></code></a> you can configure the maximum
number of favorite tables shown.</p>
<p>Without configuring the storage, you can still access the favorite tables,
but it will disappear after you logout.</p>
<p>To allow the usage of this functionality persistently:</p>
<ul class="simple">
<li>set up <span class="target" id="index-100"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</li>
<li>put the table name in <span class="target" id="index-101"></span><a class="reference internal" href="#cfg_Servers_favorite"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['favorite']</span></code></a> (e.g.
<code class="docutils literal"><span class="pre">pma__favorite</span></code>)</li>
</ul>
<p>This feature can be disabled by setting the configuration to <code class="docutils literal"><span class="pre">false</span></code>.</p>
</dd></dl>

<span class="target" id="table-uiprefs"></span><dl class="option">
<dt id="cfg_Servers_table_uiprefs">
<code class="descname">$cfg['Servers'][$i]['table_uiprefs']</code><a class="headerlink" href="#cfg_Servers_table_uiprefs" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string or false</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>Since release 3.5.0 phpMyAdmin can be configured to remember several
things (sorted column <span class="target" id="index-102"></span><a class="reference internal" href="#cfg_RememberSorting"><code class="xref config config-option docutils literal"><span class="pre">$cfg['RememberSorting']</span></code></a>, column order,
and column visibility from a database table) for browsing tables. Without
configuring the storage, these features still can be used, but the values will
disappear after you logout.</p>
<p>To allow the usage of these functionality persistently:</p>
<ul class="simple">
<li>set up <span class="target" id="index-103"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</li>
<li>put the table name in <span class="target" id="index-104"></span><a class="reference internal" href="#cfg_Servers_table_uiprefs"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['table_uiprefs']</span></code></a> (e.g.
<code class="docutils literal"><span class="pre">pma__table_uiprefs</span></code>)</li>
</ul>
<p>This feature can be disabled by setting the configuration to <code class="docutils literal"><span class="pre">false</span></code>.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_Servers_users">
<code class="descname">$cfg['Servers'][$i]['users']</code><a class="headerlink" href="#cfg_Servers_users" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string or false</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
</dd></dl>

<dl class="option">
<dt id="cfg_Servers_usergroups">
<code class="descname">$cfg['Servers'][$i]['usergroups']</code><a class="headerlink" href="#cfg_Servers_usergroups" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string or false</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>Since release 4.1.0 you can create different user groups with menu items
attached to them. Users can be assigned to these groups and the logged in
user would only see menu items configured to the usergroup he is assigned to.
To do this it needs two tables &#8220;usergroups&#8221; (storing allowed menu items for each
user group) and &#8220;users&#8221; (storing users and their assignments to user groups).</p>
<p>To allow the usage of this functionality:</p>
<ul class="simple">
<li>set up <span class="target" id="index-105"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</li>
<li>put the correct table names in
<span class="target" id="index-106"></span><a class="reference internal" href="#cfg_Servers_users"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['users']</span></code></a> (e.g. <code class="docutils literal"><span class="pre">pma__users</span></code>) and
<span class="target" id="index-107"></span><a class="reference internal" href="#cfg_Servers_usergroups"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['usergroups']</span></code></a> (e.g. <code class="docutils literal"><span class="pre">pma__usergroups</span></code>)</li>
</ul>
<p>This feature can be disabled by setting either of the configurations to <code class="docutils literal"><span class="pre">false</span></code>.</p>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last"><a class="reference internal" href="privileges.html#configurablemenus"><span class="std std-ref">Configurable menus and user groups</span></a></p>
</div>
</dd></dl>

<span class="target" id="navigationhiding"></span><dl class="option">
<dt id="cfg_Servers_navigationhiding">
<code class="descname">$cfg['Servers'][$i]['navigationhiding']</code><a class="headerlink" href="#cfg_Servers_navigationhiding" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string or false</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>Since release 4.1.0 you can hide/show items in the navigation tree.</p>
<p>To allow the usage of this functionality:</p>
<ul class="simple">
<li>set up <span class="target" id="index-108"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</li>
<li>put the table name in <span class="target" id="index-109"></span><a class="reference internal" href="#cfg_Servers_navigationhiding"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['navigationhiding']</span></code></a> (e.g.
<code class="docutils literal"><span class="pre">pma__navigationhiding</span></code>)</li>
</ul>
<p>This feature can be disabled by setting the configuration to <code class="docutils literal"><span class="pre">false</span></code>.</p>
</dd></dl>

<span class="target" id="central-columns"></span><dl class="option">
<dt id="cfg_Servers_central_columns">
<code class="descname">$cfg['Servers'][$i]['central_columns']</code><a class="headerlink" href="#cfg_Servers_central_columns" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string or false</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>Since release 4.3.0 you can have a central list of columns per database.
You can add/remove columns to the list as per your requirement. These columns
in the central list will be available to use while you create a new column for
a table or create a table itself. You can select a column from central list
while creating a new column, it will save you from writing the same column definition
over again or from writing different names for similar column.</p>
<p>To allow the usage of this functionality:</p>
<ul class="simple">
<li>set up <span class="target" id="index-110"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</li>
<li>put the table name in <span class="target" id="index-111"></span><a class="reference internal" href="#cfg_Servers_central_columns"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['central_columns']</span></code></a> (e.g.
<code class="docutils literal"><span class="pre">pma__central_columns</span></code>)</li>
</ul>
<p>This feature can be disabled by setting the configuration to <code class="docutils literal"><span class="pre">false</span></code>.</p>
</dd></dl>

<span class="target" id="designer-settings"></span><dl class="option">
<dt id="cfg_Servers_designer_settings">
<code class="descname">$cfg['Servers'][$i]['designer_settings']</code><a class="headerlink" href="#cfg_Servers_designer_settings" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string or false</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>Since release 4.5.0 your designer settings can be remembered.
Your choice regarding &#8216;Angular/Direct Links&#8217;, &#8216;Snap to Grid&#8217;, &#8216;Toggle Relation Lines&#8217;,
&#8216;Small/Big All&#8217;, &#8216;Move Menu&#8217; and &#8216;Pin Text&#8217; can be remembered persistently.</p>
<p>To allow the usage of this functionality:</p>
<ul class="simple">
<li>set up <span class="target" id="index-112"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</li>
<li>put the table name in <span class="target" id="index-113"></span><a class="reference internal" href="#cfg_Servers_designer_settings"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['designer_settings']</span></code></a> (e.g.
<code class="docutils literal"><span class="pre">pma__designer_settings</span></code>)</li>
</ul>
<p>This feature can be disabled by setting the configuration to <code class="docutils literal"><span class="pre">false</span></code>.</p>
</dd></dl>

<span class="target" id="savedsearches"></span><dl class="option">
<dt id="cfg_Servers_savedsearches">
<code class="descname">$cfg['Servers'][$i]['savedsearches']</code><a class="headerlink" href="#cfg_Servers_savedsearches" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string or false</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>Since release 4.2.0 you can save and load query-by-example searches from the Database &gt; Query panel.</p>
<p>To allow the usage of this functionality:</p>
<ul class="simple">
<li>set up <span class="target" id="index-114"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</li>
<li>put the table name in <span class="target" id="index-115"></span><a class="reference internal" href="#cfg_Servers_savedsearches"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['savedsearches']</span></code></a> (e.g.
<code class="docutils literal"><span class="pre">pma__savedsearches</span></code>)</li>
</ul>
<p>This feature can be disabled by setting the configuration to <code class="docutils literal"><span class="pre">false</span></code>.</p>
</dd></dl>

<span class="target" id="export-templates"></span><dl class="option">
<dt id="cfg_Servers_export_templates">
<code class="descname">$cfg['Servers'][$i]['export_templates']</code><a class="headerlink" href="#cfg_Servers_export_templates" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string or false</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>Since release 4.5.0 you can save and load export templates.</p>
<p>To allow the usage of this functionality:</p>
<ul class="simple">
<li>set up <span class="target" id="index-116"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</li>
<li>put the table name in <span class="target" id="index-117"></span><a class="reference internal" href="#cfg_Servers_export_templates"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['export_templates']</span></code></a> (e.g.
<code class="docutils literal"><span class="pre">pma__export_templates</span></code>)</li>
</ul>
<p>This feature can be disabled by setting the configuration to <code class="docutils literal"><span class="pre">false</span></code>.</p>
</dd></dl>

<span class="target" id="tracking"></span><dl class="option">
<dt id="cfg_Servers_tracking">
<code class="descname">$cfg['Servers'][$i]['tracking']</code><a class="headerlink" href="#cfg_Servers_tracking" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string or false</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>Since release 3.3.x a tracking mechanism is available. It helps you to
track every <a class="reference internal" href="glossary.html#term-sql"><span class="xref std std-term">SQL</span></a> command which is
executed by phpMyAdmin. The mechanism supports logging of data
manipulation and data definition statements. After enabling it you can
create versions of tables.</p>
<p>The creation of a version has two effects:</p>
<ul class="simple">
<li>phpMyAdmin saves a snapshot of the table, including structure and
indexes.</li>
<li>phpMyAdmin logs all commands which change the structure and/or data of
the table and links these commands with the version number.</li>
</ul>
<p>Of course you can view the tracked changes. On the <span class="guilabel">Tracking</span>
page a complete report is available for every version. For the report you
can use filters, for example you can get a list of statements within a date
range. When you want to filter usernames you can enter * for all names or
you enter a list of names separated by &#8216;,&#8217;. In addition you can export the
(filtered) report to a file or to a temporary database.</p>
<p>To allow the usage of this functionality:</p>
<ul class="simple">
<li>set up <span class="target" id="index-118"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</li>
<li>put the table name in <span class="target" id="index-119"></span><a class="reference internal" href="#cfg_Servers_tracking"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['tracking']</span></code></a> (e.g.
<code class="docutils literal"><span class="pre">pma__tracking</span></code>)</li>
</ul>
<p>This feature can be disabled by setting the configuration to <code class="docutils literal"><span class="pre">false</span></code>.</p>
</dd></dl>

<span class="target" id="tracking2"></span><dl class="option">
<dt id="cfg_Servers_tracking_version_auto_create">
<code class="descname">$cfg['Servers'][$i]['tracking_version_auto_create']</code><a class="headerlink" href="#cfg_Servers_tracking_version_auto_create" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<p>Whether the tracking mechanism creates versions for tables and views
automatically.</p>
<p>If this is set to true and you create a table or view with</p>
<ul class="simple">
<li>CREATE TABLE ...</li>
<li>CREATE VIEW ...</li>
</ul>
<p>and no version exists for it, the mechanism will create a version for
you automatically.</p>
</dd></dl>

<span class="target" id="tracking3"></span><dl class="option">
<dt id="cfg_Servers_tracking_default_statements">
<code class="descname">$cfg['Servers'][$i]['tracking_default_statements']</code><a class="headerlink" href="#cfg_Servers_tracking_default_statements" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'CREATE</span> <span class="pre">TABLE,ALTER</span> <span class="pre">TABLE,DROP</span> <span class="pre">TABLE,RENAME</span> <span class="pre">TABLE,CREATE</span> <span class="pre">INDEX,DROP</span> <span class="pre">INDEX,INSERT,UPDATE,DELETE,TRUNCATE,REPLACE,CREATE</span> <span class="pre">VIEW,ALTER</span> <span class="pre">VIEW,DROP</span> <span class="pre">VIEW,CREATE</span> <span class="pre">DATABASE,ALTER</span> <span class="pre">DATABASE,DROP</span> <span class="pre">DATABASE'</span></code></td>
</tr>
</tbody>
</table>
<p>Defines the list of statements the auto-creation uses for new
versions.</p>
</dd></dl>

<span class="target" id="tracking4"></span><dl class="option">
<dt id="cfg_Servers_tracking_add_drop_view">
<code class="descname">$cfg['Servers'][$i]['tracking_add_drop_view']</code><a class="headerlink" href="#cfg_Servers_tracking_add_drop_view" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Whether a DROP VIEW IF EXISTS statement will be added as first line to
the log when creating a view.</p>
</dd></dl>

<span class="target" id="tracking5"></span><dl class="option">
<dt id="cfg_Servers_tracking_add_drop_table">
<code class="descname">$cfg['Servers'][$i]['tracking_add_drop_table']</code><a class="headerlink" href="#cfg_Servers_tracking_add_drop_table" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Whether a DROP TABLE IF EXISTS statement will be added as first line
to the log when creating a table.</p>
</dd></dl>

<span class="target" id="tracking6"></span><dl class="option">
<dt id="cfg_Servers_tracking_add_drop_database">
<code class="descname">$cfg['Servers'][$i]['tracking_add_drop_database']</code><a class="headerlink" href="#cfg_Servers_tracking_add_drop_database" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Whether a DROP DATABASE IF EXISTS statement will be added as first
line to the log when creating a database.</p>
</dd></dl>

<span class="target" id="userconfig"></span><dl class="option">
<dt id="cfg_Servers_userconfig">
<code class="descname">$cfg['Servers'][$i]['userconfig']</code><a class="headerlink" href="#cfg_Servers_userconfig" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string or false</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>Since release 3.4.x phpMyAdmin allows users to set most preferences by
themselves and store them in the database.</p>
<p>If you don&#8217;t allow for storing preferences in
<span class="target" id="index-120"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a>, users can still personalize
phpMyAdmin, but settings will be saved in browser&#8217;s local storage, or, it
is is unavailable, until the end of session.</p>
<p>To allow the usage of this functionality:</p>
<ul class="simple">
<li>set up <span class="target" id="index-121"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</li>
<li>put the table name in <span class="target" id="index-122"></span><a class="reference internal" href="#cfg_Servers_userconfig"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['userconfig']</span></code></a></li>
</ul>
<p>This feature can be disabled by setting the configuration to <code class="docutils literal"><span class="pre">false</span></code>.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_Servers_MaxTableUiprefs">
<code class="descname">$cfg['Servers'][$i]['MaxTableUiprefs']</code><a class="headerlink" href="#cfg_Servers_MaxTableUiprefs" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">integer</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">100</td>
</tr>
</tbody>
</table>
<p>Maximum number of rows saved in
<span class="target" id="index-123"></span><a class="reference internal" href="#cfg_Servers_table_uiprefs"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['table_uiprefs']</span></code></a> table.</p>
<p>When tables are dropped or renamed,
<span class="target" id="index-124"></span><a class="reference internal" href="#cfg_Servers_table_uiprefs"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['table_uiprefs']</span></code></a> may contain invalid data
(referring to tables which no longer exist). We only keep this number of newest
rows in <span class="target" id="index-125"></span><a class="reference internal" href="#cfg_Servers_table_uiprefs"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['table_uiprefs']</span></code></a> and automatically
delete older rows.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_Servers_SessionTimeZone">
<code class="descname">$cfg['Servers'][$i]['SessionTimeZone']</code><a class="headerlink" href="#cfg_Servers_SessionTimeZone" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>Sets the time zone used by phpMyAdmin. Leave blank to use the time zone of your
database server. Possible values are explained at
<a class="reference external" href="https://dev.mysql.com/doc/refman/5.7/en/time-zone-support.html">https://dev.mysql.com/doc/refman/5.7/en/time-zone-support.html</a></p>
<p>This is useful when your database server uses a time zone which is different from the
time zone you want to use in phpMyAdmin.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_Servers_AllowRoot">
<code class="descname">$cfg['Servers'][$i]['AllowRoot']</code><a class="headerlink" href="#cfg_Servers_AllowRoot" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Whether to allow root access. This is just a shortcut for the
<span class="target" id="index-126"></span><a class="reference internal" href="#cfg_Servers_AllowDeny_rules"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['AllowDeny']['rules']</span></code></a> below.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_Servers_AllowNoPassword">
<code class="descname">$cfg['Servers'][$i]['AllowNoPassword']</code><a class="headerlink" href="#cfg_Servers_AllowNoPassword" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<p>Whether to allow logins without a password. The default value of
<code class="docutils literal"><span class="pre">false</span></code> for this parameter prevents unintended access to a MySQL
server with was left with an empty password for root or on which an
anonymous (blank) user is defined.</p>
</dd></dl>

<span class="target" id="servers-allowdeny-order"></span><dl class="option">
<dt id="cfg_Servers_AllowDeny_order">
<code class="descname">$cfg['Servers'][$i]['AllowDeny']['order']</code><a class="headerlink" href="#cfg_Servers_AllowDeny_order" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>If your rule order is empty, then <a class="reference internal" href="glossary.html#term-ip"><span class="xref std std-term">IP</span></a>
authorization is disabled.</p>
<p>If your rule order is set to
<code class="docutils literal"><span class="pre">'deny,allow'</span></code> then the system applies all deny rules followed by
allow rules. Access is allowed by default. Any client which does not
match a Deny command or does match an Allow command will be allowed
access to the server.</p>
<p>If your rule order is set to <code class="docutils literal"><span class="pre">'allow,deny'</span></code>
then the system applies all allow rules followed by deny rules. Access
is denied by default. Any client which does not match an Allow
directive or does match a Deny directive will be denied access to the
server.</p>
<p>If your rule order is set to <code class="docutils literal"><span class="pre">'explicit'</span></code>, authorization is
performed in a similar fashion to rule order &#8216;deny,allow&#8217;, with the
added restriction that your host/username combination <strong>must</strong> be
listed in the <em>allow</em> rules, and not listed in the <em>deny</em> rules. This
is the <strong>most</strong> secure means of using Allow/Deny rules, and was
available in Apache by specifying allow and deny rules without setting
any order.</p>
<p>Please also see <span class="target" id="index-127"></span><a class="reference internal" href="#cfg_TrustedProxies"><code class="xref config config-option docutils literal"><span class="pre">$cfg['TrustedProxies']</span></code></a> for
detecting IP address behind proxies.</p>
</dd></dl>

<span class="target" id="servers-allowdeny-rules"></span><dl class="option">
<dt id="cfg_Servers_AllowDeny_rules">
<code class="descname">$cfg['Servers'][$i]['AllowDeny']['rules']</code><a class="headerlink" href="#cfg_Servers_AllowDeny_rules" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">array of strings</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">array()</td>
</tr>
</tbody>
</table>
<p>The general format for the rules is as such:</p>
<div class="highlight-none"><div class="highlight"><pre><span></span>&lt;&#39;allow&#39; | &#39;deny&#39;&gt; &lt;username&gt; [from] &lt;ipmask&gt;
</pre></div>
</div>
<p>If you wish to match all users, it is possible to use a <code class="docutils literal"><span class="pre">'%'</span></code> as a
wildcard in the <em>username</em> field.</p>
<p>There are a few shortcuts you can
use in the <em>ipmask</em> field as well (please note that those containing
SERVER_ADDRESS might not be available on all webservers):</p>
<div class="highlight-none"><div class="highlight"><pre><span></span>&#39;all&#39; -&gt; 0.0.0.0/0
&#39;localhost&#39; -&gt; 127.0.0.1/8
&#39;localnetA&#39; -&gt; SERVER_ADDRESS/8
&#39;localnetB&#39; -&gt; SERVER_ADDRESS/16
&#39;localnetC&#39; -&gt; SERVER_ADDRESS/24
</pre></div>
</div>
<p>Having an empty rule list is equivalent to either using <code class="docutils literal"><span class="pre">'allow</span> <span class="pre">%</span>
<span class="pre">from</span> <span class="pre">all'</span></code> if your rule order is set to <code class="docutils literal"><span class="pre">'deny,allow'</span></code> or <code class="docutils literal"><span class="pre">'deny</span> <span class="pre">%</span>
<span class="pre">from</span> <span class="pre">all'</span></code> if your rule order is set to <code class="docutils literal"><span class="pre">'allow,deny'</span></code> or
<code class="docutils literal"><span class="pre">'explicit'</span></code>.</p>
<p>For the <a class="reference internal" href="glossary.html#term-ip-address"><span class="xref std std-term">IP address</span></a> matching
system, the following work:</p>
<ul class="simple">
<li><code class="docutils literal"><span class="pre">xxx.xxx.xxx.xxx</span></code> (an exact <a class="reference internal" href="glossary.html#term-ip-address"><span class="xref std std-term">IP address</span></a>)</li>
<li><code class="docutils literal"><span class="pre">xxx.xxx.xxx.[yyy-zzz]</span></code> (an <a class="reference internal" href="glossary.html#term-ip-address"><span class="xref std std-term">IP address</span></a> range)</li>
<li><code class="docutils literal"><span class="pre">xxx.xxx.xxx.xxx/nn</span></code> (CIDR, Classless Inter-Domain Routing type <a class="reference internal" href="glossary.html#term-ip"><span class="xref std std-term">IP</span></a> addresses)</li>
</ul>
<p>But the following does not work:</p>
<ul class="simple">
<li><code class="docutils literal"><span class="pre">xxx.xxx.xxx.xx[yyy-zzz]</span></code> (partial <a class="reference internal" href="glossary.html#term-ip"><span class="xref std std-term">IP</span></a> address range)</li>
</ul>
<p>For <a class="reference internal" href="glossary.html#term-ipv6"><span class="xref std std-term">IPv6</span></a> addresses, the following work:</p>
<ul class="simple">
<li><code class="docutils literal"><span class="pre">xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx</span></code> (an exact <a class="reference internal" href="glossary.html#term-ipv6"><span class="xref std std-term">IPv6</span></a> address)</li>
<li><code class="docutils literal"><span class="pre">xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:[yyyy-zzzz]</span></code> (an <a class="reference internal" href="glossary.html#term-ipv6"><span class="xref std std-term">IPv6</span></a> address range)</li>
<li><code class="docutils literal"><span class="pre">xxxx:xxxx:xxxx:xxxx/nn</span></code> (CIDR, Classless Inter-Domain Routing type <a class="reference internal" href="glossary.html#term-ipv6"><span class="xref std std-term">IPv6</span></a> addresses)</li>
</ul>
<p>But the following does not work:</p>
<ul class="simple">
<li><code class="docutils literal"><span class="pre">xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xx[yyy-zzz]</span></code> (partial <a class="reference internal" href="glossary.html#term-ipv6"><span class="xref std std-term">IPv6</span></a> address range)</li>
</ul>
<p>Examples:</p>
<div class="highlight-none"><div class="highlight"><pre><span></span>$cfg[&#39;Servers&#39;][$i][&#39;AllowDeny&#39;][&#39;order&#39;] = &#39;allow,deny&#39;;
$cfg[&#39;Servers&#39;][$i][&#39;AllowDeny&#39;][&#39;rules&#39;] = array(&#39;allow bob from all&#39;);
// Allow only &#39;bob&#39; to connect from any host

$cfg[&#39;Servers&#39;][$i][&#39;AllowDeny&#39;][&#39;order&#39;] = &#39;allow,deny&#39;;
$cfg[&#39;Servers&#39;][$i][&#39;AllowDeny&#39;][&#39;rules&#39;] = array(&#39;allow mary from 192.168.100.[50-100]&#39;);
// Allow only &#39;mary&#39; to connect from host 192.168.100.50 through 192.168.100.100

$cfg[&#39;Servers&#39;][$i][&#39;AllowDeny&#39;][&#39;order&#39;] = &#39;allow,deny&#39;;
$cfg[&#39;Servers&#39;][$i][&#39;AllowDeny&#39;][&#39;rules&#39;] = array(&#39;allow % from 192.168.[5-6].10&#39;);
// Allow any user to connect from host 192.168.5.10 or 192.168.6.10

$cfg[&#39;Servers&#39;][$i][&#39;AllowDeny&#39;][&#39;order&#39;] = &#39;allow,deny&#39;;
$cfg[&#39;Servers&#39;][$i][&#39;AllowDeny&#39;][&#39;rules&#39;] = array(&#39;allow root from 192.168.5.50&#39;,&#39;allow % from 192.168.6.10&#39;);
// Allow any user to connect from 192.168.6.10, and additionally allow root to connect from 192.168.5.50
</pre></div>
</div>
</dd></dl>

<dl class="option">
<dt id="cfg_Servers_DisableIS">
<code class="descname">$cfg['Servers'][$i]['DisableIS']</code><a class="headerlink" href="#cfg_Servers_DisableIS" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<p>Disable using <code class="docutils literal"><span class="pre">INFORMATION_SCHEMA</span></code> to retrieve information (use
<code class="docutils literal"><span class="pre">SHOW</span></code> commands instead), because of speed issues when many
databases are present.</p>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">Enabling this option might give you a big performance boost on older
MySQL servers.</p>
</div>
</dd></dl>

<dl class="option">
<dt id="cfg_Servers_SignonScript">
<code class="descname">$cfg['Servers'][$i]['SignonScript']</code><a class="headerlink" href="#cfg_Servers_SignonScript" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<div class="versionadded">
<p><span class="versionmodified">New in version 3.5.0.</span></p>
</div>
<p>Name of PHP script to be sourced and executed to obtain login
credentials. This is alternative approach to session based single
signon. The script has to provide a function called
<code class="docutils literal"><span class="pre">get_login_credentials</span></code> which returns list of username and
password, accepting single parameter of existing username (can be
empty). See <code class="file docutils literal"><span class="pre">examples/signon-script.php</span></code> for an example:</p>
<div class="highlight-php"><div class="highlight"><pre><span></span><span class="o">&lt;?</span><span class="nx">php</span>
<span class="cm">/* vim: set expandtab sw=4 ts=4 sts=4: */</span>
<span class="sd">/**</span>
<span class="sd"> * Single signon for phpMyAdmin</span>
<span class="sd"> *</span>
<span class="sd"> * This is just example how to use script based single signon with</span>
<span class="sd"> * phpMyAdmin, it is not intended to be perfect code and look, only</span>
<span class="sd"> * shows how you can integrate this functionality in your application.</span>
<span class="sd"> *</span>
<span class="sd"> * @package    PhpMyAdmin</span>
<span class="sd"> * @subpackage Example</span>
<span class="sd"> */</span>


<span class="sd">/**</span>
<span class="sd"> * This function returns username and password.</span>
<span class="sd"> *</span>
<span class="sd"> * It can optionally use configured username as parameter.</span>
<span class="sd"> *</span>
<span class="sd"> * @param string $user User name</span>
<span class="sd"> *</span>
<span class="sd"> * @return array</span>
<span class="sd"> */</span>
<span class="k">function</span> <span class="nf">get_login_credentials</span><span class="p">(</span><span class="nv">$user</span><span class="p">)</span>
<span class="p">{</span>
    <span class="cm">/* Optionally we can use passed username */</span>
    <span class="k">if</span> <span class="p">(</span><span class="o">!</span><span class="k">empty</span><span class="p">(</span><span class="nv">$user</span><span class="p">))</span> <span class="p">{</span>
        <span class="k">return</span> <span class="k">array</span><span class="p">(</span><span class="nv">$user</span><span class="p">,</span> <span class="s1">&#39;password&#39;</span><span class="p">);</span>
    <span class="p">}</span>

    <span class="cm">/* Here we would retrieve the credentials */</span>
    <span class="nv">$credentials</span> <span class="o">=</span> <span class="k">array</span><span class="p">(</span><span class="s1">&#39;root&#39;</span><span class="p">,</span> <span class="s1">&#39;&#39;</span><span class="p">);</span>

    <span class="k">return</span> <span class="nv">$credentials</span><span class="p">;</span>
<span class="p">}</span>
</pre></div>
</div>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last"><a class="reference internal" href="setup.html#auth-signon"><span class="std std-ref">Signon authentication mode</span></a></p>
</div>
</dd></dl>

<dl class="option">
<dt id="cfg_Servers_SignonSession">
<code class="descname">$cfg['Servers'][$i]['SignonSession']</code><a class="headerlink" href="#cfg_Servers_SignonSession" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>Name of session which will be used for signon authentication method.
You should use something different than <code class="docutils literal"><span class="pre">phpMyAdmin</span></code>, because this
is session which phpMyAdmin uses internally. Takes effect only if
<span class="target" id="index-128"></span><a class="reference internal" href="#cfg_Servers_SignonScript"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['SignonScript']</span></code></a> is not configured.</p>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last"><a class="reference internal" href="setup.html#auth-signon"><span class="std std-ref">Signon authentication mode</span></a></p>
</div>
</dd></dl>

<dl class="option">
<dt id="cfg_Servers_SignonCookieParams">
<code class="descname">$cfg['Servers'][$i]['SignonCookieParams']</code><a class="headerlink" href="#cfg_Servers_SignonCookieParams" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">array</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">array()</span></code></td>
</tr>
</tbody>
</table>
<div class="versionadded">
<p><span class="versionmodified">New in version 4.7.0.</span></p>
</div>
<p>An associative array of session cookie parameters of other authentication system.
It is not needed if the other system doesn&#8217;t use session_set_cookie_params().
Keys should include &#8216;lifetime&#8217;, &#8216;path&#8217;, &#8216;domain&#8217;, &#8216;secure&#8217; or &#8216;httponly&#8217;.
Valid values are mentioned in <a class="reference external" href="https://secure.php.net/manual/en/function.session-get-cookie-params.php">session_get_cookie_params</a>, they should be set to same values as the
other application uses. Takes effect only if
<span class="target" id="index-129"></span><a class="reference internal" href="#cfg_Servers_SignonScript"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['SignonScript']</span></code></a> is not configured.</p>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last"><a class="reference internal" href="setup.html#auth-signon"><span class="std std-ref">Signon authentication mode</span></a></p>
</div>
</dd></dl>

<dl class="option">
<dt id="cfg_Servers_SignonURL">
<code class="descname">$cfg['Servers'][$i]['SignonURL']</code><a class="headerlink" href="#cfg_Servers_SignonURL" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p><a class="reference internal" href="glossary.html#term-url"><span class="xref std std-term">URL</span></a> where user will be redirected
to log in for signon authentication method. Should be absolute
including protocol.</p>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last"><a class="reference internal" href="setup.html#auth-signon"><span class="std std-ref">Signon authentication mode</span></a></p>
</div>
</dd></dl>

<dl class="option">
<dt id="cfg_Servers_LogoutURL">
<code class="descname">$cfg['Servers'][$i]['LogoutURL']</code><a class="headerlink" href="#cfg_Servers_LogoutURL" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p><a class="reference internal" href="glossary.html#term-url"><span class="xref std std-term">URL</span></a> where user will be redirected
after logout (doesn&#8217;t affect config authentication method). Should be
absolute including protocol.</p>
</dd></dl>

</div>
<div class="section" id="generic-settings">
<h2>Generic settings<a class="headerlink" href="#generic-settings" title="Permalink to this headline"></a></h2>
<dl class="option">
<dt id="cfg_DisableShortcutKeys">
<code class="descname">$cfg['DisableShortcutKeys']</code><a class="headerlink" href="#cfg_DisableShortcutKeys" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<p>You can disable phpMyAdmin shortcut keys by setting <span class="target" id="index-130"></span><a class="reference internal" href="#cfg_DisableShortcutKeys"><code class="xref config config-option docutils literal"><span class="pre">$cfg['DisableShortcutKeys']</span></code></a> to false.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_ServerDefault">
<code class="descname">$cfg['ServerDefault']</code><a class="headerlink" href="#cfg_ServerDefault" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">integer</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">1</td>
</tr>
</tbody>
</table>
<p>If you have more than one server configured, you can set
<span class="target" id="index-131"></span><a class="reference internal" href="#cfg_ServerDefault"><code class="xref config config-option docutils literal"><span class="pre">$cfg['ServerDefault']</span></code></a> to any one of them to autoconnect to that
server when phpMyAdmin is started, or set it to 0 to be given a list
of servers without logging in.</p>
<p>If you have only one server configured,
<span class="target" id="index-132"></span><a class="reference internal" href="#cfg_ServerDefault"><code class="xref config config-option docutils literal"><span class="pre">$cfg['ServerDefault']</span></code></a> MUST be set to that server.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_VersionCheck">
<code class="descname">$cfg['VersionCheck']</code><a class="headerlink" href="#cfg_VersionCheck" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Enables check for latest versions using JavaScript on the main phpMyAdmin
page or by directly accessing <code class="file docutils literal"><span class="pre">version_check.php</span></code>.</p>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">This setting can be adjusted by your vendor.</p>
</div>
</dd></dl>

<dl class="option">
<dt id="cfg_ProxyUrl">
<code class="descname">$cfg['ProxyUrl']</code><a class="headerlink" href="#cfg_ProxyUrl" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">&#8220;&#8221;</td>
</tr>
</tbody>
</table>
<p>The url of the proxy to be used when phpmyadmin needs to access the outside
internet such as when retrieving the latest version info or submitting error
reports.  You need this if the server where phpMyAdmin is installed does not
have direct access to the internet.
The format is: &#8220;hostname:portnumber&#8221;</p>
</dd></dl>

<dl class="option">
<dt id="cfg_ProxyUser">
<code class="descname">$cfg['ProxyUser']</code><a class="headerlink" href="#cfg_ProxyUser" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">&#8220;&#8221;</td>
</tr>
</tbody>
</table>
<p>The username for authenticating with the proxy. By default, no
authentication is performed. If a username is supplied, Basic
Authentication will be performed. No other types of authentication
are currently supported.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_ProxyPass">
<code class="descname">$cfg['ProxyPass']</code><a class="headerlink" href="#cfg_ProxyPass" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">&#8220;&#8221;</td>
</tr>
</tbody>
</table>
<p>The password for authenticating with the proxy.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_MaxDbList">
<code class="descname">$cfg['MaxDbList']</code><a class="headerlink" href="#cfg_MaxDbList" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">integer</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">100</td>
</tr>
</tbody>
</table>
<p>The maximum number of database names to be displayed in the main panel&#8217;s
database list.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_MaxTableList">
<code class="descname">$cfg['MaxTableList']</code><a class="headerlink" href="#cfg_MaxTableList" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">integer</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">250</td>
</tr>
</tbody>
</table>
<p>The maximum number of table names to be displayed in the main panel&#8217;s
list (except on the Export page).</p>
</dd></dl>

<dl class="option">
<dt id="cfg_ShowHint">
<code class="descname">$cfg['ShowHint']</code><a class="headerlink" href="#cfg_ShowHint" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Whether or not to show hints (for example, hints when hovering over
table headers).</p>
</dd></dl>

<dl class="option">
<dt id="cfg_MaxCharactersInDisplayedSQL">
<code class="descname">$cfg['MaxCharactersInDisplayedSQL']</code><a class="headerlink" href="#cfg_MaxCharactersInDisplayedSQL" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">integer</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">1000</td>
</tr>
</tbody>
</table>
<p>The maximum number of characters when a <a class="reference internal" href="glossary.html#term-sql"><span class="xref std std-term">SQL</span></a> query is displayed. The
default limit of 1000 should be correct to avoid the display of tons of
hexadecimal codes that represent BLOBs, but some users have real
<a class="reference internal" href="glossary.html#term-sql"><span class="xref std std-term">SQL</span></a> queries that are longer than 1000 characters. Also, if a
query&#8217;s length exceeds this limit, this query is not saved in the history.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_PersistentConnections">
<code class="descname">$cfg['PersistentConnections']</code><a class="headerlink" href="#cfg_PersistentConnections" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<p>Whether <a class="reference external" href="https://secure.php.net/manual/en/features.persistent-connections.php">persistent connections</a> should be used or not. Works with
following extensions:</p>
<ul class="simple">
<li>mysql (<a class="reference external" href="https://secure.php.net/manual/en/function.mysql-pconnect.php">mysql_pconnect</a>),</li>
<li>mysqli (requires PHP 5.3.0 or newer, <a class="reference external" href="https://secure.php.net/manual/en/mysqli.persistconns.php">more information</a>).</li>
</ul>
</dd></dl>

<dl class="option">
<dt id="cfg_ForceSSL">
<code class="descname">$cfg['ForceSSL']</code><a class="headerlink" href="#cfg_ForceSSL" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<div class="deprecated">
<p><span class="versionmodified">Deprecated since version 4.6.0: </span>This setting is no longer available since phpMyAdmin 4.6.0. Please
adjust your webserver instead.</p>
</div>
<p>Whether to force using https while accessing phpMyAdmin. In a reverse
proxy setup, setting this to <code class="docutils literal"><span class="pre">true</span></code> is not supported.</p>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">In some setups (like separate SSL proxy or load balancer) you might
have to set <span class="target" id="index-133"></span><a class="reference internal" href="#cfg_PmaAbsoluteUri"><code class="xref config config-option docutils literal"><span class="pre">$cfg['PmaAbsoluteUri']</span></code></a> for correct
redirection.</p>
</div>
</dd></dl>

<dl class="option">
<dt id="cfg_ExecTimeLimit">
<code class="descname">$cfg['ExecTimeLimit']</code><a class="headerlink" href="#cfg_ExecTimeLimit" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">integer [number of seconds]</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">300</td>
</tr>
</tbody>
</table>
<p>Set the number of seconds a script is allowed to run. If seconds is
set to zero, no time limit is imposed. This setting is used while
importing/exporting dump files but has
no effect when PHP is running in safe mode.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_SessionSavePath">
<code class="descname">$cfg['SessionSavePath']</code><a class="headerlink" href="#cfg_SessionSavePath" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>Path for storing session data (<a class="reference external" href="https://secure.php.net/session_save_path">session_save_path PHP parameter</a>).</p>
<div class="admonition warning">
<p class="first admonition-title">Warning</p>
<p class="last">This folder should not be publicly accessible through the webserver,
otherwise you risk leaking private data from your session.</p>
</div>
</dd></dl>

<dl class="option">
<dt id="cfg_MemoryLimit">
<code class="descname">$cfg['MemoryLimit']</code><a class="headerlink" href="#cfg_MemoryLimit" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string [number of bytes]</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'-1'</span></code></td>
</tr>
</tbody>
</table>
<p>Set the number of bytes a script is allowed to allocate. If set to
<code class="docutils literal"><span class="pre">'-1'</span></code>, no limit is imposed. If set to <code class="docutils literal"><span class="pre">'0'</span></code>, no change of the
memory limit is attempted and the <code class="file docutils literal"><span class="pre">php.ini</span></code> <code class="docutils literal"><span class="pre">memory_limit</span></code> is
used.</p>
<p>This setting is used while importing/exporting dump files
so you definitely don&#8217;t want to put here a too low
value. It has no effect when PHP is running in safe mode.</p>
<p>You can also use any string as in <code class="file docutils literal"><span class="pre">php.ini</span></code>, eg. &#8216;16M&#8217;. Ensure you
don&#8217;t omit the suffix (16 means 16 bytes!)</p>
</dd></dl>

<dl class="option">
<dt id="cfg_SkipLockedTables">
<code class="descname">$cfg['SkipLockedTables']</code><a class="headerlink" href="#cfg_SkipLockedTables" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<p>Mark used tables and make it possible to show databases with locked
tables (since MySQL 3.23.30).</p>
</dd></dl>

<dl class="option">
<dt id="cfg_ShowSQL">
<code class="descname">$cfg['ShowSQL']</code><a class="headerlink" href="#cfg_ShowSQL" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Defines whether <a class="reference internal" href="glossary.html#term-sql"><span class="xref std std-term">SQL</span></a> queries
generated by phpMyAdmin should be displayed or not.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_RetainQueryBox">
<code class="descname">$cfg['RetainQueryBox']</code><a class="headerlink" href="#cfg_RetainQueryBox" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<p>Defines whether the <a class="reference internal" href="glossary.html#term-sql"><span class="xref std std-term">SQL</span></a> query box
should be kept displayed after its submission.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_CodemirrorEnable">
<code class="descname">$cfg['CodemirrorEnable']</code><a class="headerlink" href="#cfg_CodemirrorEnable" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Defines whether to use a Javascript code editor for SQL query boxes.
CodeMirror provides syntax highlighting and line numbers.  However,
middle-clicking for pasting the clipboard contents in some Linux
distributions (such as Ubuntu) is not supported by all browsers.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_DefaultForeignKeyChecks">
<code class="descname">$cfg['DefaultForeignKeyChecks']</code><a class="headerlink" href="#cfg_DefaultForeignKeyChecks" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'default'</span></code></td>
</tr>
</tbody>
</table>
<p>Default value of the checkbox for foreign key checks, to disable/enable
foreign key checks for certain queries. The possible values are <code class="docutils literal"><span class="pre">'default'</span></code>,
<code class="docutils literal"><span class="pre">'enable'</span></code> or <code class="docutils literal"><span class="pre">'disable'</span></code>. If set to <code class="docutils literal"><span class="pre">'default'</span></code>, the value of the
MySQL variable <code class="docutils literal"><span class="pre">FOREIGN_KEY_CHECKS</span></code> is used.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_AllowUserDropDatabase">
<code class="descname">$cfg['AllowUserDropDatabase']</code><a class="headerlink" href="#cfg_AllowUserDropDatabase" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<div class="admonition warning">
<p class="first admonition-title">Warning</p>
<p class="last">This is not a security measure as there will be always ways to
circumvent this. If you want to prohibit users from dropping databases,
revoke their corresponding DROP privilege.</p>
</div>
<p>Defines whether normal users (non-administrator) are allowed to delete
their own database or not. If set as false, the link <span class="guilabel">Drop
Database</span> will not be shown, and even a <code class="docutils literal"><span class="pre">DROP</span> <span class="pre">DATABASE</span> <span class="pre">mydatabase</span></code> will
be rejected. Quite practical for <a class="reference internal" href="glossary.html#term-isp"><span class="xref std std-term">ISP</span></a> &#8216;s with many customers.</p>
<p>This limitation of <a class="reference internal" href="glossary.html#term-sql"><span class="xref std std-term">SQL</span></a> queries is not as strict as when using MySQL
privileges. This is due to nature of <a class="reference internal" href="glossary.html#term-sql"><span class="xref std std-term">SQL</span></a> queries which might be
quite complicated.  So this choice should be viewed as help to avoid
accidental dropping rather than strict privilege limitation.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_Confirm">
<code class="descname">$cfg['Confirm']</code><a class="headerlink" href="#cfg_Confirm" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Whether a warning (&#8220;Are your really sure...&#8221;) should be displayed when
you&#8217;re about to lose data.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_UseDbSearch">
<code class="descname">$cfg['UseDbSearch']</code><a class="headerlink" href="#cfg_UseDbSearch" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Define whether the &#8220;search string inside database&#8221; is enabled or not.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_IgnoreMultiSubmitErrors">
<code class="descname">$cfg['IgnoreMultiSubmitErrors']</code><a class="headerlink" href="#cfg_IgnoreMultiSubmitErrors" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<p>Define whether phpMyAdmin will continue executing a multi-query
statement if one of the queries fails. Default is to abort execution.</p>
</dd></dl>

</div>
<div class="section" id="cookie-authentication-options">
<h2>Cookie authentication options<a class="headerlink" href="#cookie-authentication-options" title="Permalink to this headline"></a></h2>
<dl class="option">
<dt id="cfg_blowfish_secret">
<code class="descname">$cfg['blowfish_secret']</code><a class="headerlink" href="#cfg_blowfish_secret" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>The &#8220;cookie&#8221; auth_type uses AES algorithm to encrypt the password. If you
are using the &#8220;cookie&#8221; auth_type, enter here a random passphrase of your
choice. It will be used internally by the AES algorithm: you won’t be
prompted for this passphrase.</p>
<p>The secret should be 32 characters long. Using shorter will lead to weaker security
of encrypted cookies, using longer will cause no harm.</p>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">The configuration is called blowfish_secret for historical reasons as
Blowfish algorithm was originally used to do the encryption.</p>
</div>
<div class="versionchanged">
<p><span class="versionmodified">Changed in version 3.1.0: </span>Since version 3.1.0 phpMyAdmin can generate this on the fly, but it
makes a bit weaker security as this generated secret is stored in
session and furthermore it makes impossible to recall user name from
cookie.</p>
</div>
</dd></dl>

<dl class="option">
<dt id="cfg_LoginCookieRecall">
<code class="descname">$cfg['LoginCookieRecall']</code><a class="headerlink" href="#cfg_LoginCookieRecall" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Define whether the previous login should be recalled or not in cookie
authentication mode.</p>
<p>This is automatically disabled if you do not have
configured <span class="target" id="index-134"></span><a class="reference internal" href="#cfg_blowfish_secret"><code class="xref config config-option docutils literal"><span class="pre">$cfg['blowfish_secret']</span></code></a>.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_LoginCookieValidity">
<code class="descname">$cfg['LoginCookieValidity']</code><a class="headerlink" href="#cfg_LoginCookieValidity" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">integer [number of seconds]</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">1440</td>
</tr>
</tbody>
</table>
<p>Define how long a login cookie is valid. Please note that php
configuration option <a class="reference external" href="https://secure.php.net/manual/en/session.configuration.php#ini.session.gc-maxlifetime">session.gc_maxlifetime</a> might limit session validity and if the session is lost,
the login cookie is also invalidated. So it is a good idea to set
<code class="docutils literal"><span class="pre">session.gc_maxlifetime</span></code> at least to the same value of
<span class="target" id="index-135"></span><a class="reference internal" href="#cfg_LoginCookieValidity"><code class="xref config config-option docutils literal"><span class="pre">$cfg['LoginCookieValidity']</span></code></a>.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_LoginCookieStore">
<code class="descname">$cfg['LoginCookieStore']</code><a class="headerlink" href="#cfg_LoginCookieStore" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">integer [number of seconds]</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">0</td>
</tr>
</tbody>
</table>
<p>Define how long login cookie should be stored in browser. Default 0
means that it will be kept for existing session. This is recommended
for not trusted environments.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_LoginCookieDeleteAll">
<code class="descname">$cfg['LoginCookieDeleteAll']</code><a class="headerlink" href="#cfg_LoginCookieDeleteAll" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>If enabled (default), logout deletes cookies for all servers,
otherwise only for current one. Setting this to false makes it easy to
forget to log out from other server, when you are using more of them.</p>
</dd></dl>

<span class="target" id="allowarbitraryserver"></span><dl class="option">
<dt id="cfg_AllowArbitraryServer">
<code class="descname">$cfg['AllowArbitraryServer']</code><a class="headerlink" href="#cfg_AllowArbitraryServer" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<p>If enabled, allows you to log in to arbitrary servers using cookie
authentication.</p>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">Please use this carefully, as this may allow users access to MySQL servers
behind the firewall where your <a class="reference internal" href="glossary.html#term-http"><span class="xref std std-term">HTTP</span></a> server is placed.
See also <span class="target" id="index-136"></span><a class="reference internal" href="#cfg_ArbitraryServerRegexp"><code class="xref config config-option docutils literal"><span class="pre">$cfg['ArbitraryServerRegexp']</span></code></a>.</p>
</div>
</dd></dl>

<dl class="option">
<dt id="cfg_ArbitraryServerRegexp">
<code class="descname">$cfg['ArbitraryServerRegexp']</code><a class="headerlink" href="#cfg_ArbitraryServerRegexp" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>Restricts the MySQL servers to which the user can log in when
<span class="target" id="index-137"></span><a class="reference internal" href="#cfg_AllowArbitraryServer"><code class="xref config config-option docutils literal"><span class="pre">$cfg['AllowArbitraryServer']</span></code></a> is enabled by
matching the <a class="reference internal" href="glossary.html#term-ip"><span class="xref std std-term">IP</span></a> or the hostname of the MySQL server
to the given regular expression. The regular expression must be enclosed
with a delimiter character.</p>
<p>It is recommended to include start and end symbols in the regullar
expression, so that you can avoid partial matches on the string.</p>
<p><strong>Examples:</strong></p>
<div class="highlight-php"><div class="highlight"><pre><span></span><span class="c1">// Allow connection to three listed servers:</span>
<span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;ArbitraryServerRegexp&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="s1">&#39;/^(server|another|yetdifferent)$/&#39;</span><span class="p">;</span>

<span class="c1">// Allow connection to range of IP addresses:</span>
<span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;ArbitraryServerRegexp&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="s1">&#39;@^192\.168\.0\.[0-9]{1,}$@&#39;</span><span class="p">;</span>

<span class="c1">// Allow connection to server name ending with -mysql:</span>
<span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;ArbitraryServerRegexp&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="s1">&#39;@^[^:]\-mysql$@&#39;</span><span class="p">;</span>
</pre></div>
</div>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">The whole server name is matched, it can include port as well. Due to
way MySQL is permissive in connection parameters, it is possible to use
connection strings as <code class="docutils literal"><span class="pre">`server:3306-mysql`</span></code>. This can be used to
bypass regullar expression by the suffix, while connecting to another
server.</p>
</div>
</dd></dl>

<dl class="option">
<dt id="cfg_CaptchaLoginPublicKey">
<code class="descname">$cfg['CaptchaLoginPublicKey']</code><a class="headerlink" href="#cfg_CaptchaLoginPublicKey" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>The public key for the reCaptcha service that can be obtained from
<a class="reference external" href="https://www.google.com/recaptcha/intro/">https://www.google.com/recaptcha/intro/</a>.</p>
<p>reCaptcha will be then used in <a class="reference internal" href="setup.html#cookie"><span class="std std-ref">Cookie authentication mode</span></a>.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_CaptchaLoginPrivateKey">
<code class="descname">$cfg['CaptchaLoginPrivateKey']</code><a class="headerlink" href="#cfg_CaptchaLoginPrivateKey" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>The private key for the reCaptcha service that can be obtain from
<a class="reference external" href="https://www.google.com/recaptcha/intro/">https://www.google.com/recaptcha/intro/</a>.</p>
<p>reCaptcha will be then used in <a class="reference internal" href="setup.html#cookie"><span class="std std-ref">Cookie authentication mode</span></a>.</p>
</dd></dl>

</div>
<div class="section" id="navigation-panel-setup">
<h2>Navigation panel setup<a class="headerlink" href="#navigation-panel-setup" title="Permalink to this headline"></a></h2>
<dl class="option">
<dt id="cfg_ShowDatabasesNavigationAsTree">
<code class="descname">$cfg['ShowDatabasesNavigationAsTree']</code><a class="headerlink" href="#cfg_ShowDatabasesNavigationAsTree" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>In the navigation panel, replaces the database tree with a selector</p>
</dd></dl>

<dl class="option">
<dt id="cfg_FirstLevelNavigationItems">
<code class="descname">$cfg['FirstLevelNavigationItems']</code><a class="headerlink" href="#cfg_FirstLevelNavigationItems" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">integer</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">100</td>
</tr>
</tbody>
</table>
<p>The number of first level databases that can be displayed on each page
of navigation tree.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_MaxNavigationItems">
<code class="descname">$cfg['MaxNavigationItems']</code><a class="headerlink" href="#cfg_MaxNavigationItems" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">integer</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">50</td>
</tr>
</tbody>
</table>
<p>The number of items (tables, columns, indexes) that can be displayed on each
page of the navigation tree.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_NavigationTreeEnableGrouping">
<code class="descname">$cfg['NavigationTreeEnableGrouping']</code><a class="headerlink" href="#cfg_NavigationTreeEnableGrouping" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Defines whether to group the databases based on a common prefix
in their name <span class="target" id="index-138"></span><a class="reference internal" href="#cfg_NavigationTreeDbSeparator"><code class="xref config config-option docutils literal"><span class="pre">$cfg['NavigationTreeDbSeparator']</span></code></a>.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_NavigationTreeDbSeparator">
<code class="descname">$cfg['NavigationTreeDbSeparator']</code><a class="headerlink" href="#cfg_NavigationTreeDbSeparator" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'_'</span></code></td>
</tr>
</tbody>
</table>
<p>The string used to separate the parts of the database name when
showing them in a tree.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_NavigationTreeTableSeparator">
<code class="descname">$cfg['NavigationTreeTableSeparator']</code><a class="headerlink" href="#cfg_NavigationTreeTableSeparator" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string or array</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'__'</span></code></td>
</tr>
</tbody>
</table>
<p>Defines a string to be used to nest table spaces. This means if you have
tables like <code class="docutils literal"><span class="pre">first__second__third</span></code> this will be shown as a three-level
hierarchy like: first &gt; second &gt; third.  If set to false or empty, the
feature is disabled. NOTE: You should not use this separator at the
beginning or end of a table name or multiple times after another without
any other characters in between.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_NavigationTreeTableLevel">
<code class="descname">$cfg['NavigationTreeTableLevel']</code><a class="headerlink" href="#cfg_NavigationTreeTableLevel" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">integer</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">1</td>
</tr>
</tbody>
</table>
<p>Defines how many sublevels should be displayed when splitting up
tables by the above separator.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_NumRecentTables">
<code class="descname">$cfg['NumRecentTables']</code><a class="headerlink" href="#cfg_NumRecentTables" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">integer</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">10</td>
</tr>
</tbody>
</table>
<p>The maximum number of recently used tables shown in the navigation
panel. Set this to 0 (zero) to disable the listing of recent tables.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_NumFavoriteTables">
<code class="descname">$cfg['NumFavoriteTables']</code><a class="headerlink" href="#cfg_NumFavoriteTables" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">integer</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">10</td>
</tr>
</tbody>
</table>
<p>The maximum number of favorite tables shown in the navigation
panel. Set this to 0 (zero) to disable the listing of favorite tables.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_ZeroConf">
<code class="descname">$cfg['ZeroConf']</code><a class="headerlink" href="#cfg_ZeroConf" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Enables Zero Configuration mode in which the user will be offered a choice to
create phpMyAdmin configuration storage in the current database
or use the existing one, if already present.</p>
<p>This setting has no effect if the phpMyAdmin configuration storage database
is properly created and the related configuration directives (such as
<span class="target" id="index-139"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and so on) are configured.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_NavigationLinkWithMainPanel">
<code class="descname">$cfg['NavigationLinkWithMainPanel']</code><a class="headerlink" href="#cfg_NavigationLinkWithMainPanel" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Defines whether or not to link with main panel by highlighting
the current database or table.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_NavigationDisplayLogo">
<code class="descname">$cfg['NavigationDisplayLogo']</code><a class="headerlink" href="#cfg_NavigationDisplayLogo" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Defines whether or not to display the phpMyAdmin logo at the top of
the navigation panel.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_NavigationLogoLink">
<code class="descname">$cfg['NavigationLogoLink']</code><a class="headerlink" href="#cfg_NavigationLogoLink" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'index.php'</span></code></td>
</tr>
</tbody>
</table>
<p>Enter <a class="reference internal" href="glossary.html#term-url"><span class="xref std std-term">URL</span></a> where logo in the navigation panel will point to.
For use especially with self made theme which changes this.
For external URLs, you should include URL scheme as well.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_NavigationLogoLinkWindow">
<code class="descname">$cfg['NavigationLogoLinkWindow']</code><a class="headerlink" href="#cfg_NavigationLogoLinkWindow" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'main'</span></code></td>
</tr>
</tbody>
</table>
<p>Whether to open the linked page in the main window (<code class="docutils literal"><span class="pre">main</span></code>) or in a
new one (<code class="docutils literal"><span class="pre">new</span></code>). Note: use <code class="docutils literal"><span class="pre">new</span></code> if you are linking to
<code class="docutils literal"><span class="pre">phpmyadmin.net</span></code>.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_NavigationTreeDisplayItemFilterMinimum">
<code class="descname">$cfg['NavigationTreeDisplayItemFilterMinimum']</code><a class="headerlink" href="#cfg_NavigationTreeDisplayItemFilterMinimum" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">integer</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">30</td>
</tr>
</tbody>
</table>
<p>Defines the minimum number of items (tables, views, routines and
events) to display a JavaScript filter box above the list of items in
the navigation tree.</p>
<p>To disable the filter completely some high number can be used (e.g. 9999)</p>
</dd></dl>

<dl class="option">
<dt id="cfg_NavigationTreeDisplayDbFilterMinimum">
<code class="descname">$cfg['NavigationTreeDisplayDbFilterMinimum']</code><a class="headerlink" href="#cfg_NavigationTreeDisplayDbFilterMinimum" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">integer</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">30</td>
</tr>
</tbody>
</table>
<p>Defines the minimum number of databases to display a JavaScript filter
box above the list of databases in the navigation tree.</p>
<p>To disable the filter completely some high number can be used
(e.g. 9999)</p>
</dd></dl>

<dl class="option">
<dt id="cfg_NavigationDisplayServers">
<code class="descname">$cfg['NavigationDisplayServers']</code><a class="headerlink" href="#cfg_NavigationDisplayServers" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Defines whether or not to display a server choice at the top of the
navigation panel.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_DisplayServersList">
<code class="descname">$cfg['DisplayServersList']</code><a class="headerlink" href="#cfg_DisplayServersList" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<p>Defines whether to display this server choice as links instead of in a
drop-down.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_NavigationTreeDefaultTabTable">
<code class="descname">$cfg['NavigationTreeDefaultTabTable']</code><a class="headerlink" href="#cfg_NavigationTreeDefaultTabTable" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'structure'</span></code></td>
</tr>
</tbody>
</table>
<p>Defines the tab displayed by default when clicking the small icon next
to each table name in the navigation panel. The possible values are the
localized equivalent of:</p>
<ul class="simple">
<li><code class="docutils literal"><span class="pre">structure</span></code></li>
<li><code class="docutils literal"><span class="pre">sql</span></code></li>
<li><code class="docutils literal"><span class="pre">search</span></code></li>
<li><code class="docutils literal"><span class="pre">insert</span></code></li>
<li><code class="docutils literal"><span class="pre">browse</span></code></li>
</ul>
</dd></dl>

<dl class="option">
<dt id="cfg_NavigationTreeDefaultTabTable2">
<code class="descname">$cfg['NavigationTreeDefaultTabTable2']</code><a class="headerlink" href="#cfg_NavigationTreeDefaultTabTable2" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">null</td>
</tr>
</tbody>
</table>
<p>Defines the tab displayed by default when clicking the second small icon next
to each table name in the navigation panel. The possible values are the
localized equivalent of:</p>
<ul class="simple">
<li><code class="docutils literal"><span class="pre">(empty)</span></code></li>
<li><code class="docutils literal"><span class="pre">structure</span></code></li>
<li><code class="docutils literal"><span class="pre">sql</span></code></li>
<li><code class="docutils literal"><span class="pre">search</span></code></li>
<li><code class="docutils literal"><span class="pre">insert</span></code></li>
<li><code class="docutils literal"><span class="pre">browse</span></code></li>
</ul>
</dd></dl>

<dl class="option">
<dt id="cfg_NavigationTreeEnableExpansion">
<code class="descname">$cfg['NavigationTreeEnableExpansion']</code><a class="headerlink" href="#cfg_NavigationTreeEnableExpansion" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Whether to offer the possibility of tree expansion in the navigation panel.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_NavigationTreeShowTables">
<code class="descname">$cfg['NavigationTreeShowTables']</code><a class="headerlink" href="#cfg_NavigationTreeShowTables" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Whether to show tables under database in the navigation panel.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_NavigationTreeShowViews">
<code class="descname">$cfg['NavigationTreeShowViews']</code><a class="headerlink" href="#cfg_NavigationTreeShowViews" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Whether to show views under database in the navigation panel.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_NavigationTreeShowFunctions">
<code class="descname">$cfg['NavigationTreeShowFunctions']</code><a class="headerlink" href="#cfg_NavigationTreeShowFunctions" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Whether to show functions under database in the navigation panel.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_NavigationTreeShowProcedures">
<code class="descname">$cfg['NavigationTreeShowProcedures']</code><a class="headerlink" href="#cfg_NavigationTreeShowProcedures" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Whether to show procedures under database in the navigation panel.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_NavigationTreeShowEvents">
<code class="descname">$cfg['NavigationTreeShowEvents']</code><a class="headerlink" href="#cfg_NavigationTreeShowEvents" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Whether to show events under database in the navigation panel.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_NavigationWidth">
<code class="descname">$cfg['NavigationWidth']</code><a class="headerlink" href="#cfg_NavigationWidth" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">integer</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">240</td>
</tr>
</tbody>
</table>
<p>Navigation panel width, set to 0 to collapse it by default.</p>
</dd></dl>

</div>
<div class="section" id="main-panel">
<h2>Main panel<a class="headerlink" href="#main-panel" title="Permalink to this headline"></a></h2>
<dl class="option">
<dt id="cfg_ShowStats">
<code class="descname">$cfg['ShowStats']</code><a class="headerlink" href="#cfg_ShowStats" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Defines whether or not to display space usage and statistics about
databases and tables. Note that statistics requires at least MySQL
3.23.3 and that, at this date, MySQL doesn&#8217;t return such information
for Berkeley DB tables.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_ShowServerInfo">
<code class="descname">$cfg['ShowServerInfo']</code><a class="headerlink" href="#cfg_ShowServerInfo" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Defines whether to display detailed server information on main page.
You can additionally hide more information by using
<span class="target" id="index-140"></span><a class="reference internal" href="#cfg_Servers_verbose"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['verbose']</span></code></a>.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_ShowPhpInfo">
<code class="descname">$cfg['ShowPhpInfo']</code><a class="headerlink" href="#cfg_ShowPhpInfo" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<p>Defines whether to display the <span class="guilabel">PHP information</span> or not at
the starting main (right) frame.</p>
<p>Please note that to block the usage of <code class="docutils literal"><span class="pre">phpinfo()</span></code> in scripts, you have to
put this in your <code class="file docutils literal"><span class="pre">php.ini</span></code>:</p>
<div class="highlight-ini"><div class="highlight"><pre><span></span><span class="na">disable_functions</span> <span class="o">=</span> <span class="s">phpinfo()</span>
</pre></div>
</div>
<div class="admonition warning">
<p class="first admonition-title">Warning</p>
<p>Enabling phpinfo page will leak quite a lot of information about server
setup. Is it not recommended to enable this on shared installations.</p>
<p class="last">This might also make easier some remote attacks on your installations,
so enable this only when needed.</p>
</div>
</dd></dl>

<dl class="option">
<dt id="cfg_ShowChgPassword">
<code class="descname">$cfg['ShowChgPassword']</code><a class="headerlink" href="#cfg_ShowChgPassword" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Defines whether to display the <span class="guilabel">Change password</span> link or not at
the starting main (right) frame. This setting does not check MySQL commands
entered directly.</p>
<p>Please note that enabling the <span class="guilabel">Change password</span> link has no effect
with config authentication mode: because of the hard coded password value
in the configuration file, end users can&#8217;t be allowed to change their
passwords.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_ShowCreateDb">
<code class="descname">$cfg['ShowCreateDb']</code><a class="headerlink" href="#cfg_ShowCreateDb" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Defines whether to display the form for creating database or not at the
starting main (right) frame. This setting does not check MySQL commands
entered directly.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_ShowGitRevision">
<code class="descname">$cfg['ShowGitRevision']</code><a class="headerlink" href="#cfg_ShowGitRevision" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Defines whether to display informations about the current Git revision (if
applicable) on the main panel.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_MysqlMinVersion">
<code class="descname">$cfg['MysqlMinVersion']</code><a class="headerlink" href="#cfg_MysqlMinVersion" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">array</td>
</tr>
</tbody>
</table>
<p>Defines the minimum supported MySQL version. The default is chosen
by the phpMyAdmin team; however this directive was asked by a developer
of the Plesk control panel to ease integration with older MySQL servers
(where most of the phpMyAdmin features work).</p>
</dd></dl>

</div>
<div class="section" id="database-structure">
<h2>Database structure<a class="headerlink" href="#database-structure" title="Permalink to this headline"></a></h2>
<dl class="option">
<dt id="cfg_ShowDbStructureCreation">
<code class="descname">$cfg['ShowDbStructureCreation']</code><a class="headerlink" href="#cfg_ShowDbStructureCreation" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<p>Defines whether the database structure page (tables list) has a
&#8220;Creation&#8221; column that displays when each table was created.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_ShowDbStructureLastUpdate">
<code class="descname">$cfg['ShowDbStructureLastUpdate']</code><a class="headerlink" href="#cfg_ShowDbStructureLastUpdate" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<p>Defines whether the database structure page (tables list) has a &#8220;Last
update&#8221; column that displays when each table was last updated.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_ShowDbStructureLastCheck">
<code class="descname">$cfg['ShowDbStructureLastCheck']</code><a class="headerlink" href="#cfg_ShowDbStructureLastCheck" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<p>Defines whether the database structure page (tables list) has a &#8220;Last
check&#8221; column that displays when each table was last checked.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_HideStructureActions">
<code class="descname">$cfg['HideStructureActions']</code><a class="headerlink" href="#cfg_HideStructureActions" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Defines whether the table structure actions are hidden under a &#8220;More&#8221;
drop-down.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_ShowColumnComments">
<code class="descname">$cfg['ShowColumnComments']</code><a class="headerlink" href="#cfg_ShowColumnComments" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Defines whether to show column comments as a column in the table structure view.</p>
</dd></dl>

</div>
<div class="section" id="browse-mode">
<h2>Browse mode<a class="headerlink" href="#browse-mode" title="Permalink to this headline"></a></h2>
<dl class="option">
<dt id="cfg_TableNavigationLinksMode">
<code class="descname">$cfg['TableNavigationLinksMode']</code><a class="headerlink" href="#cfg_TableNavigationLinksMode" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'icons'</span></code></td>
</tr>
</tbody>
</table>
<p>Defines whether the table navigation links contain <code class="docutils literal"><span class="pre">'icons'</span></code>, <code class="docutils literal"><span class="pre">'text'</span></code>
or <code class="docutils literal"><span class="pre">'both'</span></code>.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_ActionLinksMode">
<code class="descname">$cfg['ActionLinksMode']</code><a class="headerlink" href="#cfg_ActionLinksMode" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'both'</span></code></td>
</tr>
</tbody>
</table>
<p>If set to <code class="docutils literal"><span class="pre">icons</span></code>, will display icons instead of text for db and table
properties links (like <span class="guilabel">Browse</span>, <span class="guilabel">Select</span>,
<span class="guilabel">Insert</span>, ...). Can be set to <code class="docutils literal"><span class="pre">'both'</span></code>
if you want icons AND text. When set to <code class="docutils literal"><span class="pre">text</span></code>, will only show text.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_RowActionType">
<code class="descname">$cfg['RowActionType']</code><a class="headerlink" href="#cfg_RowActionType" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'both'</span></code></td>
</tr>
</tbody>
</table>
<p>Whether to display icons or text or both icons and text in table row action
segment. Value can be either of <code class="docutils literal"><span class="pre">'icons'</span></code>, <code class="docutils literal"><span class="pre">'text'</span></code> or <code class="docutils literal"><span class="pre">'both'</span></code>.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_ShowAll">
<code class="descname">$cfg['ShowAll']</code><a class="headerlink" href="#cfg_ShowAll" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<p>Defines whether a user should be displayed a &#8220;Show all&#8221; button in browse
mode or not in all cases. By default it is shown only on small tables (less
than 500 rows) to avoid performance issues while getting too many rows.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_MaxRows">
<code class="descname">$cfg['MaxRows']</code><a class="headerlink" href="#cfg_MaxRows" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">integer</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">25</td>
</tr>
</tbody>
</table>
<p>Number of rows displayed when browsing a result set and no LIMIT
clause is used. If the result set contains more rows, &#8220;Previous&#8221; and
&#8220;Next&#8221; links will be shown. Possible values: 25,50,100,250,500.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_Order">
<code class="descname">$cfg['Order']</code><a class="headerlink" href="#cfg_Order" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'SMART'</span></code></td>
</tr>
</tbody>
</table>
<p>Defines whether columns are displayed in ascending (<code class="docutils literal"><span class="pre">ASC</span></code>) order, in
descending (<code class="docutils literal"><span class="pre">DESC</span></code>) order or in a &#8220;smart&#8221; (<code class="docutils literal"><span class="pre">SMART</span></code>) order - I.E.
descending order for columns of type TIME, DATE, DATETIME and
TIMESTAMP, ascending order else- by default.</p>
<div class="versionchanged">
<p><span class="versionmodified">Changed in version 3.4.0: </span>Since phpMyAdmin 3.4.0 the default value is <code class="docutils literal"><span class="pre">'SMART'</span></code>.</p>
</div>
</dd></dl>

<dl class="option">
<dt id="cfg_GridEditing">
<code class="descname">$cfg['GridEditing']</code><a class="headerlink" href="#cfg_GridEditing" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'double-click'</span></code></td>
</tr>
</tbody>
</table>
<p>Defines which action (<code class="docutils literal"><span class="pre">double-click</span></code> or <code class="docutils literal"><span class="pre">click</span></code>) triggers grid
editing. Can be deactivated with the <code class="docutils literal"><span class="pre">disabled</span></code> value.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_RelationalDisplay">
<code class="descname">$cfg['RelationalDisplay']</code><a class="headerlink" href="#cfg_RelationalDisplay" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'K'</span></code></td>
</tr>
</tbody>
</table>
<p>Defines the initial behavior for Options &gt; Relational. <code class="docutils literal"><span class="pre">K</span></code>, which
is the default, displays the key while <code class="docutils literal"><span class="pre">D</span></code> shows the display column.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_SaveCellsAtOnce">
<code class="descname">$cfg['SaveCellsAtOnce']</code><a class="headerlink" href="#cfg_SaveCellsAtOnce" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<p>Defines whether or not to save all edited cells at once for grid
editing.</p>
</dd></dl>

</div>
<div class="section" id="editing-mode">
<h2>Editing mode<a class="headerlink" href="#editing-mode" title="Permalink to this headline"></a></h2>
<dl class="option">
<dt id="cfg_ProtectBinary">
<code class="descname">$cfg['ProtectBinary']</code><a class="headerlink" href="#cfg_ProtectBinary" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean or string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'blob'</span></code></td>
</tr>
</tbody>
</table>
<p>Defines whether <code class="docutils literal"><span class="pre">BLOB</span></code> or <code class="docutils literal"><span class="pre">BINARY</span></code> columns are protected from
editing when browsing a table&#8217;s content. Valid values are:</p>
<ul class="simple">
<li><code class="docutils literal"><span class="pre">false</span></code> to allow editing of all columns;</li>
<li><code class="docutils literal"><span class="pre">'blob'</span></code> to allow editing of all columns except <code class="docutils literal"><span class="pre">BLOBS</span></code>;</li>
<li><code class="docutils literal"><span class="pre">'noblob'</span></code> to disallow editing of all columns except <code class="docutils literal"><span class="pre">BLOBS</span></code> (the
opposite of <code class="docutils literal"><span class="pre">'blob'</span></code>);</li>
<li><code class="docutils literal"><span class="pre">'all'</span></code> to disallow editing of all <code class="docutils literal"><span class="pre">BINARY</span></code> or <code class="docutils literal"><span class="pre">BLOB</span></code> columns.</li>
</ul>
</dd></dl>

<dl class="option">
<dt id="cfg_ShowFunctionFields">
<code class="descname">$cfg['ShowFunctionFields']</code><a class="headerlink" href="#cfg_ShowFunctionFields" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Defines whether or not MySQL functions fields should be initially
displayed in edit/insert mode. Since version 2.10, the user can toggle
this setting from the interface.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_ShowFieldTypesInDataEditView">
<code class="descname">$cfg['ShowFieldTypesInDataEditView']</code><a class="headerlink" href="#cfg_ShowFieldTypesInDataEditView" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Defines whether or not type fields should be initially displayed in
edit/insert mode. The user can toggle this setting from the interface.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_InsertRows">
<code class="descname">$cfg['InsertRows']</code><a class="headerlink" href="#cfg_InsertRows" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">integer</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">2</td>
</tr>
</tbody>
</table>
<p>Defines the default number of rows to be entered from the Insert page.
Users can manually change this from the bottom of that page to add or remove
blank rows.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_ForeignKeyMaxLimit">
<code class="descname">$cfg['ForeignKeyMaxLimit']</code><a class="headerlink" href="#cfg_ForeignKeyMaxLimit" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">integer</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">100</td>
</tr>
</tbody>
</table>
<p>If there are fewer items than this in the set of foreign keys, then a
drop-down box of foreign keys is presented, in the style described by
the <span class="target" id="index-141"></span><a class="reference internal" href="#cfg_ForeignKeyDropdownOrder"><code class="xref config config-option docutils literal"><span class="pre">$cfg['ForeignKeyDropdownOrder']</span></code></a> setting.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_ForeignKeyDropdownOrder">
<code class="descname">$cfg['ForeignKeyDropdownOrder']</code><a class="headerlink" href="#cfg_ForeignKeyDropdownOrder" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">array</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">array(&#8216;content-id&#8217;, &#8216;id-content&#8217;)</td>
</tr>
</tbody>
</table>
<p>For the foreign key drop-down fields, there are several methods of
display, offering both the key and value data. The contents of the
array should be one or both of the following strings: <code class="docutils literal"><span class="pre">content-id</span></code>,
<code class="docutils literal"><span class="pre">id-content</span></code>.</p>
</dd></dl>

</div>
<div class="section" id="export-and-import-settings">
<h2>Export and import settings<a class="headerlink" href="#export-and-import-settings" title="Permalink to this headline"></a></h2>
<dl class="option">
<dt id="cfg_ZipDump">
<code class="descname">$cfg['ZipDump']</code><a class="headerlink" href="#cfg_ZipDump" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
</dd></dl>

<dl class="option">
<dt id="cfg_GZipDump">
<code class="descname">$cfg['GZipDump']</code><a class="headerlink" href="#cfg_GZipDump" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
</dd></dl>

<dl class="option">
<dt id="cfg_BZipDump">
<code class="descname">$cfg['BZipDump']</code><a class="headerlink" href="#cfg_BZipDump" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Defines whether to allow the use of zip/GZip/BZip2 compression when
creating a dump file</p>
</dd></dl>

<dl class="option">
<dt id="cfg_CompressOnFly">
<code class="descname">$cfg['CompressOnFly']</code><a class="headerlink" href="#cfg_CompressOnFly" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Defines whether to allow on the fly compression for GZip/BZip2
compressed exports. This doesn&#8217;t affect smaller dumps and allows users
to create larger dumps that won&#8217;t otherwise fit in memory due to php
memory limit. Produced files contain more GZip/BZip2 headers, but all
normal programs handle this correctly.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_Export">
<code class="descname">$cfg['Export']</code><a class="headerlink" href="#cfg_Export" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">array</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">array(...)</td>
</tr>
</tbody>
</table>
<p>In this array are defined default parameters for export, names of
items are similar to texts seen on export page, so you can easily
identify what they mean.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_Export_format">
<code class="descname">$cfg['Export']['format']</code><a class="headerlink" href="#cfg_Export_format" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'sql'</span></code></td>
</tr>
</tbody>
</table>
<p>Default export format.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_Export_method">
<code class="descname">$cfg['Export']['method']</code><a class="headerlink" href="#cfg_Export_method" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'quick'</span></code></td>
</tr>
</tbody>
</table>
<p>Defines how the export form is displayed when it loads. Valid values
are:</p>
<ul class="simple">
<li><code class="docutils literal"><span class="pre">quick</span></code> to display the minimum number of options to configure</li>
<li><code class="docutils literal"><span class="pre">custom</span></code> to display every available option to configure</li>
<li><code class="docutils literal"><span class="pre">custom-no-form</span></code> same as <code class="docutils literal"><span class="pre">custom</span></code> but does not display the option
of using quick export</li>
</ul>
</dd></dl>

<dl class="option">
<dt id="cfg_Export_charset">
<code class="descname">$cfg['Export']['charset']</code><a class="headerlink" href="#cfg_Export_charset" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>Defines charset for generated export. By default no charset conversion is
done assuming UTF-8.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_Export_file_template_table">
<code class="descname">$cfg['Export']['file_template_table']</code><a class="headerlink" href="#cfg_Export_file_template_table" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'&#64;TABLE&#64;'</span></code></td>
</tr>
</tbody>
</table>
<p>Default filename template for table exports.</p>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last"><a class="reference internal" href="faq.html#faq6-27"><span class="std std-ref">6.27 What format strings can I use?</span></a></p>
</div>
</dd></dl>

<dl class="option">
<dt id="cfg_Export_file_template_database">
<code class="descname">$cfg['Export']['file_template_database']</code><a class="headerlink" href="#cfg_Export_file_template_database" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'&#64;DATABASE&#64;'</span></code></td>
</tr>
</tbody>
</table>
<p>Default filename template for database exports.</p>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last"><a class="reference internal" href="faq.html#faq6-27"><span class="std std-ref">6.27 What format strings can I use?</span></a></p>
</div>
</dd></dl>

<dl class="option">
<dt id="cfg_Export_file_template_server">
<code class="descname">$cfg['Export']['file_template_server']</code><a class="headerlink" href="#cfg_Export_file_template_server" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'&#64;SERVER&#64;'</span></code></td>
</tr>
</tbody>
</table>
<p>Default filename template for server exports.</p>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last"><a class="reference internal" href="faq.html#faq6-27"><span class="std std-ref">6.27 What format strings can I use?</span></a></p>
</div>
</dd></dl>

<dl class="option">
<dt id="cfg_Import">
<code class="descname">$cfg['Import']</code><a class="headerlink" href="#cfg_Import" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">array</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">array(...)</td>
</tr>
</tbody>
</table>
<p>In this array are defined default parameters for import, names of
items are similar to texts seen on import page, so you can easily
identify what they mean.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_Import_charset">
<code class="descname">$cfg['Import']['charset']</code><a class="headerlink" href="#cfg_Import_charset" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>Defines charset for import. By default no charset conversion is done
assuming UTF-8.</p>
</dd></dl>

</div>
<div class="section" id="tabs-display-settings">
<h2>Tabs display settings<a class="headerlink" href="#tabs-display-settings" title="Permalink to this headline"></a></h2>
<dl class="option">
<dt id="cfg_TabsMode">
<code class="descname">$cfg['TabsMode']</code><a class="headerlink" href="#cfg_TabsMode" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'both'</span></code></td>
</tr>
</tbody>
</table>
<p>Defines whether the menu tabs contain <code class="docutils literal"><span class="pre">'icons'</span></code>, <code class="docutils literal"><span class="pre">'text'</span></code> or <code class="docutils literal"><span class="pre">'both'</span></code>.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_PropertiesNumColumns">
<code class="descname">$cfg['PropertiesNumColumns']</code><a class="headerlink" href="#cfg_PropertiesNumColumns" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">integer</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">1</td>
</tr>
</tbody>
</table>
<p>How many columns will be utilized to display the tables on the database
property view? When setting this to a value larger than 1, the type of the
database will be omitted for more display space.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_DefaultTabServer">
<code class="descname">$cfg['DefaultTabServer']</code><a class="headerlink" href="#cfg_DefaultTabServer" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'welcome'</span></code></td>
</tr>
</tbody>
</table>
<p>Defines the tab displayed by default on server view. The possible values
are the localized equivalent of:</p>
<ul class="simple">
<li><code class="docutils literal"><span class="pre">welcome</span></code> (recommended for multi-user setups)</li>
<li><code class="docutils literal"><span class="pre">databases</span></code>,</li>
<li><code class="docutils literal"><span class="pre">status</span></code></li>
<li><code class="docutils literal"><span class="pre">variables</span></code></li>
<li><code class="docutils literal"><span class="pre">privileges</span></code></li>
</ul>
</dd></dl>

<dl class="option">
<dt id="cfg_DefaultTabDatabase">
<code class="descname">$cfg['DefaultTabDatabase']</code><a class="headerlink" href="#cfg_DefaultTabDatabase" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'structure'</span></code></td>
</tr>
</tbody>
</table>
<p>Defines the tab displayed by default on database view. The possible values
are the localized equivalent of:</p>
<ul class="simple">
<li><code class="docutils literal"><span class="pre">structure</span></code></li>
<li><code class="docutils literal"><span class="pre">sql</span></code></li>
<li><code class="docutils literal"><span class="pre">search</span></code></li>
<li><code class="docutils literal"><span class="pre">operations</span></code></li>
</ul>
</dd></dl>

<dl class="option">
<dt id="cfg_DefaultTabTable">
<code class="descname">$cfg['DefaultTabTable']</code><a class="headerlink" href="#cfg_DefaultTabTable" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'browse'</span></code></td>
</tr>
</tbody>
</table>
<p>Defines the tab displayed by default on table view. The possible values
are the localized equivalent of:</p>
<ul class="simple">
<li><code class="docutils literal"><span class="pre">structure</span></code></li>
<li><code class="docutils literal"><span class="pre">sql</span></code></li>
<li><code class="docutils literal"><span class="pre">search</span></code></li>
<li><code class="docutils literal"><span class="pre">insert</span></code></li>
<li><code class="docutils literal"><span class="pre">browse</span></code></li>
</ul>
</dd></dl>

</div>
<div class="section" id="pdf-options">
<h2>PDF Options<a class="headerlink" href="#pdf-options" title="Permalink to this headline"></a></h2>
<dl class="option">
<dt id="cfg_PDFPageSizes">
<code class="descname">$cfg['PDFPageSizes']</code><a class="headerlink" href="#cfg_PDFPageSizes" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">array</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">array('A3',</span> <span class="pre">'A4',</span> <span class="pre">'A5',</span> <span class="pre">'letter',</span> <span class="pre">'legal')</span></code></td>
</tr>
</tbody>
</table>
<p>Array of possible paper sizes for creating PDF pages.</p>
<p>You should never need to change this.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_PDFDefaultPageSize">
<code class="descname">$cfg['PDFDefaultPageSize']</code><a class="headerlink" href="#cfg_PDFDefaultPageSize" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'A4'</span></code></td>
</tr>
</tbody>
</table>
<p>Default page size to use when creating PDF pages. Valid values are any
listed in <span class="target" id="index-142"></span><a class="reference internal" href="#cfg_PDFPageSizes"><code class="xref config config-option docutils literal"><span class="pre">$cfg['PDFPageSizes']</span></code></a>.</p>
</dd></dl>

</div>
<div class="section" id="languages">
<h2>Languages<a class="headerlink" href="#languages" title="Permalink to this headline"></a></h2>
<dl class="option">
<dt id="cfg_DefaultLang">
<code class="descname">$cfg['DefaultLang']</code><a class="headerlink" href="#cfg_DefaultLang" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'en'</span></code></td>
</tr>
</tbody>
</table>
<p>Defines the default language to use, if not browser-defined or user-
defined. The corresponding language file needs to be in
locale/<em>code</em>/LC_MESSAGES/phpmyadmin.mo.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_DefaultConnectionCollation">
<code class="descname">$cfg['DefaultConnectionCollation']</code><a class="headerlink" href="#cfg_DefaultConnectionCollation" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'utf8mb4_general_ci'</span></code></td>
</tr>
</tbody>
</table>
<p>Defines the default connection collation to use, if not user-defined.
See the <a class="reference external" href="https://dev.mysql.com/doc/refman/5.7/en/charset-charsets.html">MySQL documentation for charsets</a>
for list of possible values.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_Lang">
<code class="descname">$cfg['Lang']</code><a class="headerlink" href="#cfg_Lang" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">not set</td>
</tr>
</tbody>
</table>
<p>Force language to use. The corresponding language file needs to be in
locale/<em>code</em>/LC_MESSAGES/phpmyadmin.mo.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_FilterLanguages">
<code class="descname">$cfg['FilterLanguages']</code><a class="headerlink" href="#cfg_FilterLanguages" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>Limit list of available languages to those matching the given regular
expression. For example if you want only Czech and English, you should
set filter to <code class="docutils literal"><span class="pre">'^(cs|en)'</span></code>.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_RecodingEngine">
<code class="descname">$cfg['RecodingEngine']</code><a class="headerlink" href="#cfg_RecodingEngine" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'auto'</span></code></td>
</tr>
</tbody>
</table>
<p>You can select here which functions will be used for character set
conversion. Possible values are:</p>
<ul class="simple">
<li>auto - automatically use available one (first is tested iconv, then
recode)</li>
<li>iconv - use iconv or libiconv functions</li>
<li>recode - use recode_string function</li>
<li>mb - use <a class="reference internal" href="glossary.html#term-mbstring"><span class="xref std std-term">mbstring</span></a> extension</li>
<li>none - disable encoding conversion</li>
</ul>
<p>Enabled charset conversion activates a pull-down menu in the Export
and Import pages, to choose the character set when exporting a file.
The default value in this menu comes from
<span class="target" id="index-143"></span><a class="reference internal" href="#cfg_Export_charset"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Export']['charset']</span></code></a> and <span class="target" id="index-144"></span><a class="reference internal" href="#cfg_Import_charset"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Import']['charset']</span></code></a>.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_IconvExtraParams">
<code class="descname">$cfg['IconvExtraParams']</code><a class="headerlink" href="#cfg_IconvExtraParams" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'//TRANSLIT'</span></code></td>
</tr>
</tbody>
</table>
<p>Specify some parameters for iconv used in charset conversion. See
<a class="reference external" href="https://www.gnu.org/software/libiconv/documentation/libiconv/iconv_open.3.html">iconv documentation</a> for details. By default
<code class="docutils literal"><span class="pre">//TRANSLIT</span></code> is used, so that invalid characters will be
transliterated.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_AvailableCharsets">
<code class="descname">$cfg['AvailableCharsets']</code><a class="headerlink" href="#cfg_AvailableCharsets" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">array</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">array(...)</td>
</tr>
</tbody>
</table>
<p>Available character sets for MySQL conversion. You can add your own
(any of supported by recode/iconv) or remove these which you don&#8217;t
use. Character sets will be shown in same order as here listed, so if
you frequently use some of these move them to the top.</p>
</dd></dl>

</div>
<div class="section" id="web-server-settings">
<h2>Web server settings<a class="headerlink" href="#web-server-settings" title="Permalink to this headline"></a></h2>
<dl class="option">
<dt id="cfg_OBGzip">
<code class="descname">$cfg['OBGzip']</code><a class="headerlink" href="#cfg_OBGzip" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string/boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'auto'</span></code></td>
</tr>
</tbody>
</table>
<p>Defines whether to use GZip output buffering for increased speed in
<a class="reference internal" href="glossary.html#term-http"><span class="xref std std-term">HTTP</span></a> transfers. Set to
true/false for enabling/disabling. When set to &#8216;auto&#8217; (string),
phpMyAdmin tries to enable output buffering and will automatically
disable it if your browser has some problems with buffering. IE6 with
a certain patch is known to cause data corruption when having enabled
buffering.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_TrustedProxies">
<code class="descname">$cfg['TrustedProxies']</code><a class="headerlink" href="#cfg_TrustedProxies" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">array</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">array()</td>
</tr>
</tbody>
</table>
<p>Lists proxies and HTTP headers which are trusted for
<span class="target" id="index-145"></span><a class="reference internal" href="#cfg_Servers_AllowDeny_order"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['AllowDeny']['order']</span></code></a>. This list is by
default empty, you need to fill in some trusted proxy servers if you
want to use rules for IP addresses behind proxy.</p>
<p>The following example specifies that phpMyAdmin should trust a
HTTP_X_FORWARDED_FOR (<code class="docutils literal"><span class="pre">X</span> <span class="pre">-Forwarded-For</span></code>) header coming from the proxy
1.2.3.4:</p>
<div class="highlight-php"><div class="highlight"><pre><span></span><span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;TrustedProxies&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="k">array</span><span class="p">(</span><span class="s1">&#39;1.2.3.4&#39;</span> <span class="o">=&gt;</span> <span class="s1">&#39;HTTP_X_FORWARDED_FOR&#39;</span><span class="p">);</span>
</pre></div>
</div>
<p>The <span class="target" id="index-146"></span><a class="reference internal" href="#cfg_Servers_AllowDeny_rules"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['AllowDeny']['rules']</span></code></a> directive uses the
client&#8217;s IP address as usual.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_GD2Available">
<code class="descname">$cfg['GD2Available']</code><a class="headerlink" href="#cfg_GD2Available" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'auto'</span></code></td>
</tr>
</tbody>
</table>
<p>Specifies whether GD &gt;= 2 is available. If yes it can be used for MIME
transformations. Possible values are:</p>
<ul class="simple">
<li>auto - automatically detect</li>
<li>yes - GD 2 functions can be used</li>
<li>no - GD 2 function cannot be used</li>
</ul>
</dd></dl>

<dl class="option">
<dt id="cfg_CheckConfigurationPermissions">
<code class="descname">$cfg['CheckConfigurationPermissions']</code><a class="headerlink" href="#cfg_CheckConfigurationPermissions" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>We normally check the permissions on the configuration file to ensure
it&#8217;s not world writable. However, phpMyAdmin could be installed on a
NTFS filesystem mounted on a non-Windows server, in which case the
permissions seems wrong but in fact cannot be detected. In this case a
sysadmin would set this parameter to <code class="docutils literal"><span class="pre">false</span></code>.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_LinkLengthLimit">
<code class="descname">$cfg['LinkLengthLimit']</code><a class="headerlink" href="#cfg_LinkLengthLimit" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">integer</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">1000</td>
</tr>
</tbody>
</table>
<p>Limit for length of <a class="reference internal" href="glossary.html#term-url"><span class="xref std std-term">URL</span></a> in links.  When length would be above this
limit, it is replaced by form with button. This is required as some web
servers (<a class="reference internal" href="glossary.html#term-iis"><span class="xref std std-term">IIS</span></a>) have problems with long <a class="reference internal" href="glossary.html#term-url"><span class="xref std std-term">URL</span></a> .</p>
</dd></dl>

<dl class="option">
<dt id="cfg_CSPAllow">
<code class="descname">$cfg['CSPAllow']</code><a class="headerlink" href="#cfg_CSPAllow" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>Additional string to include in allowed script and image sources in Content
Security Policy header.</p>
<p>This can be useful when you want to include some external JavaScript files
in <code class="file docutils literal"><span class="pre">config.footer.inc.php</span></code> or <code class="file docutils literal"><span class="pre">config.header.inc.php</span></code>, which
would be normally not allowed by Content Security Policy.</p>
<p>To allow some sites, just list them within the string:</p>
<div class="highlight-php"><div class="highlight"><pre><span></span><span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;CSPAllow&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="s1">&#39;example.com example.net&#39;</span><span class="p">;</span>
</pre></div>
</div>
<div class="versionadded">
<p><span class="versionmodified">New in version 4.0.4.</span></p>
</div>
</dd></dl>

<dl class="option">
<dt id="cfg_DisableMultiTableMaintenance">
<code class="descname">$cfg['DisableMultiTableMaintenance']</code><a class="headerlink" href="#cfg_DisableMultiTableMaintenance" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<p>In the database Structure page, it&#8217;s possible to mark some tables then
choose an operation like optimizing for many tables. This can slow
down a server; therefore, setting this to <code class="docutils literal"><span class="pre">true</span></code> prevents this kind
of multiple maintenance operation.</p>
</dd></dl>

</div>
<div class="section" id="theme-settings">
<h2>Theme settings<a class="headerlink" href="#theme-settings" title="Permalink to this headline"></a></h2>
<blockquote>
<div>Please directly modify <code class="file docutils literal"><span class="pre">themes/themename/layout.inc.php</span></code>, although
your changes will be overwritten with the next update.</div></blockquote>
</div>
<div class="section" id="design-customization">
<h2>Design customization<a class="headerlink" href="#design-customization" title="Permalink to this headline"></a></h2>
<dl class="option">
<dt id="cfg_NavigationTreePointerEnable">
<code class="descname">$cfg['NavigationTreePointerEnable']</code><a class="headerlink" href="#cfg_NavigationTreePointerEnable" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>When set to true, hovering over an item in the navigation panel causes that item to be marked
(the background is highlighted).</p>
</dd></dl>

<dl class="option">
<dt id="cfg_BrowsePointerEnable">
<code class="descname">$cfg['BrowsePointerEnable']</code><a class="headerlink" href="#cfg_BrowsePointerEnable" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>When set to true, hovering over a row in the Browse page causes that row to be marked (the background
is highlighted).</p>
</dd></dl>

<dl class="option">
<dt id="cfg_BrowseMarkerEnable">
<code class="descname">$cfg['BrowseMarkerEnable']</code><a class="headerlink" href="#cfg_BrowseMarkerEnable" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>When set to true, a data row is marked (the background is highlighted) when the row is selected
with the checkbox.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_LimitChars">
<code class="descname">$cfg['LimitChars']</code><a class="headerlink" href="#cfg_LimitChars" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">integer</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">50</td>
</tr>
</tbody>
</table>
<p>Maximum number of characters shown in any non-numeric field on browse
view. Can be turned off by a toggle button on the browse page.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_RowActionLinks">
<code class="descname">$cfg['RowActionLinks']</code><a class="headerlink" href="#cfg_RowActionLinks" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'left'</span></code></td>
</tr>
</tbody>
</table>
<p>Defines the place where table row links (Edit, Copy, Delete) would be
put when tables contents are displayed (you may have them displayed at
the left side, right side, both sides or nowhere).</p>
</dd></dl>

<dl class="option">
<dt id="cfg_RowActionLinksWithoutUnique">
<code class="descname">$cfg['RowActionLinksWithoutUnique']</code><a class="headerlink" href="#cfg_RowActionLinksWithoutUnique" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<p>Defines whether to show row links (Edit, Copy, Delete) and checkboxes
for multiple row operations even when the selection does not have a <a class="reference internal" href="glossary.html#term-unique-key"><span class="xref std std-term">unique key</span></a>.
Using row actions in the absence of a unique key may result in different/more
rows being affected since there is no guaranteed way to select the exact row(s).</p>
</dd></dl>

<dl class="option">
<dt id="cfg_RememberSorting">
<code class="descname">$cfg['RememberSorting']</code><a class="headerlink" href="#cfg_RememberSorting" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>If enabled, remember the sorting of each table when browsing them.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_TablePrimaryKeyOrder">
<code class="descname">$cfg['TablePrimaryKeyOrder']</code><a class="headerlink" href="#cfg_TablePrimaryKeyOrder" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'NONE'</span></code></td>
</tr>
</tbody>
</table>
<p>This defines the default sort order for the tables, having a <a class="reference internal" href="glossary.html#term-primary-key"><span class="xref std std-term">primary key</span></a>,
when there is no sort order defines externally.
Acceptable values : [&#8216;NONE&#8217;, &#8216;ASC&#8217;, &#8216;DESC&#8217;]</p>
</dd></dl>

<dl class="option">
<dt id="cfg_ShowBrowseComments">
<code class="descname">$cfg['ShowBrowseComments']</code><a class="headerlink" href="#cfg_ShowBrowseComments" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
</dd></dl>

<dl class="option">
<dt id="cfg_ShowPropertyComments">
<code class="descname">$cfg['ShowPropertyComments']</code><a class="headerlink" href="#cfg_ShowPropertyComments" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>By setting the corresponding variable to <code class="docutils literal"><span class="pre">true</span></code> you can enable the
display of column comments in Browse or Property display. In browse
mode, the comments are shown inside the header. In property mode,
comments are displayed using a CSS-formatted dashed-line below the
name of the column. The comment is shown as a tool-tip for that
column.</p>
</dd></dl>

</div>
<div class="section" id="text-fields">
<h2>Text fields<a class="headerlink" href="#text-fields" title="Permalink to this headline"></a></h2>
<dl class="option">
<dt id="cfg_CharEditing">
<code class="descname">$cfg['CharEditing']</code><a class="headerlink" href="#cfg_CharEditing" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'input'</span></code></td>
</tr>
</tbody>
</table>
<p>Defines which type of editing controls should be used for CHAR and
VARCHAR columns. Applies to data editing and also to the default values
in structure editing. Possible values are:</p>
<ul class="simple">
<li>input - this allows to limit size of text to size of columns in MySQL,
but has problems with newlines in columns</li>
<li>textarea - no problems with newlines in columns, but also no length
limitations</li>
</ul>
</dd></dl>

<dl class="option">
<dt id="cfg_MinSizeForInputField">
<code class="descname">$cfg['MinSizeForInputField']</code><a class="headerlink" href="#cfg_MinSizeForInputField" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">integer</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">4</td>
</tr>
</tbody>
</table>
<p>Defines the minimum size for input fields generated for CHAR and
VARCHAR columns.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_MaxSizeForInputField">
<code class="descname">$cfg['MaxSizeForInputField']</code><a class="headerlink" href="#cfg_MaxSizeForInputField" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">integer</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">60</td>
</tr>
</tbody>
</table>
<p>Defines the maximum size for input fields generated for CHAR and
VARCHAR columns.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_TextareaCols">
<code class="descname">$cfg['TextareaCols']</code><a class="headerlink" href="#cfg_TextareaCols" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">integer</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">40</td>
</tr>
</tbody>
</table>
</dd></dl>

<dl class="option">
<dt id="cfg_TextareaRows">
<code class="descname">$cfg['TextareaRows']</code><a class="headerlink" href="#cfg_TextareaRows" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">integer</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">15</td>
</tr>
</tbody>
</table>
</dd></dl>

<dl class="option">
<dt id="cfg_CharTextareaCols">
<code class="descname">$cfg['CharTextareaCols']</code><a class="headerlink" href="#cfg_CharTextareaCols" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">integer</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">40</td>
</tr>
</tbody>
</table>
</dd></dl>

<dl class="option">
<dt id="cfg_CharTextareaRows">
<code class="descname">$cfg['CharTextareaRows']</code><a class="headerlink" href="#cfg_CharTextareaRows" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">integer</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">2</td>
</tr>
</tbody>
</table>
<p>Number of columns and rows for the textareas. This value will be
emphasized (*2) for <a class="reference internal" href="glossary.html#term-sql"><span class="xref std std-term">SQL</span></a> query
textareas and (*1.25) for <a class="reference internal" href="glossary.html#term-sql"><span class="xref std std-term">SQL</span></a>
textareas inside the query window.</p>
<p>The Char* values are used for CHAR
and VARCHAR editing (if configured via <span class="target" id="index-147"></span><a class="reference internal" href="#cfg_CharEditing"><code class="xref config config-option docutils literal"><span class="pre">$cfg['CharEditing']</span></code></a>).</p>
</dd></dl>

<dl class="option">
<dt id="cfg_LongtextDoubleTextarea">
<code class="descname">$cfg['LongtextDoubleTextarea']</code><a class="headerlink" href="#cfg_LongtextDoubleTextarea" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Defines whether textarea for LONGTEXT columns should have double size.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_TextareaAutoSelect">
<code class="descname">$cfg['TextareaAutoSelect']</code><a class="headerlink" href="#cfg_TextareaAutoSelect" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<p>Defines if the whole textarea of the query box will be selected on
click.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_EnableAutocompleteForTablesAndColumns">
<code class="descname">$cfg['EnableAutocompleteForTablesAndColumns']</code><a class="headerlink" href="#cfg_EnableAutocompleteForTablesAndColumns" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Whether to enable autocomplete for table and column names in any
SQL query box.</p>
</dd></dl>

</div>
<div class="section" id="sql-query-box-settings">
<h2>SQL query box settings<a class="headerlink" href="#sql-query-box-settings" title="Permalink to this headline"></a></h2>
<dl class="option">
<dt id="cfg_SQLQuery_Edit">
<code class="descname">$cfg['SQLQuery']['Edit']</code><a class="headerlink" href="#cfg_SQLQuery_Edit" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Whether to display an edit link to change a query in any SQL Query
box.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_SQLQuery_Explain">
<code class="descname">$cfg['SQLQuery']['Explain']</code><a class="headerlink" href="#cfg_SQLQuery_Explain" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Whether to display a link to explain a SELECT query in any SQL Query
box.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_SQLQuery_ShowAsPHP">
<code class="descname">$cfg['SQLQuery']['ShowAsPHP']</code><a class="headerlink" href="#cfg_SQLQuery_ShowAsPHP" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Whether to display a link to wrap a query in PHP code in any SQL Query
box.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_SQLQuery_Refresh">
<code class="descname">$cfg['SQLQuery']['Refresh']</code><a class="headerlink" href="#cfg_SQLQuery_Refresh" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Whether to display a link to refresh a query in any SQL Query box.</p>
</dd></dl>

</div>
<div class="section" id="web-server-upload-save-import-directories">
<span id="web-dirs"></span><h2>Web server upload/save/import directories<a class="headerlink" href="#web-server-upload-save-import-directories" title="Permalink to this headline"></a></h2>
<p>If PHP is running in safe mode, all directories must be owned by the same user
as the owner of the phpMyAdmin scripts.</p>
<p>If the directory where phpMyAdmin is installed is subject to an
<code class="docutils literal"><span class="pre">open_basedir</span></code> restriction, you need to create a temporary directory in some
directory accessible by the PHP interpreter.</p>
<p>For security reasons, all directories should be outside the tree published by
webserver. If you cannot avoid having this directory published by webserver,
limit access to it either by web server configuration (for example using
.htaccess or web.config files) or place at least an empty <code class="file docutils literal"><span class="pre">index.html</span></code>
file there, so that directory listing is not possible. However as long as the
directory is accessible by web server, an attacker can guess filenames to download
the files.</p>
<dl class="option">
<dt id="cfg_UploadDir">
<code class="descname">$cfg['UploadDir']</code><a class="headerlink" href="#cfg_UploadDir" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>The name of the directory where <a class="reference internal" href="glossary.html#term-sql"><span class="xref std std-term">SQL</span></a> files have been uploaded by
other means than phpMyAdmin (for example, ftp). Those files are available
under a drop-down box when you click the database or table name, then the
Import tab.</p>
<p>If
you want different directory for each user, %u will be replaced with
username.</p>
<p>Please note that the file names must have the suffix &#8221;.sql&#8221;
(or &#8221;.sql.bz2&#8221; or &#8221;.sql.gz&#8221; if support for compressed formats is
enabled).</p>
<p>This feature is useful when your file is too big to be
uploaded via <a class="reference internal" href="glossary.html#term-http"><span class="xref std std-term">HTTP</span></a>, or when file
uploads are disabled in PHP.</p>
<div class="admonition warning">
<p class="first admonition-title">Warning</p>
<p class="last">Please see top of this chapter (<a class="reference internal" href="#web-dirs"><span class="std std-ref">Web server upload/save/import directories</span></a>) for instructions how
to setup this directory and how to make its usage secure.</p>
</div>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last">See <a class="reference internal" href="faq.html#faq1-16"><span class="std std-ref">1.16 I cannot upload big dump files (memory, HTTP or timeout problems).</span></a> for alternatives.</p>
</div>
</dd></dl>

<dl class="option">
<dt id="cfg_SaveDir">
<code class="descname">$cfg['SaveDir']</code><a class="headerlink" href="#cfg_SaveDir" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>The name of the directory where dumps can be saved.</p>
<p>If you want different directory for each user, %u will be replaced with
username.</p>
<p>Please note that the directory must exist and has to be writable for
the user running webserver.</p>
<div class="admonition warning">
<p class="first admonition-title">Warning</p>
<p class="last">Please see top of this chapter (<a class="reference internal" href="#web-dirs"><span class="std std-ref">Web server upload/save/import directories</span></a>) for instructions how
to setup this directory and how to make its usage secure.</p>
</div>
</dd></dl>

<dl class="option">
<dt id="cfg_TempDir">
<code class="descname">$cfg['TempDir']</code><a class="headerlink" href="#cfg_TempDir" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'./tmp/'</span></code></td>
</tr>
</tbody>
</table>
<p>The name of the directory where temporary files can be stored. It is used
for several purposes, currently:</p>
<ul class="simple">
<li>The templates cache which speeds up page loading.</li>
<li>ESRI Shapefiles import, see <a class="reference internal" href="faq.html#faq6-30"><span class="std std-ref">6.30 Import: How can I import ESRI Shapefiles?</span></a>.</li>
<li>To work around limitations of <code class="docutils literal"><span class="pre">open_basedir</span></code> for uploaded files, see
<a class="reference internal" href="faq.html#faq1-11"><span class="std std-ref">1.11 I get an &#8216;open_basedir restriction&#8217; while uploading a file from the import tab.</span></a>.</li>
</ul>
<p>This directory should have as strict permissions as possible as the only
user required to access this directory is the one who runs the webserver.
If you have root privileges, simply make this user owner of this directory
and make it accessible only by it:</p>
<div class="highlight-sh"><div class="highlight"><pre><span></span>chown www-data:www-data tmp
chmod <span class="m">700</span> tmp
</pre></div>
</div>
<p>If you cannot change owner of the directory, you can achieve a similar
setup using <a class="reference internal" href="glossary.html#term-acl"><span class="xref std std-term">ACL</span></a>:</p>
<div class="highlight-sh"><div class="highlight"><pre><span></span>chmod <span class="m">700</span> tmp
setfacl -m <span class="s2">&quot;g:www-data:rwx&quot;</span> tmp
setfacl -d -m <span class="s2">&quot;g:www-data:rwx&quot;</span> tmp
</pre></div>
</div>
<p>If neither of above works for you, you can still make the directory
<strong class="command">chmod 777</strong>, but it might impose risk of other users on system
reading and writing data in this directory.</p>
<div class="admonition warning">
<p class="first admonition-title">Warning</p>
<p class="last">Please see top of this chapter (<a class="reference internal" href="#web-dirs"><span class="std std-ref">Web server upload/save/import directories</span></a>) for instructions how
to setup this directory and how to make its usage secure.</p>
</div>
</dd></dl>

</div>
<div class="section" id="various-display-setting">
<h2>Various display setting<a class="headerlink" href="#various-display-setting" title="Permalink to this headline"></a></h2>
<dl class="option">
<dt id="cfg_RepeatCells">
<code class="descname">$cfg['RepeatCells']</code><a class="headerlink" href="#cfg_RepeatCells" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">integer</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">100</td>
</tr>
</tbody>
</table>
<p>Repeat the headers every X cells, or 0 to deactivate.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_QueryHistoryDB">
<code class="descname">$cfg['QueryHistoryDB']</code><a class="headerlink" href="#cfg_QueryHistoryDB" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
</dd></dl>

<dl class="option">
<dt id="cfg_QueryHistoryMax">
<code class="descname">$cfg['QueryHistoryMax']</code><a class="headerlink" href="#cfg_QueryHistoryMax" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">integer</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">25</td>
</tr>
</tbody>
</table>
<p>If <span class="target" id="index-148"></span><a class="reference internal" href="#cfg_QueryHistoryDB"><code class="xref config config-option docutils literal"><span class="pre">$cfg['QueryHistoryDB']</span></code></a> is set to <code class="docutils literal"><span class="pre">true</span></code>, all your
Queries are logged to a table, which has to be created by you (see
<span class="target" id="index-149"></span><a class="reference internal" href="#cfg_Servers_history"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['history']</span></code></a>). If set to false, all your
queries will be appended to the form, but only as long as your window is
opened they remain saved.</p>
<p>When using the JavaScript based query window, it will always get updated
when you click on a new table/db to browse and will focus if you click on
<span class="guilabel">Edit SQL</span> after using a query. You can suppress updating the
query window by checking the box <span class="guilabel">Do not overwrite this query
from outside the window</span> below the query textarea. Then you can browse
tables/databases in the background without losing the contents of the
textarea, so this is especially useful when composing a query with tables
you first have to look in. The checkbox will get automatically checked
whenever you change the contents of the textarea. Please uncheck the button
whenever you definitely want the query window to get updated even though
you have made alterations.</p>
<p>If <span class="target" id="index-150"></span><a class="reference internal" href="#cfg_QueryHistoryDB"><code class="xref config config-option docutils literal"><span class="pre">$cfg['QueryHistoryDB']</span></code></a> is set to <code class="docutils literal"><span class="pre">true</span></code> you can
specify the amount of saved history items using
<span class="target" id="index-151"></span><a class="reference internal" href="#cfg_QueryHistoryMax"><code class="xref config config-option docutils literal"><span class="pre">$cfg['QueryHistoryMax']</span></code></a>.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_BrowseMIME">
<code class="descname">$cfg['BrowseMIME']</code><a class="headerlink" href="#cfg_BrowseMIME" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Enable <a class="reference internal" href="transformations.html#transformations"><span class="std std-ref">Transformations</span></a>.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_MaxExactCount">
<code class="descname">$cfg['MaxExactCount']</code><a class="headerlink" href="#cfg_MaxExactCount" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">integer</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">50000</td>
</tr>
</tbody>
</table>
<p>For InnoDB tables, determines for how large tables phpMyAdmin should
get the exact row count using <code class="docutils literal"><span class="pre">SELECT</span> <span class="pre">COUNT</span></code>. If the approximate row
count as returned by <code class="docutils literal"><span class="pre">SHOW</span> <span class="pre">TABLE</span> <span class="pre">STATUS</span></code> is smaller than this value,
<code class="docutils literal"><span class="pre">SELECT</span> <span class="pre">COUNT</span></code> will be used, otherwise the approximate count will be
used.</p>
<div class="versionchanged">
<p><span class="versionmodified">Changed in version 4.8.0: </span>The default value was lowered to 50000 for performance reasons.</p>
</div>
<div class="versionchanged">
<p><span class="versionmodified">Changed in version 4.2.6: </span>The default value was changed to 500000.</p>
</div>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last"><a class="reference internal" href="faq.html#faq3-11"><span class="std std-ref">3.11 The number of rows for InnoDB tables is not correct.</span></a></p>
</div>
</dd></dl>

<dl class="option">
<dt id="cfg_MaxExactCountViews">
<code class="descname">$cfg['MaxExactCountViews']</code><a class="headerlink" href="#cfg_MaxExactCountViews" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">integer</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">0</td>
</tr>
</tbody>
</table>
<p>For VIEWs, since obtaining the exact count could have an impact on
performance, this value is the maximum to be displayed, using a
<code class="docutils literal"><span class="pre">SELECT</span> <span class="pre">COUNT</span> <span class="pre">...</span> <span class="pre">LIMIT</span></code>. Setting this to 0 bypasses any row
counting.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_NaturalOrder">
<code class="descname">$cfg['NaturalOrder']</code><a class="headerlink" href="#cfg_NaturalOrder" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Sorts database and table names according to natural order (for
example, t1, t2, t10). Currently implemented in the navigation panel
and in Database view, for the table list.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_InitialSlidersState">
<code class="descname">$cfg['InitialSlidersState']</code><a class="headerlink" href="#cfg_InitialSlidersState" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'closed'</span></code></td>
</tr>
</tbody>
</table>
<p>If set to <code class="docutils literal"><span class="pre">'closed'</span></code>, the visual sliders are initially in a closed
state. A value of <code class="docutils literal"><span class="pre">'open'</span></code> does the reverse. To completely disable
all visual sliders, use <code class="docutils literal"><span class="pre">'disabled'</span></code>.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_UserprefsDisallow">
<code class="descname">$cfg['UserprefsDisallow']</code><a class="headerlink" href="#cfg_UserprefsDisallow" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">array</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">array()</td>
</tr>
</tbody>
</table>
<p>Contains names of configuration options (keys in <code class="docutils literal"><span class="pre">$cfg</span></code> array) that
users can&#8217;t set through user preferences. For possible values, refer
to clases under <code class="file docutils literal"><span class="pre">libraries/classes/Config/Forms/User/</span></code>.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_UserprefsDeveloperTab">
<code class="descname">$cfg['UserprefsDeveloperTab']</code><a class="headerlink" href="#cfg_UserprefsDeveloperTab" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<p>Activates in the user preferences a tab containing options for
developers of phpMyAdmin.</p>
</dd></dl>

</div>
<div class="section" id="page-titles">
<h2>Page titles<a class="headerlink" href="#page-titles" title="Permalink to this headline"></a></h2>
<dl class="option">
<dt id="cfg_TitleTable">
<code class="descname">$cfg['TitleTable']</code><a class="headerlink" href="#cfg_TitleTable" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'&#64;HTTP_HOST&#64;</span> <span class="pre">/</span> <span class="pre">&#64;VSERVER&#64;</span> <span class="pre">/</span> <span class="pre">&#64;DATABASE&#64;</span> <span class="pre">/</span> <span class="pre">&#64;TABLE&#64;</span> <span class="pre">|</span> <span class="pre">&#64;PHPMYADMIN&#64;'</span></code></td>
</tr>
</tbody>
</table>
</dd></dl>

<dl class="option">
<dt id="cfg_TitleDatabase">
<code class="descname">$cfg['TitleDatabase']</code><a class="headerlink" href="#cfg_TitleDatabase" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'&#64;HTTP_HOST&#64;</span> <span class="pre">/</span> <span class="pre">&#64;VSERVER&#64;</span> <span class="pre">/</span> <span class="pre">&#64;DATABASE&#64;</span> <span class="pre">|</span> <span class="pre">&#64;PHPMYADMIN&#64;'</span></code></td>
</tr>
</tbody>
</table>
</dd></dl>

<dl class="option">
<dt id="cfg_TitleServer">
<code class="descname">$cfg['TitleServer']</code><a class="headerlink" href="#cfg_TitleServer" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'&#64;HTTP_HOST&#64;</span> <span class="pre">/</span> <span class="pre">&#64;VSERVER&#64;</span> <span class="pre">|</span> <span class="pre">&#64;PHPMYADMIN&#64;'</span></code></td>
</tr>
</tbody>
</table>
</dd></dl>

<dl class="option">
<dt id="cfg_TitleDefault">
<code class="descname">$cfg['TitleDefault']</code><a class="headerlink" href="#cfg_TitleDefault" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'&#64;HTTP_HOST&#64;</span> <span class="pre">|</span> <span class="pre">&#64;PHPMYADMIN&#64;'</span></code></td>
</tr>
</tbody>
</table>
<p>Allows you to specify window&#8217;s title bar. You can use <a class="reference internal" href="faq.html#faq6-27"><span class="std std-ref">6.27 What format strings can I use?</span></a>.</p>
</dd></dl>

</div>
<div class="section" id="theme-manager-settings">
<h2>Theme manager settings<a class="headerlink" href="#theme-manager-settings" title="Permalink to this headline"></a></h2>
<dl class="option">
<dt id="cfg_ThemeManager">
<code class="descname">$cfg['ThemeManager']</code><a class="headerlink" href="#cfg_ThemeManager" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Enables user-selectable themes. See <a class="reference internal" href="faq.html#faqthemes"><span class="std std-ref">2.7 Using and creating themes</span></a>.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_ThemeDefault">
<code class="descname">$cfg['ThemeDefault']</code><a class="headerlink" href="#cfg_ThemeDefault" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'pmahomme'</span></code></td>
</tr>
</tbody>
</table>
<p>The default theme (a subdirectory under <code class="file docutils literal"><span class="pre">./themes/</span></code>).</p>
</dd></dl>

<dl class="option">
<dt id="cfg_ThemePerServer">
<code class="descname">$cfg['ThemePerServer']</code><a class="headerlink" href="#cfg_ThemePerServer" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<p>Whether to allow different theme for each server.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_FontSize">
<code class="descname">$cfg['FontSize']</code><a class="headerlink" href="#cfg_FontSize" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">&#8216;82%&#8217;</td>
</tr>
</tbody>
</table>
<p>Font size to use, is applied in CSS.</p>
</dd></dl>

</div>
<div class="section" id="default-queries">
<h2>Default queries<a class="headerlink" href="#default-queries" title="Permalink to this headline"></a></h2>
<dl class="option">
<dt id="cfg_DefaultQueryTable">
<code class="descname">$cfg['DefaultQueryTable']</code><a class="headerlink" href="#cfg_DefaultQueryTable" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">'SELECT</span> <span class="pre">*</span> <span class="pre">FROM</span> <span class="pre">&#64;TABLE&#64;</span> <span class="pre">WHERE</span> <span class="pre">1'</span></code></td>
</tr>
</tbody>
</table>
</dd></dl>

<dl class="option">
<dt id="cfg_DefaultQueryDatabase">
<code class="descname">$cfg['DefaultQueryDatabase']</code><a class="headerlink" href="#cfg_DefaultQueryDatabase" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body"><code class="docutils literal"><span class="pre">''</span></code></td>
</tr>
</tbody>
</table>
<p>Default queries that will be displayed in query boxes when user didn&#8217;t
specify any. You can use standard <a class="reference internal" href="faq.html#faq6-27"><span class="std std-ref">6.27 What format strings can I use?</span></a>.</p>
</dd></dl>

</div>
<div class="section" id="mysql-settings">
<h2>MySQL settings<a class="headerlink" href="#mysql-settings" title="Permalink to this headline"></a></h2>
<dl class="option">
<dt id="cfg_DefaultFunctions">
<code class="descname">$cfg['DefaultFunctions']</code><a class="headerlink" href="#cfg_DefaultFunctions" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">array</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">array(...)</td>
</tr>
</tbody>
</table>
<p>Functions selected by default when inserting/changing row, Functions
are defined for meta types as (FUNC_NUMBER, FUNC_DATE, FUNC_CHAR,
FUNC_SPATIAL, FUNC_UUID) and for <code class="docutils literal"><span class="pre">first_timestamp</span></code>, which is used
for first timestamp column in table.</p>
</dd></dl>

</div>
<div class="section" id="default-options-for-transformations">
<h2>Default options for Transformations<a class="headerlink" href="#default-options-for-transformations" title="Permalink to this headline"></a></h2>
<dl class="option">
<dt id="cfg_DefaultTransformations">
<code class="descname">$cfg['DefaultTransformations']</code><a class="headerlink" href="#cfg_DefaultTransformations" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">array</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">An array with below listed key-values</td>
</tr>
</tbody>
</table>
</dd></dl>

<dl class="option">
<dt id="cfg_DefaultTransformations_Substring">
<code class="descname">$cfg['DefaultTransformations']['Substring']</code><a class="headerlink" href="#cfg_DefaultTransformations_Substring" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">array</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">array(0, &#8216;all&#8217;, &#8216;&#8217;)</td>
</tr>
</tbody>
</table>
</dd></dl>

<dl class="option">
<dt id="cfg_DefaultTransformations_Bool2Text">
<code class="descname">$cfg['DefaultTransformations']['Bool2Text']</code><a class="headerlink" href="#cfg_DefaultTransformations_Bool2Text" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">array</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">array(&#8216;T&#8217;, &#8216;F&#8217;)</td>
</tr>
</tbody>
</table>
</dd></dl>

<dl class="option">
<dt id="cfg_DefaultTransformations_External">
<code class="descname">$cfg['DefaultTransformations']['External']</code><a class="headerlink" href="#cfg_DefaultTransformations_External" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">array</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">array(0, &#8216;-f /dev/null -i -wrap -q&#8217;, 1, 1)</td>
</tr>
</tbody>
</table>
</dd></dl>

<dl class="option">
<dt id="cfg_DefaultTransformations_PreApPend">
<code class="descname">$cfg['DefaultTransformations']['PreApPend']</code><a class="headerlink" href="#cfg_DefaultTransformations_PreApPend" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">array</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">array(&#8216;&#8217;, &#8216;&#8217;)</td>
</tr>
</tbody>
</table>
</dd></dl>

<dl class="option">
<dt id="cfg_DefaultTransformations_Hex">
<code class="descname">$cfg['DefaultTransformations']['Hex']</code><a class="headerlink" href="#cfg_DefaultTransformations_Hex" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">array</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">array(&#8216;2&#8217;)</td>
</tr>
</tbody>
</table>
</dd></dl>

<dl class="option">
<dt id="cfg_DefaultTransformations_DateFormat">
<code class="descname">$cfg['DefaultTransformations']['DateFormat']</code><a class="headerlink" href="#cfg_DefaultTransformations_DateFormat" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">array</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">array(0, &#8216;&#8217;, &#8216;local&#8217;)</td>
</tr>
</tbody>
</table>
</dd></dl>

<dl class="option">
<dt id="cfg_DefaultTransformations_Inline">
<code class="descname">$cfg['DefaultTransformations']['Inline']</code><a class="headerlink" href="#cfg_DefaultTransformations_Inline" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">array</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">array(&#8216;100&#8217;, 100)</td>
</tr>
</tbody>
</table>
</dd></dl>

<dl class="option">
<dt id="cfg_DefaultTransformations_TextImageLink">
<code class="descname">$cfg['DefaultTransformations']['TextImageLink']</code><a class="headerlink" href="#cfg_DefaultTransformations_TextImageLink" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">array</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">array(&#8216;&#8217;, 100, 50)</td>
</tr>
</tbody>
</table>
</dd></dl>

<dl class="option">
<dt id="cfg_DefaultTransformations_TextLink">
<code class="descname">$cfg['DefaultTransformations']['TextLink']</code><a class="headerlink" href="#cfg_DefaultTransformations_TextLink" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">array</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">array(&#8216;&#8217;, &#8216;&#8217;, &#8216;&#8217;)</td>
</tr>
</tbody>
</table>
</dd></dl>

</div>
<div class="section" id="console-settings">
<h2>Console settings<a class="headerlink" href="#console-settings" title="Permalink to this headline"></a></h2>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">These settings are mostly meant to be changed by user.</p>
</div>
<dl class="option">
<dt id="cfg_Console_StartHistory">
<code class="descname">$cfg['Console']['StartHistory']</code><a class="headerlink" href="#cfg_Console_StartHistory" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<p>Show query history at start</p>
</dd></dl>

<dl class="option">
<dt id="cfg_Console_AlwaysExpand">
<code class="descname">$cfg['Console']['AlwaysExpand']</code><a class="headerlink" href="#cfg_Console_AlwaysExpand" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<p>Always expand query messages</p>
</dd></dl>

<dl class="option">
<dt id="cfg_Console_CurrentQuery">
<code class="descname">$cfg['Console']['CurrentQuery']</code><a class="headerlink" href="#cfg_Console_CurrentQuery" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">true</td>
</tr>
</tbody>
</table>
<p>Show current browsing query</p>
</dd></dl>

<dl class="option">
<dt id="cfg_Console_EnterExecutes">
<code class="descname">$cfg['Console']['EnterExecutes']</code><a class="headerlink" href="#cfg_Console_EnterExecutes" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<p>Execute queries on Enter and insert new line with Shift + Enter</p>
</dd></dl>

<dl class="option">
<dt id="cfg_Console_DarkTheme">
<code class="descname">$cfg['Console']['DarkTheme']</code><a class="headerlink" href="#cfg_Console_DarkTheme" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<p>Switch to dark theme</p>
</dd></dl>

<dl class="option">
<dt id="cfg_Console_Mode">
<code class="descname">$cfg['Console']['Mode']</code><a class="headerlink" href="#cfg_Console_Mode" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">string</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">&#8216;info&#8217;</td>
</tr>
</tbody>
</table>
<p>Console mode</p>
</dd></dl>

<dl class="option">
<dt id="cfg_Console_Height">
<code class="descname">$cfg['Console']['Height']</code><a class="headerlink" href="#cfg_Console_Height" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">integer</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">92</td>
</tr>
</tbody>
</table>
<p>Console height</p>
</dd></dl>

</div>
<div class="section" id="developer">
<h2>Developer<a class="headerlink" href="#developer" title="Permalink to this headline"></a></h2>
<div class="admonition warning">
<p class="first admonition-title">Warning</p>
<p class="last">These settings might have huge effect on performance or security.</p>
</div>
<dl class="option">
<dt id="cfg_DBG">
<code class="descname">$cfg['DBG']</code><a class="headerlink" href="#cfg_DBG" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">array</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">array(...)</td>
</tr>
</tbody>
</table>
</dd></dl>

<dl class="option">
<dt id="cfg_DBG_sql">
<code class="descname">$cfg['DBG']['sql']</code><a class="headerlink" href="#cfg_DBG_sql" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<p>Enable logging queries and execution times to be
displayed in the console&#8217;s Debug SQL tab.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_DBG_sqllog">
<code class="descname">$cfg['DBG']['sqllog']</code><a class="headerlink" href="#cfg_DBG_sqllog" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<p>Enable logging of queries and execution times to the syslog.
Requires <span class="target" id="index-152"></span><a class="reference internal" href="#cfg_DBG_sql"><code class="xref config config-option docutils literal"><span class="pre">$cfg['DBG']['sql']</span></code></a> to be enabled.</p>
</dd></dl>

<dl class="option">
<dt id="cfg_DBG_demo">
<code class="descname">$cfg['DBG']['demo']</code><a class="headerlink" href="#cfg_DBG_demo" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<p>Enable to let server present itself as demo server.
This is used for <a class="reference external" href="https://www.phpmyadmin.net/try/">phpMyAdmin demo server</a>.</p>
<p>It currently changes following behavior:</p>
<ul class="simple">
<li>There is welcome message on the main page.</li>
<li>There is footer information about demo server and used git revision.</li>
<li>The setup script is enabled even with existing configuration.</li>
<li>The setup does not try to connect to the MySQL server.</li>
</ul>
</dd></dl>

<dl class="option">
<dt id="cfg_DBG_simple2fa">
<code class="descname">$cfg['DBG']['simple2fa']</code><a class="headerlink" href="#cfg_DBG_simple2fa" title="Permalink to this definition"></a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Type:</th><td class="field-body">boolean</td>
</tr>
<tr class="field-even field"><th class="field-name">Default value:</th><td class="field-body">false</td>
</tr>
</tbody>
</table>
<p>Can be used for testing two-factor authentication using <a class="reference internal" href="two_factor.html#simple2fa"><span class="std std-ref">Simple two-factor authentication</span></a>.</p>
</dd></dl>

</div>
<div class="section" id="examples">
<span id="config-examples"></span><h2>Examples<a class="headerlink" href="#examples" title="Permalink to this headline"></a></h2>
<p>See following configuration snippets for typical setups of phpMyAdmin.</p>
<div class="section" id="basic-example">
<h3>Basic example<a class="headerlink" href="#basic-example" title="Permalink to this headline"></a></h3>
<p>Example configuration file, which can be copied to <code class="file docutils literal"><span class="pre">config.inc.php</span></code> to
get some core configuration layout; it is distributed with phpMyAdmin as
<code class="file docutils literal"><span class="pre">config.sample.inc.php</span></code>. Please note that it does not contain all
configuration options, only the most frequently used ones.</p>
<div class="highlight-php"><div class="highlight"><pre><span></span><span class="o">&lt;?</span><span class="nx">php</span>
<span class="cm">/* vim: set expandtab sw=4 ts=4 sts=4: */</span>
<span class="sd">/**</span>
<span class="sd"> * phpMyAdmin sample configuration, you can use it as base for</span>
<span class="sd"> * manual configuration. For easier setup you can use setup/</span>
<span class="sd"> *</span>
<span class="sd"> * All directives are explained in documentation in the doc/ folder</span>
<span class="sd"> * or at &lt;https://docs.phpmyadmin.net/&gt;.</span>
<span class="sd"> *</span>
<span class="sd"> * @package PhpMyAdmin</span>
<span class="sd"> */</span>

<span class="sd">/**</span>
<span class="sd"> * This is needed for cookie based authentication to encrypt password in</span>
<span class="sd"> * cookie. Needs to be 32 chars long.</span>
<span class="sd"> */</span>
<span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;blowfish_secret&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="s1">&#39;&#39;</span><span class="p">;</span> <span class="cm">/* YOU MUST FILL IN THIS FOR COOKIE AUTH! */</span>

<span class="sd">/**</span>
<span class="sd"> * Servers configuration</span>
<span class="sd"> */</span>
<span class="nv">$i</span> <span class="o">=</span> <span class="mi">0</span><span class="p">;</span>

<span class="sd">/**</span>
<span class="sd"> * First server</span>
<span class="sd"> */</span>
<span class="nv">$i</span><span class="o">++</span><span class="p">;</span>
<span class="cm">/* Authentication type */</span>
<span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;Servers&#39;</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">&#39;auth_type&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="s1">&#39;cookie&#39;</span><span class="p">;</span>
<span class="cm">/* Server parameters */</span>
<span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;Servers&#39;</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">&#39;host&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="s1">&#39;localhost&#39;</span><span class="p">;</span>
<span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;Servers&#39;</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">&#39;compress&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="k">false</span><span class="p">;</span>
<span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;Servers&#39;</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">&#39;AllowNoPassword&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="k">false</span><span class="p">;</span>

<span class="sd">/**</span>
<span class="sd"> * phpMyAdmin configuration storage settings.</span>
<span class="sd"> */</span>

<span class="cm">/* User used to manipulate with storage */</span>
<span class="c1">// $cfg[&#39;Servers&#39;][$i][&#39;controlhost&#39;] = &#39;&#39;;</span>
<span class="c1">// $cfg[&#39;Servers&#39;][$i][&#39;controlport&#39;] = &#39;&#39;;</span>
<span class="c1">// $cfg[&#39;Servers&#39;][$i][&#39;controluser&#39;] = &#39;pma&#39;;</span>
<span class="c1">// $cfg[&#39;Servers&#39;][$i][&#39;controlpass&#39;] = &#39;pmapass&#39;;</span>

<span class="cm">/* Storage database and tables */</span>
<span class="c1">// $cfg[&#39;Servers&#39;][$i][&#39;pmadb&#39;] = &#39;phpmyadmin&#39;;</span>
<span class="c1">// $cfg[&#39;Servers&#39;][$i][&#39;bookmarktable&#39;] = &#39;pma__bookmark&#39;;</span>
<span class="c1">// $cfg[&#39;Servers&#39;][$i][&#39;relation&#39;] = &#39;pma__relation&#39;;</span>
<span class="c1">// $cfg[&#39;Servers&#39;][$i][&#39;table_info&#39;] = &#39;pma__table_info&#39;;</span>
<span class="c1">// $cfg[&#39;Servers&#39;][$i][&#39;table_coords&#39;] = &#39;pma__table_coords&#39;;</span>
<span class="c1">// $cfg[&#39;Servers&#39;][$i][&#39;pdf_pages&#39;] = &#39;pma__pdf_pages&#39;;</span>
<span class="c1">// $cfg[&#39;Servers&#39;][$i][&#39;column_info&#39;] = &#39;pma__column_info&#39;;</span>
<span class="c1">// $cfg[&#39;Servers&#39;][$i][&#39;history&#39;] = &#39;pma__history&#39;;</span>
<span class="c1">// $cfg[&#39;Servers&#39;][$i][&#39;table_uiprefs&#39;] = &#39;pma__table_uiprefs&#39;;</span>
<span class="c1">// $cfg[&#39;Servers&#39;][$i][&#39;tracking&#39;] = &#39;pma__tracking&#39;;</span>
<span class="c1">// $cfg[&#39;Servers&#39;][$i][&#39;userconfig&#39;] = &#39;pma__userconfig&#39;;</span>
<span class="c1">// $cfg[&#39;Servers&#39;][$i][&#39;recent&#39;] = &#39;pma__recent&#39;;</span>
<span class="c1">// $cfg[&#39;Servers&#39;][$i][&#39;favorite&#39;] = &#39;pma__favorite&#39;;</span>
<span class="c1">// $cfg[&#39;Servers&#39;][$i][&#39;users&#39;] = &#39;pma__users&#39;;</span>
<span class="c1">// $cfg[&#39;Servers&#39;][$i][&#39;usergroups&#39;] = &#39;pma__usergroups&#39;;</span>
<span class="c1">// $cfg[&#39;Servers&#39;][$i][&#39;navigationhiding&#39;] = &#39;pma__navigationhiding&#39;;</span>
<span class="c1">// $cfg[&#39;Servers&#39;][$i][&#39;savedsearches&#39;] = &#39;pma__savedsearches&#39;;</span>
<span class="c1">// $cfg[&#39;Servers&#39;][$i][&#39;central_columns&#39;] = &#39;pma__central_columns&#39;;</span>
<span class="c1">// $cfg[&#39;Servers&#39;][$i][&#39;designer_settings&#39;] = &#39;pma__designer_settings&#39;;</span>
<span class="c1">// $cfg[&#39;Servers&#39;][$i][&#39;export_templates&#39;] = &#39;pma__export_templates&#39;;</span>

<span class="sd">/**</span>
<span class="sd"> * End of servers configuration</span>
<span class="sd"> */</span>

<span class="sd">/**</span>
<span class="sd"> * Directories for saving/loading files from server</span>
<span class="sd"> */</span>
<span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;UploadDir&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="s1">&#39;&#39;</span><span class="p">;</span>
<span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;SaveDir&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="s1">&#39;&#39;</span><span class="p">;</span>

<span class="sd">/**</span>
<span class="sd"> * Whether to display icons or text or both icons and text in table row</span>
<span class="sd"> * action segment. Value can be either of &#39;icons&#39;, &#39;text&#39; or &#39;both&#39;.</span>
<span class="sd"> * default = &#39;both&#39;</span>
<span class="sd"> */</span>
<span class="c1">//$cfg[&#39;RowActionType&#39;] = &#39;icons&#39;;</span>

<span class="sd">/**</span>
<span class="sd"> * Defines whether a user should be displayed a &quot;show all (records)&quot;</span>
<span class="sd"> * button in browse mode or not.</span>
<span class="sd"> * default = false</span>
<span class="sd"> */</span>
<span class="c1">//$cfg[&#39;ShowAll&#39;] = true;</span>

<span class="sd">/**</span>
<span class="sd"> * Number of rows displayed when browsing a result set. If the result</span>
<span class="sd"> * set contains more rows, &quot;Previous&quot; and &quot;Next&quot;.</span>
<span class="sd"> * Possible values: 25, 50, 100, 250, 500</span>
<span class="sd"> * default = 25</span>
<span class="sd"> */</span>
<span class="c1">//$cfg[&#39;MaxRows&#39;] = 50;</span>

<span class="sd">/**</span>
<span class="sd"> * Disallow editing of binary fields</span>
<span class="sd"> * valid values are:</span>
<span class="sd"> *   false    allow editing</span>
<span class="sd"> *   &#39;blob&#39;   allow editing except for BLOB fields</span>
<span class="sd"> *   &#39;noblob&#39; disallow editing except for BLOB fields</span>
<span class="sd"> *   &#39;all&#39;    disallow editing</span>
<span class="sd"> * default = &#39;blob&#39;</span>
<span class="sd"> */</span>
<span class="c1">//$cfg[&#39;ProtectBinary&#39;] = false;</span>

<span class="sd">/**</span>
<span class="sd"> * Default language to use, if not browser-defined or user-defined</span>
<span class="sd"> * (you find all languages in the locale folder)</span>
<span class="sd"> * uncomment the desired line:</span>
<span class="sd"> * default = &#39;en&#39;</span>
<span class="sd"> */</span>
<span class="c1">//$cfg[&#39;DefaultLang&#39;] = &#39;en&#39;;</span>
<span class="c1">//$cfg[&#39;DefaultLang&#39;] = &#39;de&#39;;</span>

<span class="sd">/**</span>
<span class="sd"> * How many columns should be used for table display of a database?</span>
<span class="sd"> * (a value larger than 1 results in some information being hidden)</span>
<span class="sd"> * default = 1</span>
<span class="sd"> */</span>
<span class="c1">//$cfg[&#39;PropertiesNumColumns&#39;] = 2;</span>

<span class="sd">/**</span>
<span class="sd"> * Set to true if you want DB-based query history.If false, this utilizes</span>
<span class="sd"> * JS-routines to display query history (lost by window close)</span>
<span class="sd"> *</span>
<span class="sd"> * This requires configuration storage enabled, see above.</span>
<span class="sd"> * default = false</span>
<span class="sd"> */</span>
<span class="c1">//$cfg[&#39;QueryHistoryDB&#39;] = true;</span>

<span class="sd">/**</span>
<span class="sd"> * When using DB-based query history, how many entries should be kept?</span>
<span class="sd"> * default = 25</span>
<span class="sd"> */</span>
<span class="c1">//$cfg[&#39;QueryHistoryMax&#39;] = 100;</span>

<span class="sd">/**</span>
<span class="sd"> * Whether or not to query the user before sending the error report to</span>
<span class="sd"> * the phpMyAdmin team when a JavaScript error occurs</span>
<span class="sd"> *</span>
<span class="sd"> * Available options</span>
<span class="sd"> * (&#39;ask&#39; | &#39;always&#39; | &#39;never&#39;)</span>
<span class="sd"> * default = &#39;ask&#39;</span>
<span class="sd"> */</span>
<span class="c1">//$cfg[&#39;SendErrorReports&#39;] = &#39;always&#39;;</span>

<span class="sd">/**</span>
<span class="sd"> * You can find more configuration options in the documentation</span>
<span class="sd"> * in the doc/ folder or at &lt;https://docs.phpmyadmin.net/&gt;.</span>
<span class="sd"> */</span>
</pre></div>
</div>
<div class="admonition warning">
<p class="first admonition-title">Warning</p>
<p class="last">Don&#8217;t use the controluser &#8216;pma&#8217; if it does not yet exist and don&#8217;t use &#8216;pmapass&#8217;
as password.</p>
</div>
</div>
<div class="section" id="example-for-signon-authentication">
<span id="example-signon"></span><h3>Example for signon authentication<a class="headerlink" href="#example-for-signon-authentication" title="Permalink to this headline"></a></h3>
<p>This example uses <code class="file docutils literal"><span class="pre">examples/signon.php</span></code> to demonstrate usage of <a class="reference internal" href="setup.html#auth-signon"><span class="std std-ref">Signon authentication mode</span></a>:</p>
<div class="highlight-php"><div class="highlight"><pre><span></span><span class="o">&lt;?</span><span class="nx">php</span>
<span class="nv">$i</span> <span class="o">=</span> <span class="mi">0</span><span class="p">;</span>
<span class="nv">$i</span><span class="o">++</span><span class="p">;</span>
<span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;Servers&#39;</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">&#39;extension&#39;</span><span class="p">]</span>     <span class="o">=</span> <span class="s1">&#39;mysqli&#39;</span><span class="p">;</span>
<span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;Servers&#39;</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">&#39;auth_type&#39;</span><span class="p">]</span>     <span class="o">=</span> <span class="s1">&#39;signon&#39;</span><span class="p">;</span>
<span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;Servers&#39;</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">&#39;SignonSession&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="s1">&#39;SignonSession&#39;</span><span class="p">;</span>
<span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;Servers&#39;</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">&#39;SignonURL&#39;</span><span class="p">]</span>     <span class="o">=</span> <span class="s1">&#39;examples/signon.php&#39;</span><span class="p">;</span>
<span class="cp">?&gt;</span><span class="x">`</span>
</pre></div>
</div>
</div>
<div class="section" id="example-for-ip-address-limited-autologin">
<h3>Example for IP address limited autologin<a class="headerlink" href="#example-for-ip-address-limited-autologin" title="Permalink to this headline"></a></h3>
<p>If you want to automatically login when accessing phpMyAdmin locally while asking
for a password when accessing remotely, you can achieve it using following snippet:</p>
<div class="highlight-php"><div class="highlight"><pre><span></span><span class="k">if</span> <span class="p">(</span><span class="nv">$_SERVER</span><span class="p">[</span><span class="s2">&quot;REMOTE_ADDR&quot;</span><span class="p">]</span> <span class="o">==</span> <span class="s2">&quot;127.0.0.1&quot;</span><span class="p">)</span> <span class="p">{</span>
    <span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;Servers&#39;</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">&#39;auth_type&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="s1">&#39;config&#39;</span><span class="p">;</span>
    <span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;Servers&#39;</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">&#39;user&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="s1">&#39;root&#39;</span><span class="p">;</span>
    <span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;Servers&#39;</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">&#39;password&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="s1">&#39;yourpassword&#39;</span><span class="p">;</span>
<span class="p">}</span> <span class="k">else</span> <span class="p">{</span>
    <span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;Servers&#39;</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">&#39;auth_type&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="s1">&#39;cookie&#39;</span><span class="p">;</span>
<span class="p">}</span>
</pre></div>
</div>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">Filtering based on IP addresses isn&#8217;t reliable over the internet, use it
only for local address.</p>
</div>
</div>
<div class="section" id="example-for-using-multiple-mysql-servers">
<h3>Example for using multiple MySQL servers<a class="headerlink" href="#example-for-using-multiple-mysql-servers" title="Permalink to this headline"></a></h3>
<p>You can configure any number of servers using <span class="target" id="index-153"></span><a class="reference internal" href="#cfg_Servers"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers']</span></code></a>,
following example shows two of them:</p>
<div class="highlight-php"><div class="highlight"><pre><span></span><span class="o">&lt;?</span><span class="nx">php</span>
<span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;blowfish_secret&#39;</span><span class="p">]</span><span class="o">=</span><span class="s1">&#39;multiServerExample70518&#39;</span><span class="p">;</span>
<span class="c1">//any string of your choice</span>
<span class="nv">$i</span> <span class="o">=</span> <span class="mi">0</span><span class="p">;</span>

<span class="nv">$i</span><span class="o">++</span><span class="p">;</span> <span class="c1">// server 1 :</span>
<span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;Servers&#39;</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">&#39;auth_type&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="s1">&#39;cookie&#39;</span><span class="p">;</span>
<span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;Servers&#39;</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">&#39;verbose&#39;</span><span class="p">]</span>   <span class="o">=</span> <span class="s1">&#39;no1&#39;</span><span class="p">;</span>
<span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;Servers&#39;</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">&#39;host&#39;</span><span class="p">]</span>      <span class="o">=</span> <span class="s1">&#39;localhost&#39;</span><span class="p">;</span>
<span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;Servers&#39;</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">&#39;extension&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="s1">&#39;mysqli&#39;</span><span class="p">;</span>
<span class="c1">// more options for #1 ...</span>

<span class="nv">$i</span><span class="o">++</span><span class="p">;</span> <span class="c1">// server 2 :</span>
<span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;Servers&#39;</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">&#39;auth_type&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="s1">&#39;cookie&#39;</span><span class="p">;</span>
<span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;Servers&#39;</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">&#39;verbose&#39;</span><span class="p">]</span>   <span class="o">=</span> <span class="s1">&#39;no2&#39;</span><span class="p">;</span>
<span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;Servers&#39;</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">&#39;host&#39;</span><span class="p">]</span>      <span class="o">=</span> <span class="s1">&#39;remote.host.addr&#39;</span><span class="p">;</span><span class="c1">//or ip:&#39;10.9.8.1&#39;</span>
<span class="c1">// this server must allow remote clients, e.g., host 10.9.8.%</span>
<span class="c1">// not only in mysql.host but also in the startup configuration</span>
<span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;Servers&#39;</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">&#39;extension&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="s1">&#39;mysqli&#39;</span><span class="p">;</span>
<span class="c1">// more options for #2 ...</span>

<span class="c1">// end of server sections</span>
<span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;ServerDefault&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="mi">0</span><span class="p">;</span> <span class="c1">// to choose the server on startup</span>

<span class="c1">// further general options ...</span>
<span class="cp">?&gt;</span><span class="x"></span>
</pre></div>
</div>
</div>
<div class="section" id="google-cloud-sql-with-ssl">
<span id="example-google-ssl"></span><h3>Google Cloud SQL with SSL<a class="headerlink" href="#google-cloud-sql-with-ssl" title="Permalink to this headline"></a></h3>
<p>To connect to Google Could SQL, you currently need to disable certificate
verification. This is caused by the certficate being issued for CN matching
your instance name, but you connect to an IP address and PHP tries to match
these two. With verfication you end up with error message like:</p>
<div class="highlight-text"><div class="highlight"><pre><span></span>Peer certificate CN=`api-project-851612429544:pmatest&#39; did not match expected CN=`8.8.8.8&#39;
</pre></div>
</div>
<div class="admonition warning">
<p class="first admonition-title">Warning</p>
<p class="last">With disabled verification your traffic is encrypted, but you&#8217;re open to
man in the middle attacks.</p>
</div>
<p>To connect phpMyAdmin to Google Cloud SQL using SSL download the client and
server certificates and tell phpMyAdmin to use them:</p>
<div class="highlight-php"><div class="highlight"><pre><span></span><span class="c1">// IP address of your instance</span>
<span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;Servers&#39;</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">&#39;host&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="s1">&#39;8.8.8.8&#39;</span><span class="p">;</span>
<span class="c1">// Use SSL for connection</span>
<span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;Servers&#39;</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">&#39;ssl&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="k">true</span><span class="p">;</span>
<span class="c1">// Client secret key</span>
<span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;Servers&#39;</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">&#39;ssl_key&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="s1">&#39;../client-key.pem&#39;</span><span class="p">;</span>
<span class="c1">// Client certificate</span>
<span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;Servers&#39;</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">&#39;ssl_cert&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="s1">&#39;../client-cert.pem&#39;</span><span class="p">;</span>
<span class="c1">// Server certification authority</span>
<span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;Servers&#39;</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">&#39;ssl_ca&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="s1">&#39;../server-ca.pem&#39;</span><span class="p">;</span>
<span class="c1">// Disable SSL verification (see above note)</span>
<span class="nv">$cfg</span><span class="p">[</span><span class="s1">&#39;Servers&#39;</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">&#39;ssl_verify&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="k">false</span><span class="p">;</span>
</pre></div>
</div>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last"><a class="reference internal" href="setup.html#ssl"><span class="std std-ref">Using SSL for connection to database server</span></a>,
<span class="target" id="index-154"></span><a class="reference internal" href="#cfg_Servers_ssl"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl']</span></code></a>,
<span class="target" id="index-155"></span><a class="reference internal" href="#cfg_Servers_ssl_key"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_key']</span></code></a>,
<span class="target" id="index-156"></span><a class="reference internal" href="#cfg_Servers_ssl_cert"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_cert']</span></code></a>,
<span class="target" id="index-157"></span><a class="reference internal" href="#cfg_Servers_ssl_ca"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_ca']</span></code></a>,
<span class="target" id="index-158"></span><a class="reference internal" href="#cfg_Servers_ssl_verify"><code class="xref config config-option docutils literal"><span class="pre">$cfg['Servers'][$i]['ssl_verify']</span></code></a>,
&lt;<a class="reference external" href="https://bugs.php.net/bug.php?id=72048">https://bugs.php.net/bug.php?id=72048</a>&gt;</p>
</div>
</div>
</div>
</div>


          </div>
        </div>
      </div>
      <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
        <div class="sphinxsidebarwrapper">
  <h3><a href="index.html">Table Of Contents</a></h3>
  <ul>
<li><a class="reference internal" href="#">Configuration</a><ul>
<li><a class="reference internal" href="#basic-settings">Basic settings</a></li>
<li><a class="reference internal" href="#server-connection-settings">Server connection settings</a></li>
<li><a class="reference internal" href="#generic-settings">Generic settings</a></li>
<li><a class="reference internal" href="#cookie-authentication-options">Cookie authentication options</a></li>
<li><a class="reference internal" href="#navigation-panel-setup">Navigation panel setup</a></li>
<li><a class="reference internal" href="#main-panel">Main panel</a></li>
<li><a class="reference internal" href="#database-structure">Database structure</a></li>
<li><a class="reference internal" href="#browse-mode">Browse mode</a></li>
<li><a class="reference internal" href="#editing-mode">Editing mode</a></li>
<li><a class="reference internal" href="#export-and-import-settings">Export and import settings</a></li>
<li><a class="reference internal" href="#tabs-display-settings">Tabs display settings</a></li>
<li><a class="reference internal" href="#pdf-options">PDF Options</a></li>
<li><a class="reference internal" href="#languages">Languages</a></li>
<li><a class="reference internal" href="#web-server-settings">Web server settings</a></li>
<li><a class="reference internal" href="#theme-settings">Theme settings</a></li>
<li><a class="reference internal" href="#design-customization">Design customization</a></li>
<li><a class="reference internal" href="#text-fields">Text fields</a></li>
<li><a class="reference internal" href="#sql-query-box-settings">SQL query box settings</a></li>
<li><a class="reference internal" href="#web-server-upload-save-import-directories">Web server upload/save/import directories</a></li>
<li><a class="reference internal" href="#various-display-setting">Various display setting</a></li>
<li><a class="reference internal" href="#page-titles">Page titles</a></li>
<li><a class="reference internal" href="#theme-manager-settings">Theme manager settings</a></li>
<li><a class="reference internal" href="#default-queries">Default queries</a></li>
<li><a class="reference internal" href="#mysql-settings">MySQL settings</a></li>
<li><a class="reference internal" href="#default-options-for-transformations">Default options for Transformations</a></li>
<li><a class="reference internal" href="#console-settings">Console settings</a></li>
<li><a class="reference internal" href="#developer">Developer</a></li>
<li><a class="reference internal" href="#examples">Examples</a><ul>
<li><a class="reference internal" href="#basic-example">Basic example</a></li>
<li><a class="reference internal" href="#example-for-signon-authentication">Example for signon authentication</a></li>
<li><a class="reference internal" href="#example-for-ip-address-limited-autologin">Example for IP address limited autologin</a></li>
<li><a class="reference internal" href="#example-for-using-multiple-mysql-servers">Example for using multiple MySQL servers</a></li>
<li><a class="reference internal" href="#google-cloud-sql-with-ssl">Google Cloud SQL with SSL</a></li>
</ul>
</li>
</ul>
</li>
</ul>

  <h4>Previous topic</h4>
  <p class="topless"><a href="setup.html"
                        title="previous chapter">Installation</a></p>
  <h4>Next topic</h4>
  <p class="topless"><a href="user.html"
                        title="next chapter">User Guide</a></p>
  <div role="note" aria-label="source link">
    <h3>This Page</h3>
    <ul class="this-page-menu">
      <li><a href="_sources/config.txt"
            rel="nofollow">Show Source</a></li>
    </ul>
   </div>
<div id="searchbox" style="display: none" role="search">
  <h3>Quick search</h3>
    <form class="search" action="search.html" method="get">
      <div><input type="text" name="q" /></div>
      <div><input type="submit" value="Go" /></div>
      <input type="hidden" name="check_keywords" value="yes" />
      <input type="hidden" name="area" value="default" />
    </form>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
        </div>
      </div>
      <div class="clearer"></div>
    </div>
    <div class="related" role="navigation" aria-label="related navigation">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="genindex.html" title="General Index"
             >index</a></li>
        <li class="right" >
          <a href="user.html" title="User Guide"
             >next</a> |</li>
        <li class="right" >
          <a href="setup.html" title="Installation"
             >previous</a> |</li>
        <li class="nav-item nav-item-0"><a href="index.html">phpMyAdmin 4.8.5 documentation</a> &#187;</li> 
      </ul>
    </div>
    <div class="footer" role="contentinfo">
        &#169; <a href="copyright.html">Copyright</a> 2012 - 2018, The phpMyAdmin devel team.
      Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.4.9.
    </div>
  </body>
</html>