genindex.html 119 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. <title>Index &mdash; phpMyAdmin 4.2.7.1 documentation</title>
  7. <link rel="stylesheet" href="_static/default.css" type="text/css" />
  8. <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
  9. <script type="text/javascript">
  10. var DOCUMENTATION_OPTIONS = {
  11. URL_ROOT: '',
  12. VERSION: '4.2.7.1',
  13. COLLAPSE_INDEX: false,
  14. FILE_SUFFIX: '.html',
  15. HAS_SOURCE: true
  16. };
  17. </script>
  18. <script type="text/javascript" src="_static/jquery.js"></script>
  19. <script type="text/javascript" src="_static/underscore.js"></script>
  20. <script type="text/javascript" src="_static/doctools.js"></script>
  21. <link rel="copyright" title="Copyright" href="copyright.html" />
  22. <link rel="top" title="phpMyAdmin 4.2.7.1 documentation" href="index.html" />
  23. </head>
  24. <body>
  25. <div class="related">
  26. <h3>Navigation</h3>
  27. <ul>
  28. <li class="right" style="margin-right: 10px">
  29. <a href="#" title="General Index"
  30. accesskey="I">index</a></li>
  31. <li><a href="index.html">phpMyAdmin 4.2.7.1 documentation</a> &raquo;</li>
  32. </ul>
  33. </div>
  34. <div class="document">
  35. <div class="documentwrapper">
  36. <div class="bodywrapper">
  37. <div class="body">
  38. <h1 id="index">Index</h1>
  39. <div class="genindex-jumpbox">
  40. <a href="#Symbols"><strong>Symbols</strong></a>
  41. | <a href="#A"><strong>A</strong></a>
  42. | <a href="#B"><strong>B</strong></a>
  43. | <a href="#C"><strong>C</strong></a>
  44. | <a href="#D"><strong>D</strong></a>
  45. | <a href="#E"><strong>E</strong></a>
  46. | <a href="#F"><strong>F</strong></a>
  47. | <a href="#G"><strong>G</strong></a>
  48. | <a href="#H"><strong>H</strong></a>
  49. | <a href="#I"><strong>I</strong></a>
  50. | <a href="#J"><strong>J</strong></a>
  51. | <a href="#K"><strong>K</strong></a>
  52. | <a href="#L"><strong>L</strong></a>
  53. | <a href="#M"><strong>M</strong></a>
  54. | <a href="#N"><strong>N</strong></a>
  55. | <a href="#O"><strong>O</strong></a>
  56. | <a href="#P"><strong>P</strong></a>
  57. | <a href="#Q"><strong>Q</strong></a>
  58. | <a href="#R"><strong>R</strong></a>
  59. | <a href="#S"><strong>S</strong></a>
  60. | <a href="#T"><strong>T</strong></a>
  61. | <a href="#U"><strong>U</strong></a>
  62. | <a href="#V"><strong>V</strong></a>
  63. | <a href="#W"><strong>W</strong></a>
  64. | <a href="#X"><strong>X</strong></a>
  65. | <a href="#Z"><strong>Z</strong></a>
  66. </div>
  67. <h2 id="Symbols">Symbols</h2>
  68. <table style="width: 100%" class="indextable genindextable"><tr>
  69. <td style="width: 33%" valign="top"><dl>
  70. <dt><a href="config.html#cfg_ActionLinksMode"><strong>$cfg[&#39;ActionLinksMode&#39;]</strong></a>
  71. </dt>
  72. <dt><a href="setup.html#index-9"><strong>$cfg[&#39;AllowArbitraryServer&#39;]</strong></a>, <a href="config.html#index-10"><strong>[1]</strong></a>, <a href="config.html#cfg_AllowArbitraryServer"><strong>[2]</strong></a>
  73. </dt>
  74. <dt><a href="config.html#cfg_AllowThirdPartyFraming"><strong>$cfg[&#39;AllowThirdPartyFraming&#39;]</strong></a>
  75. </dt>
  76. <dt><a href="config.html#cfg_AllowUserDropDatabase"><strong>$cfg[&#39;AllowUserDropDatabase&#39;]</strong></a>
  77. </dt>
  78. <dt><a href="config.html#cfg_AvailableCharsets"><strong>$cfg[&#39;AvailableCharsets&#39;]</strong></a>
  79. </dt>
  80. <dt><a href="config.html#cfg_BgOne"><strong>$cfg[&#39;BgOne&#39;]</strong></a>
  81. </dt>
  82. <dt><a href="config.html#cfg_BgTwo"><strong>$cfg[&#39;BgTwo&#39;]</strong></a>
  83. </dt>
  84. <dt><a href="config.html#cfg_blowfish_secret"><strong>$cfg[&#39;blowfish_secret&#39;]</strong></a>, <a href="config.html#index-66"><strong>[1]</strong></a>
  85. </dt>
  86. <dt><a href="config.html#cfg_Border"><strong>$cfg[&#39;Border&#39;]</strong></a>
  87. </dt>
  88. <dt><a href="config.html#cfg_BrowseMarkerBackground"><strong>$cfg[&#39;BrowseMarkerBackground&#39;]</strong></a>
  89. </dt>
  90. <dt><a href="config.html#cfg_BrowseMarkerColor"><strong>$cfg[&#39;BrowseMarkerColor&#39;]</strong></a>
  91. </dt>
  92. <dt><a href="config.html#cfg_BrowseMarkerEnable"><strong>$cfg[&#39;BrowseMarkerEnable&#39;]</strong></a>
  93. </dt>
  94. <dt><a href="config.html#cfg_BrowseMIME"><strong>$cfg[&#39;BrowseMIME&#39;]</strong></a>
  95. </dt>
  96. <dt><a href="config.html#cfg_BrowsePointerBackground"><strong>$cfg[&#39;BrowsePointerBackground&#39;]</strong></a>
  97. </dt>
  98. <dt><a href="config.html#cfg_BrowsePointerColor"><strong>$cfg[&#39;BrowsePointerColor&#39;]</strong></a>
  99. </dt>
  100. <dt><a href="config.html#cfg_BrowsePointerEnable"><strong>$cfg[&#39;BrowsePointerEnable&#39;]</strong></a>
  101. </dt>
  102. <dt><a href="config.html#cfg_BZipDump"><strong>$cfg[&#39;BZipDump&#39;]</strong></a>
  103. </dt>
  104. <dt><a href="setup.html#index-24"><strong>$cfg[&#39;CaptchaLoginPrivateKey&#39;]</strong></a>, <a href="config.html#cfg_CaptchaLoginPrivateKey"><strong>[1]</strong></a>
  105. </dt>
  106. <dt><a href="setup.html#index-23"><strong>$cfg[&#39;CaptchaLoginPublicKey&#39;]</strong></a>, <a href="config.html#cfg_CaptchaLoginPublicKey"><strong>[1]</strong></a>
  107. </dt>
  108. <dt><a href="config.html#cfg_CharEditing"><strong>$cfg[&#39;CharEditing&#39;]</strong></a>, <a href="config.html#index-76"><strong>[1]</strong></a>
  109. </dt>
  110. <dt><a href="config.html#cfg_CharTextareaCols"><strong>$cfg[&#39;CharTextareaCols&#39;]</strong></a>
  111. </dt>
  112. <dt><a href="config.html#cfg_CharTextareaRows"><strong>$cfg[&#39;CharTextareaRows&#39;]</strong></a>
  113. </dt>
  114. <dt><a href="config.html#cfg_CheckConfigurationPermissions"><strong>$cfg[&#39;CheckConfigurationPermissions&#39;]</strong></a>
  115. </dt>
  116. <dt><a href="config.html#cfg_CodemirrorEnable"><strong>$cfg[&#39;CodemirrorEnable&#39;]</strong></a>
  117. </dt>
  118. <dt><a href="faq.html#index-17"><strong>$cfg[&#39;CompressOnFly&#39;]</strong></a>, <a href="config.html#cfg_CompressOnFly"><strong>[1]</strong></a>
  119. </dt>
  120. <dt><a href="config.html#cfg_Confirm"><strong>$cfg[&#39;Confirm&#39;]</strong></a>
  121. </dt>
  122. <dt><a href="config.html#cfg_CSPAllow"><strong>$cfg[&#39;CSPAllow&#39;]</strong></a>
  123. </dt>
  124. <dt><a href="config.html#cfg_DBG"><strong>$cfg[&#39;DBG&#39;]</strong></a>
  125. </dt>
  126. <dt><a href="config.html#cfg_DBG_demo"><strong>$cfg[&#39;DBG&#39;][&#39;demo&#39;]</strong></a>
  127. </dt>
  128. <dt><a href="config.html#cfg_DBG_sql"><strong>$cfg[&#39;DBG&#39;][&#39;sql&#39;]</strong></a>
  129. </dt>
  130. <dt><a href="config.html#cfg_DefaultConnectionCollation"><strong>$cfg[&#39;DefaultConnectionCollation&#39;]</strong></a>
  131. </dt>
  132. <dt><a href="config.html#cfg_DefaultDisplay"><strong>$cfg[&#39;DefaultDisplay&#39;]</strong></a>
  133. </dt>
  134. <dt><a href="config.html#cfg_DefaultFunctions"><strong>$cfg[&#39;DefaultFunctions&#39;]</strong></a>
  135. </dt>
  136. <dt><a href="config.html#cfg_DefaultLang"><strong>$cfg[&#39;DefaultLang&#39;]</strong></a>
  137. </dt>
  138. <dt><a href="config.html#cfg_DefaultQueryDatabase"><strong>$cfg[&#39;DefaultQueryDatabase&#39;]</strong></a>
  139. </dt>
  140. <dt><a href="config.html#cfg_DefaultQueryTable"><strong>$cfg[&#39;DefaultQueryTable&#39;]</strong></a>
  141. </dt>
  142. <dt><a href="config.html#cfg_DefaultTabDatabase"><strong>$cfg[&#39;DefaultTabDatabase&#39;]</strong></a>
  143. </dt>
  144. <dt><a href="config.html#cfg_DefaultTabServer"><strong>$cfg[&#39;DefaultTabServer&#39;]</strong></a>
  145. </dt>
  146. <dt><a href="config.html#cfg_DefaultTabTable"><strong>$cfg[&#39;DefaultTabTable&#39;]</strong></a>
  147. </dt>
  148. <dt><a href="config.html#cfg_DisableMultiTableMaintenance"><strong>$cfg[&#39;DisableMultiTableMaintenance&#39;]</strong></a>
  149. </dt>
  150. <dt><a href="config.html#cfg_DisplayBinaryAsHex"><strong>$cfg[&#39;DisplayBinaryAsHex&#39;]</strong></a>
  151. </dt>
  152. <dt><a href="config.html#cfg_DisplayServersList"><strong>$cfg[&#39;DisplayServersList&#39;]</strong></a>
  153. </dt>
  154. <dt><a href="config.html#cfg_EditInWindow"><strong>$cfg[&#39;EditInWindow&#39;]</strong></a>, <a href="config.html#index-79"><strong>[1]</strong></a>
  155. </dt>
  156. <dt><a href="config.html#cfg_Error_Handler_display"><strong>$cfg[&#39;Error_Handler&#39;][&#39;display&#39;]</strong></a>
  157. </dt>
  158. <dt><a href="faq.html#index-25"><strong>$cfg[&#39;ExecTimeLimit&#39;]</strong></a>, <a href="config.html#cfg_ExecTimeLimit"><strong>[1]</strong></a>
  159. </dt>
  160. <dt><a href="config.html#cfg_Export"><strong>$cfg[&#39;Export&#39;]</strong></a>
  161. </dt>
  162. <dt><a href="config.html#index-72"><strong>$cfg[&#39;Export&#39;][&#39;charset&#39;]</strong></a>
  163. </dt>
  164. <dt><a href="config.html#cfg_Export_method"><strong>$cfg[&#39;Export&#39;][&#39;method&#39;]</strong></a>
  165. </dt>
  166. <dt><a href="config.html#cfg_FilterLanguages"><strong>$cfg[&#39;FilterLanguages&#39;]</strong></a>
  167. </dt>
  168. <dt><a href="config.html#cfg_FirstLevelNavigationItems"><strong>$cfg[&#39;FirstLevelNavigationItems&#39;]</strong></a>
  169. </dt>
  170. <dt><a href="config.html#cfg_FontFamily"><strong>$cfg[&#39;FontFamily&#39;]</strong></a>
  171. </dt>
  172. <dt><a href="config.html#cfg_FontFamilyFixed"><strong>$cfg[&#39;FontFamilyFixed&#39;]</strong></a>
  173. </dt>
  174. <dt><a href="config.html#cfg_ForceSSL"><strong>$cfg[&#39;ForceSSL&#39;]</strong></a>
  175. </dt>
  176. <dt><a href="config.html#index-70"><strong>$cfg[&#39;ForeignKeyDropdownOrder&#39;]</strong></a>, <a href="config.html#cfg_ForeignKeyDropdownOrder"><strong>[1]</strong></a>
  177. </dt>
  178. <dt><a href="faq.html#index-26"><strong>$cfg[&#39;ForeignKeyMaxLimit&#39;]</strong></a>, <a href="config.html#cfg_ForeignKeyMaxLimit"><strong>[1]</strong></a>
  179. </dt>
  180. <dt><a href="config.html#cfg_GD2Available"><strong>$cfg[&#39;GD2Available&#39;]</strong></a>
  181. </dt>
  182. <dt><a href="config.html#cfg_GridEditing"><strong>$cfg[&#39;GridEditing&#39;]</strong></a>
  183. </dt>
  184. <dt><a href="config.html#cfg_GZipDump"><strong>$cfg[&#39;GZipDump&#39;]</strong></a>
  185. </dt>
  186. <dt><a href="config.html#cfg_HeaderFlipType"><strong>$cfg[&#39;HeaderFlipType&#39;]</strong></a>
  187. </dt>
  188. <dt><a href="config.html#cfg_HideStructureActions"><strong>$cfg[&#39;HideStructureActions&#39;]</strong></a>
  189. </dt>
  190. <dt><a href="config.html#cfg_IconvExtraParams"><strong>$cfg[&#39;IconvExtraParams&#39;]</strong></a>
  191. </dt>
  192. <dt><a href="config.html#cfg_IgnoreMultiSubmitErrors"><strong>$cfg[&#39;IgnoreMultiSubmitErrors&#39;]</strong></a>
  193. </dt>
  194. <dt><a href="config.html#cfg_Import"><strong>$cfg[&#39;Import&#39;]</strong></a>
  195. </dt>
  196. <dt><a href="config.html#index-73"><strong>$cfg[&#39;Import&#39;][&#39;charset&#39;]</strong></a>
  197. </dt>
  198. <dt><a href="config.html#cfg_InitialSlidersState"><strong>$cfg[&#39;InitialSlidersState&#39;]</strong></a>
  199. </dt>
  200. <dt><a href="config.html#cfg_InsertRows"><strong>$cfg[&#39;InsertRows&#39;]</strong></a>
  201. </dt>
  202. <dt><a href="config.html#cfg_Lang"><strong>$cfg[&#39;Lang&#39;]</strong></a>
  203. </dt>
  204. <dt><a href="config.html#cfg_LimitChars"><strong>$cfg[&#39;LimitChars&#39;]</strong></a>
  205. </dt>
  206. <dt><a href="config.html#cfg_LinkLengthLimit"><strong>$cfg[&#39;LinkLengthLimit&#39;]</strong></a>
  207. </dt>
  208. <dt><a href="config.html#cfg_LoginCookieDeleteAll"><strong>$cfg[&#39;LoginCookieDeleteAll&#39;]</strong></a>
  209. </dt>
  210. <dt><a href="config.html#cfg_LoginCookieRecall"><strong>$cfg[&#39;LoginCookieRecall&#39;]</strong></a>
  211. </dt>
  212. <dt><a href="config.html#cfg_LoginCookieStore"><strong>$cfg[&#39;LoginCookieStore&#39;]</strong></a>
  213. </dt>
  214. <dt><a href="config.html#cfg_LoginCookieValidity"><strong>$cfg[&#39;LoginCookieValidity&#39;]</strong></a>, <a href="config.html#index-67"><strong>[1]</strong></a>
  215. </dt>
  216. <dt><a href="config.html#cfg_LongtextDoubleTextarea"><strong>$cfg[&#39;LongtextDoubleTextarea&#39;]</strong></a>
  217. </dt>
  218. <dt><a href="config.html#cfg_MainBackground"><strong>$cfg[&#39;MainBackground&#39;]</strong></a>
  219. </dt>
  220. <dt><a href="config.html#cfg_MaxCharactersInDisplayedSQL"><strong>$cfg[&#39;MaxCharactersInDisplayedSQL&#39;]</strong></a>
  221. </dt>
  222. <dt><a href="config.html#cfg_MaxDbList"><strong>$cfg[&#39;MaxDbList&#39;]</strong></a>
  223. </dt>
  224. <dt><a href="faq.html#index-19"><strong>$cfg[&#39;MaxExactCount&#39;]</strong></a>, <a href="config.html#cfg_MaxExactCount"><strong>[1]</strong></a>
  225. </dt>
  226. <dt><a href="config.html#cfg_MaxExactCountViews"><strong>$cfg[&#39;MaxExactCountViews&#39;]</strong></a>
  227. </dt>
  228. <dt><a href="config.html#cfg_MaxNavigationItems"><strong>$cfg[&#39;MaxNavigationItems&#39;]</strong></a>
  229. </dt>
  230. <dt><a href="config.html#cfg_MaxRows"><strong>$cfg[&#39;MaxRows&#39;]</strong></a>
  231. </dt>
  232. <dt><a href="config.html#cfg_MaxSizeForInputField"><strong>$cfg[&#39;MaxSizeForInputField&#39;]</strong></a>
  233. </dt>
  234. <dt><a href="config.html#cfg_MaxTableList"><strong>$cfg[&#39;MaxTableList&#39;]</strong></a>
  235. </dt>
  236. <dt><a href="config.html#cfg_MemoryLimit"><strong>$cfg[&#39;MemoryLimit&#39;]</strong></a>
  237. </dt>
  238. <dt><a href="config.html#cfg_MinSizeForInputField"><strong>$cfg[&#39;MinSizeForInputField&#39;]</strong></a>
  239. </dt>
  240. <dt><a href="config.html#cfg_NaturalOrder"><strong>$cfg[&#39;NaturalOrder&#39;]</strong></a>
  241. </dt>
  242. <dt><a href="config.html#cfg_NaviBackground"><strong>$cfg[&#39;NaviBackground&#39;]</strong></a>
  243. </dt>
  244. <dt><a href="config.html#cfg_NavigationDisplayLogo"><strong>$cfg[&#39;NavigationDisplayLogo&#39;]</strong></a>
  245. </dt>
  246. <dt><a href="config.html#cfg_NavigationDisplayServers"><strong>$cfg[&#39;NavigationDisplayServers&#39;]</strong></a>
  247. </dt>
  248. <dt><a href="config.html#cfg_NavigationLogoLink"><strong>$cfg[&#39;NavigationLogoLink&#39;]</strong></a>
  249. </dt>
  250. <dt><a href="config.html#cfg_NavigationLogoLinkWindow"><strong>$cfg[&#39;NavigationLogoLinkWindow&#39;]</strong></a>
  251. </dt>
  252. <dt><a href="config.html#index-68"><strong>$cfg[&#39;NavigationTreeDbSeparator&#39;]</strong></a>, <a href="config.html#cfg_NavigationTreeDbSeparator"><strong>[1]</strong></a>
  253. </dt>
  254. <dt><a href="config.html#index-35"><strong>$cfg[&#39;NavigationTreeDefaultTabTable&#39;]</strong></a>, <a href="config.html#cfg_NavigationTreeDefaultTabTable"><strong>[1]</strong></a>
  255. </dt>
  256. <dt><a href="config.html#cfg_NavigationTreeDisableDatabaseExpansion"><strong>$cfg[&#39;NavigationTreeDisableDatabaseExpansion&#39;]</strong></a>
  257. </dt>
  258. <dt><a href="config.html#cfg_NavigationTreeDisplayDbFilterMinimum"><strong>$cfg[&#39;NavigationTreeDisplayDbFilterMinimum&#39;]</strong></a>
  259. </dt>
  260. <dt><a href="config.html#cfg_NavigationTreeDisplayItemFilterMinimum"><strong>$cfg[&#39;NavigationTreeDisplayItemFilterMinimum&#39;]</strong></a>
  261. </dt>
  262. <dt><a href="config.html#cfg_NavigationTreeEnableGrouping"><strong>$cfg[&#39;NavigationTreeEnableGrouping&#39;]</strong></a>
  263. </dt>
  264. <dt><a href="config.html#cfg_NavigationTreePointerEnable"><strong>$cfg[&#39;NavigationTreePointerEnable&#39;]</strong></a>
  265. </dt>
  266. <dt><a href="config.html#cfg_NavigationTreeTableLevel"><strong>$cfg[&#39;NavigationTreeTableLevel&#39;]</strong></a>
  267. </dt>
  268. <dt><a href="faq.html#index-18"><strong>$cfg[&#39;NavigationTreeTableSeparator&#39;]</strong></a>, <a href="config.html#cfg_NavigationTreeTableSeparator"><strong>[1]</strong></a>
  269. </dt>
  270. <dt><a href="config.html#cfg_NaviPointerBackground"><strong>$cfg[&#39;NaviPointerBackground&#39;]</strong></a>
  271. </dt>
  272. <dt><a href="config.html#cfg_NaviPointerColor"><strong>$cfg[&#39;NaviPointerColor&#39;]</strong></a>
  273. </dt>
  274. <dt><a href="config.html#cfg_NaviWidth"><strong>$cfg[&#39;NaviWidth&#39;]</strong></a>
  275. </dt>
  276. <dt><a href="faq.html#index-30"><strong>$cfg[&#39;NumFavoriteTables&#39;]</strong></a>
  277. </dt>
  278. <dt><a href="config.html#index-34"><strong>$cfg[&#39;NumRecentTables&#39;]</strong></a>, <a href="config.html#cfg_NumRecentTables"><strong>[1]</strong></a>
  279. </dt>
  280. <dt><a href="faq.html#index-0"><strong>$cfg[&#39;OBGzip&#39;]</strong></a>, <a href="faq.html#index-3"><strong>[1]</strong></a>, <a href="faq.html#index-7"><strong>[2]</strong></a>, <a href="config.html#cfg_OBGzip"><strong>[3]</strong></a>
  281. </dt>
  282. <dt><a href="config.html#cfg_Order"><strong>$cfg[&#39;Order&#39;]</strong></a>
  283. </dt>
  284. <dt><a href="config.html#cfg_PDFDefaultPageSize"><strong>$cfg[&#39;PDFDefaultPageSize&#39;]</strong></a>
  285. </dt>
  286. <dt><a href="config.html#cfg_PDFPageSizes"><strong>$cfg[&#39;PDFPageSizes&#39;]</strong></a>, <a href="config.html#index-71"><strong>[1]</strong></a>
  287. </dt>
  288. <dt><a href="config.html#cfg_PersistentConnections"><strong>$cfg[&#39;PersistentConnections&#39;]</strong></a>
  289. </dt>
  290. <dt><a href="faq.html#index-8"><strong>$cfg[&#39;PmaAbsoluteUri&#39;]</strong></a>, <a href="faq.html#index-15"><strong>[1]</strong></a>, <a href="faq.html#index-23"><strong>[2]</strong></a>, <a href="faq.html#index-24"><strong>[3]</strong></a>, <a href="config.html#cfg_PmaAbsoluteUri"><strong>[4]</strong></a>, <a href="config.html#index-1"><strong>[5]</strong></a>, <a href="config.html#index-65"><strong>[6]</strong></a>
  291. </dt>
  292. <dt><a href="config.html#cfg_PmaNoRelation_DisableWarning"><strong>$cfg[&#39;PmaNoRelation_DisableWarning&#39;]</strong></a>
  293. </dt>
  294. <dt><a href="config.html#cfg_PropertiesNumColumns"><strong>$cfg[&#39;PropertiesNumColumns&#39;]</strong></a>
  295. </dt>
  296. <dt><a href="config.html#cfg_ProtectBinary"><strong>$cfg[&#39;ProtectBinary&#39;]</strong></a>
  297. </dt>
  298. <dt><a href="config.html#cfg_ProxyPass"><strong>$cfg[&#39;ProxyPass&#39;]</strong></a>
  299. </dt>
  300. <dt><a href="config.html#cfg_ProxyUrl"><strong>$cfg[&#39;ProxyUrl&#39;]</strong></a>
  301. </dt>
  302. <dt><a href="config.html#cfg_ProxyUser"><strong>$cfg[&#39;ProxyUser&#39;]</strong></a>
  303. </dt>
  304. <dt><a href="config.html#cfg_QueryHistoryDB"><strong>$cfg[&#39;QueryHistoryDB&#39;]</strong></a>, <a href="config.html#index-80"><strong>[1]</strong></a>, <a href="config.html#index-82"><strong>[2]</strong></a>
  305. </dt>
  306. <dt><a href="config.html#index-31"><strong>$cfg[&#39;QueryHistoryMax&#39;]</strong></a>, <a href="config.html#cfg_QueryHistoryMax"><strong>[1]</strong></a>, <a href="config.html#index-83"><strong>[2]</strong></a>
  307. </dt>
  308. <dt><a href="config.html#cfg_QueryWindowDefTab"><strong>$cfg[&#39;QueryWindowDefTab&#39;]</strong></a>, <a href="config.html#index-84"><strong>[1]</strong></a>
  309. </dt>
  310. <dt><a href="config.html#cfg_QueryWindowHeight"><strong>$cfg[&#39;QueryWindowHeight&#39;]</strong></a>, <a href="config.html#index-78"><strong>[1]</strong></a>
  311. </dt>
  312. </dl></td>
  313. <td style="width: 33%" valign="top"><dl>
  314. <dt><a href="config.html#cfg_QueryWindowWidth"><strong>$cfg[&#39;QueryWindowWidth&#39;]</strong></a>, <a href="config.html#index-77"><strong>[1]</strong></a>
  315. </dt>
  316. <dt><a href="config.html#cfg_RecodingEngine"><strong>$cfg[&#39;RecodingEngine&#39;]</strong></a>
  317. </dt>
  318. <dt><a href="config.html#index-38"><strong>$cfg[&#39;RememberSorting&#39;]</strong></a>, <a href="config.html#cfg_RememberSorting"><strong>[1]</strong></a>
  319. </dt>
  320. <dt><a href="config.html#cfg_RepeatCells"><strong>$cfg[&#39;RepeatCells&#39;]</strong></a>
  321. </dt>
  322. <dt><a href="config.html#cfg_ReservedWordDisableWarning"><strong>$cfg[&#39;ReservedWordDisableWarning&#39;]</strong></a>
  323. </dt>
  324. <dt><a href="config.html#cfg_RetainQueryBox"><strong>$cfg[&#39;RetainQueryBox&#39;]</strong></a>
  325. </dt>
  326. <dt><a href="config.html#cfg_RowActionLinks"><strong>$cfg[&#39;RowActionLinks&#39;]</strong></a>
  327. </dt>
  328. <dt><a href="config.html#cfg_RowActionType"><strong>$cfg[&#39;RowActionType&#39;]</strong></a>
  329. </dt>
  330. <dt><a href="config.html#cfg_SaveCellsAtOnce"><strong>$cfg[&#39;SaveCellsAtOnce&#39;]</strong></a>
  331. </dt>
  332. <dt><a href="config.html#cfg_SaveDir"><strong>$cfg[&#39;SaveDir&#39;]</strong></a>
  333. </dt>
  334. <dt><a href="config.html#cfg_SendErrorReports"><strong>$cfg[&#39;SendErrorReports&#39;]</strong></a>
  335. </dt>
  336. <dt><a href="config.html#cfg_ServerDefault"><strong>$cfg[&#39;ServerDefault&#39;]</strong></a>, <a href="config.html#index-63"><strong>[1]</strong></a>, <a href="config.html#index-64"><strong>[2]</strong></a>
  337. </dt>
  338. <dt><a href="config.html#cfg_ServerLibraryDifference_DisableWarning"><strong>$cfg[&#39;ServerLibraryDifference_DisableWarning&#39;]</strong></a>
  339. </dt>
  340. <dt><a href="setup.html#index-6"><strong>$cfg[&#39;Servers&#39;]</strong></a>, <a href="config.html#cfg_Servers"><strong>[1]</strong></a>, <a href="config.html#index-4"><strong>[2]</strong></a>, <a href="config.html#index-7"><strong>[3]</strong></a>
  341. </dt>
  342. <dt><a href="setup.html#index-18"><strong>$cfg[&#39;Servers&#39;][$i][&#39;AllowDeny&#39;][&#39;order&#39;]</strong></a>, <a href="config.html#cfg_Servers_AllowDeny_order"><strong>[1]</strong></a>, <a href="config.html#index-74"><strong>[2]</strong></a>
  343. </dt>
  344. <dt><a href="setup.html#index-19"><strong>$cfg[&#39;Servers&#39;][$i][&#39;AllowDeny&#39;][&#39;rules&#39;]</strong></a>, <a href="setup.html#index-22"><strong>[1]</strong></a>, <a href="faq.html#index-22"><strong>[2]</strong></a>, <a href="config.html#index-58"><strong>[3]</strong></a>, <a href="config.html#cfg_Servers_AllowDeny_rules"><strong>[4]</strong></a>, <a href="config.html#index-75"><strong>[5]</strong></a>
  345. </dt>
  346. <dt><a href="config.html#cfg_Servers_AllowNoPassword"><strong>$cfg[&#39;Servers&#39;][$i][&#39;AllowNoPassword&#39;]</strong></a>
  347. </dt>
  348. <dt><a href="config.html#cfg_Servers_AllowRoot"><strong>$cfg[&#39;Servers&#39;][$i][&#39;AllowRoot&#39;]</strong></a>
  349. </dt>
  350. <dt><a href="config.html#cfg_Servers_auth_http_realm"><strong>$cfg[&#39;Servers&#39;][$i][&#39;auth_http_realm&#39;]</strong></a>
  351. </dt>
  352. <dt><a href="setup.html#index-21"><strong>$cfg[&#39;Servers&#39;][$i][&#39;auth_swekey_config&#39;]</strong></a>, <a href="config.html#cfg_Servers_auth_swekey_config"><strong>[1]</strong></a>
  353. </dt>
  354. <dt><a href="setup.html#index-11"><strong>$cfg[&#39;Servers&#39;][$i][&#39;auth_type&#39;]</strong></a>, <a href="config.html#cfg_Servers_auth_type"><strong>[1]</strong></a>, <a href="config.html#index-16"><strong>[2]</strong></a>
  355. </dt>
  356. <dt><a href="config.html#cfg_Servers_bookmarktable"><strong>$cfg[&#39;Servers&#39;][$i][&#39;bookmarktable&#39;]</strong></a>, <a href="config.html#index-19"><strong>[1]</strong></a>
  357. </dt>
  358. <dt><a href="config.html#index-29"><strong>$cfg[&#39;Servers&#39;][$i][&#39;column_comments&#39;]</strong></a>
  359. </dt>
  360. <dt><a href="config.html#cfg_Servers_column_info"><strong>$cfg[&#39;Servers&#39;][$i][&#39;column_info&#39;]</strong></a>, <a href="config.html#index-28"><strong>[1]</strong></a>, <a href="config.html#index-30"><strong>[2]</strong></a>
  361. </dt>
  362. <dt><a href="config.html#cfg_Servers_compress"><strong>$cfg[&#39;Servers&#39;][$i][&#39;compress&#39;]</strong></a>
  363. </dt>
  364. <dt><a href="config.html#cfg_Servers_connect_type"><strong>$cfg[&#39;Servers&#39;][$i][&#39;connect_type&#39;]</strong></a>
  365. </dt>
  366. <dt><a href="config.html#cfg_Servers_controlhost"><strong>$cfg[&#39;Servers&#39;][$i][&#39;controlhost&#39;]</strong></a>
  367. </dt>
  368. <dt><a href="setup.html#index-3"><strong>$cfg[&#39;Servers&#39;][$i][&#39;controlpass&#39;]</strong></a>, <a href="faq.html#index-21"><strong>[1]</strong></a>, <a href="config.html#cfg_Servers_controlpass"><strong>[2]</strong></a>
  369. </dt>
  370. <dt><a href="config.html#cfg_Servers_controlport"><strong>$cfg[&#39;Servers&#39;][$i][&#39;controlport&#39;]</strong></a>
  371. </dt>
  372. <dt><a href="setup.html#index-2"><strong>$cfg[&#39;Servers&#39;][$i][&#39;controluser&#39;]</strong></a>, <a href="setup.html#index-5"><strong>[1]</strong></a>, <a href="faq.html#index-20"><strong>[2]</strong></a>, <a href="config.html#cfg_Servers_controluser"><strong>[3]</strong></a>
  373. </dt>
  374. <dt><a href="config.html#cfg_Servers_designer_coords"><strong>$cfg[&#39;Servers&#39;][$i][&#39;designer_coords&#39;]</strong></a>, <a href="config.html#index-54"><strong>[1]</strong></a>
  375. </dt>
  376. <dt><a href="config.html#cfg_Servers_hide_db"><strong>$cfg[&#39;Servers&#39;][$i][&#39;hide_db&#39;]</strong></a>
  377. </dt>
  378. <dt><a href="config.html#cfg_Servers_history"><strong>$cfg[&#39;Servers&#39;][$i][&#39;history&#39;]</strong></a>, <a href="config.html#index-33"><strong>[1]</strong></a>, <a href="config.html#index-81"><strong>[2]</strong></a>
  379. </dt>
  380. <dt><a href="config.html#index-5"><strong>$cfg[&#39;Servers&#39;][$i][&#39;host&#39;]</strong></a>, <a href="config.html#index-6"><strong>[1]</strong></a>, <a href="config.html#cfg_Servers_host"><strong>[2]</strong></a>, <a href="config.html#index-8"><strong>[3]</strong></a>, <a href="config.html#index-15"><strong>[4]</strong></a>
  381. </dt>
  382. <dt><a href="config.html#cfg_Servers_LogoutURL"><strong>$cfg[&#39;Servers&#39;][$i][&#39;LogoutURL&#39;]</strong></a>
  383. </dt>
  384. <dt><a href="config.html#cfg_Servers_MaxTableUiprefs"><strong>$cfg[&#39;Servers&#39;][$i][&#39;MaxTableUiprefs&#39;]</strong></a>
  385. </dt>
  386. <dt><a href="config.html#cfg_Servers_navigationhiding"><strong>$cfg[&#39;Servers&#39;][$i][&#39;navigationhiding&#39;]</strong></a>, <a href="config.html#index-45"><strong>[1]</strong></a>
  387. </dt>
  388. <dt><a href="config.html#cfg_Servers_nopassword"><strong>$cfg[&#39;Servers&#39;][$i][&#39;nopassword&#39;]</strong></a>
  389. </dt>
  390. <dt><a href="config.html#cfg_Servers_only_db"><strong>$cfg[&#39;Servers&#39;][$i][&#39;only_db&#39;]</strong></a>
  391. </dt>
  392. <dt><a href="setup.html#index-17"><strong>$cfg[&#39;Servers&#39;][$i][&#39;password&#39;]</strong></a>, <a href="config.html#cfg_Servers_password"><strong>[1]</strong></a>
  393. </dt>
  394. <dt><a href="config.html#cfg_Servers_pdf_pages"><strong>$cfg[&#39;Servers&#39;][$i][&#39;pdf_pages&#39;]</strong></a>, <a href="config.html#index-26"><strong>[1]</strong></a>
  395. </dt>
  396. <dt><a href="config.html#index-2"><strong>$cfg[&#39;Servers&#39;][$i][&#39;pmadb&#39;]</strong></a>, <a href="config.html#index-9"><strong>[1]</strong></a>, <a href="config.html#cfg_Servers_pmadb"><strong>[2]</strong></a>, <a href="config.html#index-17"><strong>[3]</strong></a>, <a href="config.html#index-18"><strong>[4]</strong></a>, <a href="config.html#index-20"><strong>[5]</strong></a>, <a href="config.html#index-22"><strong>[6]</strong></a>, <a href="config.html#index-24"><strong>[7]</strong></a>, <a href="config.html#index-27"><strong>[8]</strong></a>, <a href="config.html#index-32"><strong>[9]</strong></a>, <a href="config.html#index-36"><strong>[10]</strong></a>, <a href="config.html#index-39"><strong>[11]</strong></a>, <a href="config.html#index-41"><strong>[12]</strong></a>, <a href="config.html#index-44"><strong>[13]</strong></a>, <a href="config.html#index-46"><strong>[14]</strong></a>, <a href="config.html#index-48"><strong>[15]</strong></a>, <a href="config.html#index-50"><strong>[16]</strong></a>, <a href="config.html#index-51"><strong>[17]</strong></a>, <a href="config.html#index-53"><strong>[18]</strong></a>
  397. </dt>
  398. <dt><a href="config.html#cfg_Servers_port"><strong>$cfg[&#39;Servers&#39;][$i][&#39;port&#39;]</strong></a>
  399. </dt>
  400. <dt><a href="config.html#cfg_Servers_recent"><strong>$cfg[&#39;Servers&#39;][$i][&#39;recent&#39;]</strong></a>, <a href="config.html#index-37"><strong>[1]</strong></a>
  401. </dt>
  402. <dt><a href="config.html#cfg_Servers_relation"><strong>$cfg[&#39;Servers&#39;][$i][&#39;relation&#39;]</strong></a>, <a href="config.html#index-21"><strong>[1]</strong></a>
  403. </dt>
  404. <dt><a href="config.html#cfg_Servers_savedsearches"><strong>$cfg[&#39;Servers&#39;][$i][&#39;savedsearches&#39;]</strong></a>, <a href="config.html#index-47"><strong>[1]</strong></a>
  405. </dt>
  406. <dt><a href="setup.html#index-13"><strong>$cfg[&#39;Servers&#39;][$i][&#39;SignonScript&#39;]</strong></a>, <a href="config.html#index-12"><strong>[1]</strong></a>, <a href="config.html#cfg_Servers_SignonScript"><strong>[2]</strong></a>, <a href="config.html#index-60"><strong>[3]</strong></a>
  407. </dt>
  408. <dt><a href="setup.html#index-12"><strong>$cfg[&#39;Servers&#39;][$i][&#39;SignonSession&#39;]</strong></a>, <a href="config.html#index-11"><strong>[1]</strong></a>, <a href="config.html#cfg_Servers_SignonSession"><strong>[2]</strong></a>
  409. </dt>
  410. <dt><a href="setup.html#index-14"><strong>$cfg[&#39;Servers&#39;][$i][&#39;SignonURL&#39;]</strong></a>, <a href="config.html#index-13"><strong>[1]</strong></a>, <a href="config.html#cfg_Servers_SignonURL"><strong>[2]</strong></a>
  411. </dt>
  412. <dt><a href="faq.html#index-6"><strong>$cfg[&#39;Servers&#39;][$i][&#39;socket&#39;]</strong></a>, <a href="config.html#cfg_Servers_socket"><strong>[1]</strong></a>
  413. </dt>
  414. <dt><a href="config.html#cfg_Servers_ssl"><strong>$cfg[&#39;Servers&#39;][$i][&#39;ssl&#39;]</strong></a>
  415. </dt>
  416. <dt><a href="config.html#cfg_Servers_ssl_ca"><strong>$cfg[&#39;Servers&#39;][$i][&#39;ssl_ca&#39;]</strong></a>
  417. </dt>
  418. <dt><a href="config.html#cfg_Servers_ssl_ca_path"><strong>$cfg[&#39;Servers&#39;][$i][&#39;ssl_ca_path&#39;]</strong></a>
  419. </dt>
  420. <dt><a href="config.html#cfg_Servers_ssl_cert"><strong>$cfg[&#39;Servers&#39;][$i][&#39;ssl_cert&#39;]</strong></a>
  421. </dt>
  422. <dt><a href="config.html#cfg_Servers_ssl_ciphers"><strong>$cfg[&#39;Servers&#39;][$i][&#39;ssl_ciphers&#39;]</strong></a>
  423. </dt>
  424. <dt><a href="config.html#cfg_Servers_ssl_key"><strong>$cfg[&#39;Servers&#39;][$i][&#39;ssl_key&#39;]</strong></a>
  425. </dt>
  426. <dt><a href="config.html#cfg_Servers_StatusCacheDatabases"><strong>$cfg[&#39;Servers&#39;][$i][&#39;StatusCacheDatabases&#39;]</strong></a>, <a href="config.html#index-62"><strong>[1]</strong></a>
  427. </dt>
  428. <dt><a href="config.html#index-61"><strong>$cfg[&#39;Servers&#39;][$i][&#39;StatusCacheLifetime&#39;]</strong></a>, <a href="config.html#cfg_Servers_StatusCacheLifetime"><strong>[1]</strong></a>
  429. </dt>
  430. <dt><a href="config.html#cfg_Servers_table_coords"><strong>$cfg[&#39;Servers&#39;][$i][&#39;table_coords&#39;]</strong></a>, <a href="config.html#index-25"><strong>[1]</strong></a>
  431. </dt>
  432. <dt><a href="config.html#cfg_Servers_table_info"><strong>$cfg[&#39;Servers&#39;][$i][&#39;table_info&#39;]</strong></a>, <a href="config.html#index-23"><strong>[1]</strong></a>
  433. </dt>
  434. <dt><a href="config.html#cfg_Servers_table_uiprefs"><strong>$cfg[&#39;Servers&#39;][$i][&#39;table_uiprefs&#39;]</strong></a>, <a href="config.html#index-40"><strong>[1]</strong></a>, <a href="config.html#index-55"><strong>[2]</strong></a>, <a href="config.html#index-56"><strong>[3]</strong></a>, <a href="config.html#index-57"><strong>[4]</strong></a>
  435. </dt>
  436. <dt><a href="config.html#cfg_Servers_tracking"><strong>$cfg[&#39;Servers&#39;][$i][&#39;tracking&#39;]</strong></a>, <a href="config.html#index-49"><strong>[1]</strong></a>
  437. </dt>
  438. <dt><a href="config.html#cfg_Servers_tracking_add_drop_database"><strong>$cfg[&#39;Servers&#39;][$i][&#39;tracking_add_drop_database&#39;]</strong></a>
  439. </dt>
  440. <dt><a href="config.html#cfg_Servers_tracking_add_drop_table"><strong>$cfg[&#39;Servers&#39;][$i][&#39;tracking_add_drop_table&#39;]</strong></a>
  441. </dt>
  442. <dt><a href="config.html#cfg_Servers_tracking_add_drop_view"><strong>$cfg[&#39;Servers&#39;][$i][&#39;tracking_add_drop_view&#39;]</strong></a>
  443. </dt>
  444. <dt><a href="config.html#cfg_Servers_tracking_default_statements"><strong>$cfg[&#39;Servers&#39;][$i][&#39;tracking_default_statements&#39;]</strong></a>
  445. </dt>
  446. <dt><a href="config.html#cfg_Servers_tracking_version_auto_create"><strong>$cfg[&#39;Servers&#39;][$i][&#39;tracking_version_auto_create&#39;]</strong></a>
  447. </dt>
  448. <dt><a href="setup.html#index-16"><strong>$cfg[&#39;Servers&#39;][$i][&#39;user&#39;]</strong></a>, <a href="config.html#cfg_Servers_user"><strong>[1]</strong></a>
  449. </dt>
  450. <dt><a href="config.html#cfg_Servers_userconfig"><strong>$cfg[&#39;Servers&#39;][$i][&#39;userconfig&#39;]</strong></a>, <a href="config.html#index-52"><strong>[1]</strong></a>
  451. </dt>
  452. <dt><a href="config.html#cfg_Servers_usergroups"><strong>$cfg[&#39;Servers&#39;][$i][&#39;usergroups&#39;]</strong></a>, <a href="config.html#index-43"><strong>[1]</strong></a>
  453. </dt>
  454. <dt><a href="config.html#cfg_Servers_users"><strong>$cfg[&#39;Servers&#39;][$i][&#39;users&#39;]</strong></a>, <a href="config.html#index-42"><strong>[1]</strong></a>
  455. </dt>
  456. <dt><a href="faq.html#index-27"><strong>$cfg[&#39;Servers&#39;][$i][&#39;verbose&#39;]</strong></a>, <a href="config.html#index-14"><strong>[1]</strong></a>, <a href="config.html#cfg_Servers_verbose"><strong>[2]</strong></a>, <a href="config.html#index-69"><strong>[3]</strong></a>
  457. </dt>
  458. <dt><a href="config.html#cfg_SessionSavePath"><strong>$cfg[&#39;SessionSavePath&#39;]</strong></a>
  459. </dt>
  460. <dt><a href="config.html#cfg_ShowAll"><strong>$cfg[&#39;ShowAll&#39;]</strong></a>
  461. </dt>
  462. <dt><a href="config.html#cfg_ShowBrowseComments"><strong>$cfg[&#39;ShowBrowseComments&#39;]</strong></a>
  463. </dt>
  464. <dt><a href="config.html#cfg_ShowChgPassword"><strong>$cfg[&#39;ShowChgPassword&#39;]</strong></a>
  465. </dt>
  466. <dt><a href="config.html#cfg_ShowCreateDb"><strong>$cfg[&#39;ShowCreateDb&#39;]</strong></a>
  467. </dt>
  468. <dt><a href="config.html#cfg_ShowDbStructureCreation"><strong>$cfg[&#39;ShowDbStructureCreation&#39;]</strong></a>
  469. </dt>
  470. <dt><a href="config.html#cfg_ShowDbStructureLastCheck"><strong>$cfg[&#39;ShowDbStructureLastCheck&#39;]</strong></a>
  471. </dt>
  472. <dt><a href="config.html#cfg_ShowDbStructureLastUpdate"><strong>$cfg[&#39;ShowDbStructureLastUpdate&#39;]</strong></a>
  473. </dt>
  474. <dt><a href="config.html#cfg_ShowDisplayDirection"><strong>$cfg[&#39;ShowDisplayDirection&#39;]</strong></a>
  475. </dt>
  476. <dt><a href="config.html#cfg_ShowFieldTypesInDataEditView"><strong>$cfg[&#39;ShowFieldTypesInDataEditView&#39;]</strong></a>
  477. </dt>
  478. <dt><a href="config.html#cfg_ShowFunctionFields"><strong>$cfg[&#39;ShowFunctionFields&#39;]</strong></a>
  479. </dt>
  480. <dt><a href="config.html#cfg_ShowHint"><strong>$cfg[&#39;ShowHint&#39;]</strong></a>
  481. </dt>
  482. <dt><a href="config.html#cfg_ShowPhpInfo"><strong>$cfg[&#39;ShowPhpInfo&#39;]</strong></a>
  483. </dt>
  484. <dt><a href="config.html#cfg_ShowPropertyComments"><strong>$cfg[&#39;ShowPropertyComments&#39;]</strong></a>
  485. </dt>
  486. <dt><a href="config.html#cfg_ShowServerInfo"><strong>$cfg[&#39;ShowServerInfo&#39;]</strong></a>
  487. </dt>
  488. <dt><a href="config.html#cfg_ShowSQL"><strong>$cfg[&#39;ShowSQL&#39;]</strong></a>
  489. </dt>
  490. <dt><a href="config.html#cfg_ShowStats"><strong>$cfg[&#39;ShowStats&#39;]</strong></a>
  491. </dt>
  492. <dt><a href="config.html#cfg_SkipLockedTables"><strong>$cfg[&#39;SkipLockedTables&#39;]</strong></a>
  493. </dt>
  494. <dt><a href="config.html#cfg_SQLQuery_Edit"><strong>$cfg[&#39;SQLQuery&#39;][&#39;Edit&#39;]</strong></a>
  495. </dt>
  496. <dt><a href="config.html#cfg_SQLQuery_Explain"><strong>$cfg[&#39;SQLQuery&#39;][&#39;Explain&#39;]</strong></a>
  497. </dt>
  498. <dt><a href="config.html#cfg_SQLQuery_Refresh"><strong>$cfg[&#39;SQLQuery&#39;][&#39;Refresh&#39;]</strong></a>
  499. </dt>
  500. <dt><a href="config.html#cfg_SQLQuery_ShowAsPHP"><strong>$cfg[&#39;SQLQuery&#39;][&#39;ShowAsPHP&#39;]</strong></a>
  501. </dt>
  502. <dt><a href="faq.html#index-5"><strong>$cfg[&#39;SuhosinDisableWarning&#39;]</strong></a>, <a href="config.html#cfg_SuhosinDisableWarning"><strong>[1]</strong></a>
  503. </dt>
  504. <dt><a href="config.html#cfg_TableNavigationLinksMode"><strong>$cfg[&#39;TableNavigationLinksMode&#39;]</strong></a>
  505. </dt>
  506. <dt><a href="config.html#cfg_TabsMode"><strong>$cfg[&#39;TabsMode&#39;]</strong></a>
  507. </dt>
  508. <dt><a href="faq.html#index-1"><strong>$cfg[&#39;TempDir&#39;]</strong></a>, <a href="faq.html#index-29"><strong>[1]</strong></a>, <a href="config.html#cfg_TempDir"><strong>[2]</strong></a>
  509. </dt>
  510. <dt><a href="config.html#cfg_TextareaAutoSelect"><strong>$cfg[&#39;TextareaAutoSelect&#39;]</strong></a>
  511. </dt>
  512. <dt><a href="config.html#cfg_TextareaCols"><strong>$cfg[&#39;TextareaCols&#39;]</strong></a>
  513. </dt>
  514. <dt><a href="config.html#cfg_TextareaRows"><strong>$cfg[&#39;TextareaRows&#39;]</strong></a>
  515. </dt>
  516. <dt><a href="config.html#cfg_ThBackground"><strong>$cfg[&#39;ThBackground&#39;]</strong></a>
  517. </dt>
  518. <dt><a href="config.html#cfg_ThColor"><strong>$cfg[&#39;ThColor&#39;]</strong></a>
  519. </dt>
  520. <dt><a href="faq.html#index-11"><strong>$cfg[&#39;ThemeDefault&#39;]</strong></a>, <a href="config.html#cfg_ThemeDefault"><strong>[1]</strong></a>
  521. </dt>
  522. <dt><a href="faq.html#index-10"><strong>$cfg[&#39;ThemeManager&#39;]</strong></a>, <a href="faq.html#index-13"><strong>[1]</strong></a>, <a href="config.html#cfg_ThemeManager"><strong>[2]</strong></a>
  523. </dt>
  524. <dt><a href="faq.html#index-9"><strong>$cfg[&#39;ThemePath&#39;]</strong></a>, <a href="faq.html#index-12"><strong>[1]</strong></a>, <a href="faq.html#index-14"><strong>[2]</strong></a>, <a href="config.html#cfg_ThemePath"><strong>[3]</strong></a>, <a href="config.html#index-85"><strong>[4]</strong></a>
  525. </dt>
  526. <dt><a href="config.html#cfg_ThemePerServer"><strong>$cfg[&#39;ThemePerServer&#39;]</strong></a>
  527. </dt>
  528. <dt><a href="config.html#cfg_TitleDatabase"><strong>$cfg[&#39;TitleDatabase&#39;]</strong></a>
  529. </dt>
  530. <dt><a href="config.html#cfg_TitleDefault"><strong>$cfg[&#39;TitleDefault&#39;]</strong></a>
  531. </dt>
  532. <dt><a href="config.html#cfg_TitleServer"><strong>$cfg[&#39;TitleServer&#39;]</strong></a>
  533. </dt>
  534. <dt><a href="config.html#cfg_TitleTable"><strong>$cfg[&#39;TitleTable&#39;]</strong></a>
  535. </dt>
  536. <dt><a href="config.html#cfg_TranslationWarningThreshold"><strong>$cfg[&#39;TranslationWarningThreshold&#39;]</strong></a>
  537. </dt>
  538. <dt><a href="config.html#index-59"><strong>$cfg[&#39;TrustedProxies&#39;]</strong></a>, <a href="config.html#cfg_TrustedProxies"><strong>[1]</strong></a>
  539. </dt>
  540. <dt><a href="faq.html#index-2"><strong>$cfg[&#39;UploadDir&#39;]</strong></a>, <a href="faq.html#index-28"><strong>[1]</strong></a>, <a href="config.html#cfg_UploadDir"><strong>[2]</strong></a>
  541. </dt>
  542. <dt><a href="config.html#cfg_UseDbSearch"><strong>$cfg[&#39;UseDbSearch&#39;]</strong></a>
  543. </dt>
  544. <dt><a href="config.html#cfg_UserprefsDeveloperTab"><strong>$cfg[&#39;UserprefsDeveloperTab&#39;]</strong></a>
  545. </dt>
  546. <dt><a href="config.html#index-3"><strong>$cfg[&#39;UserprefsDisallow&#39;]</strong></a>, <a href="config.html#cfg_UserprefsDisallow"><strong>[1]</strong></a>
  547. </dt>
  548. <dt><a href="config.html#cfg_VersionCheck"><strong>$cfg[&#39;VersionCheck&#39;]</strong></a>
  549. </dt>
  550. <dt><a href="config.html#cfg_ZipDump"><strong>$cfg[&#39;ZipDump&#39;]</strong></a>
  551. </dt>
  552. <dt><a href="glossary.html#term-htaccess"><strong>.htaccess</strong></a>
  553. </dt>
  554. </dl></td>
  555. </tr></table>
  556. <h2 id="A">A</h2>
  557. <table style="width: 100%" class="indextable genindextable"><tr>
  558. <td style="width: 33%" valign="top"><dl>
  559. <dt><a href="glossary.html#term-acl"><strong>ACL</strong></a>
  560. </dt>
  561. <dt><a href="config.html#cfg_ActionLinksMode"><strong>ActionLinksMode</strong></a>
  562. </dt>
  563. <dt><a href="config.html#cfg_AllowArbitraryServer"><strong>AllowArbitraryServer</strong></a>
  564. </dt>
  565. <dt><a href="config.html#cfg_Servers_AllowDeny_order"><strong>AllowDeny, order</strong></a>
  566. </dt>
  567. <dt><a href="config.html#cfg_Servers_AllowDeny_rules"><strong>AllowDeny, rules</strong></a>
  568. </dt>
  569. <dt><a href="config.html#cfg_Servers_AllowNoPassword"><strong>AllowNoPassword</strong></a>
  570. </dt>
  571. <dt><a href="config.html#cfg_Servers_AllowRoot"><strong>AllowRoot</strong></a>
  572. </dt>
  573. </dl></td>
  574. <td style="width: 33%" valign="top"><dl>
  575. <dt><a href="config.html#cfg_AllowThirdPartyFraming"><strong>AllowThirdPartyFraming</strong></a>
  576. </dt>
  577. <dt><a href="config.html#cfg_AllowUserDropDatabase"><strong>AllowUserDropDatabase</strong></a>
  578. </dt>
  579. <dt><a href="config.html#cfg_Servers_auth_http_realm"><strong>auth_http_realm</strong></a>
  580. </dt>
  581. <dt><a href="config.html#cfg_Servers_auth_swekey_config"><strong>auth_swekey_config</strong></a>
  582. </dt>
  583. <dt><a href="config.html#cfg_Servers_auth_type"><strong>auth_type</strong></a>
  584. </dt>
  585. <dt><a href="setup.html#index-4">Authentication mode</a>
  586. </dt>
  587. <dd><dl>
  588. <dt><a href="setup.html#index-15">Config</a>
  589. </dt>
  590. <dt><a href="setup.html#index-8">Cookie</a>
  591. </dt>
  592. <dt><a href="setup.html#index-7">HTTP</a>
  593. </dt>
  594. <dt><a href="setup.html#index-10">Signon</a>
  595. </dt>
  596. <dt><a href="setup.html#index-20">Swekey</a>
  597. </dt>
  598. </dl></dd>
  599. <dt><a href="config.html#cfg_AvailableCharsets"><strong>AvailableCharsets</strong></a>
  600. </dt>
  601. </dl></td>
  602. </tr></table>
  603. <h2 id="B">B</h2>
  604. <table style="width: 100%" class="indextable genindextable"><tr>
  605. <td style="width: 33%" valign="top"><dl>
  606. <dt><a href="config.html#cfg_BgOne"><strong>BgOne</strong></a>
  607. </dt>
  608. <dt><a href="config.html#cfg_BgTwo"><strong>BgTwo</strong></a>
  609. </dt>
  610. <dt><a href="glossary.html#term-blowfish"><strong>Blowfish</strong></a>
  611. </dt>
  612. <dt><a href="config.html#cfg_blowfish_secret"><strong>blowfish_secret</strong></a>
  613. </dt>
  614. <dt><a href="config.html#cfg_Servers_bookmarktable"><strong>bookmarktable</strong></a>
  615. </dt>
  616. <dt><a href="config.html#cfg_Border"><strong>Border</strong></a>
  617. </dt>
  618. <dt><a href="config.html#cfg_BrowseMarkerBackground"><strong>BrowseMarkerBackground</strong></a>
  619. </dt>
  620. <dt><a href="config.html#cfg_BrowseMarkerColor"><strong>BrowseMarkerColor</strong></a>
  621. </dt>
  622. </dl></td>
  623. <td style="width: 33%" valign="top"><dl>
  624. <dt><a href="config.html#cfg_BrowseMarkerEnable"><strong>BrowseMarkerEnable</strong></a>
  625. </dt>
  626. <dt><a href="config.html#cfg_BrowseMIME"><strong>BrowseMIME</strong></a>
  627. </dt>
  628. <dt><a href="config.html#cfg_BrowsePointerBackground"><strong>BrowsePointerBackground</strong></a>
  629. </dt>
  630. <dt><a href="config.html#cfg_BrowsePointerColor"><strong>BrowsePointerColor</strong></a>
  631. </dt>
  632. <dt><a href="config.html#cfg_BrowsePointerEnable"><strong>BrowsePointerEnable</strong></a>
  633. </dt>
  634. <dt><a href="glossary.html#term-browser"><strong>Browser</strong></a>
  635. </dt>
  636. <dt><a href="glossary.html#term-bzip2"><strong>bzip2</strong></a>
  637. </dt>
  638. <dt><a href="config.html#cfg_BZipDump"><strong>BZipDump</strong></a>
  639. </dt>
  640. </dl></td>
  641. </tr></table>
  642. <h2 id="C">C</h2>
  643. <table style="width: 100%" class="indextable genindextable"><tr>
  644. <td style="width: 33%" valign="top"><dl>
  645. <dt><a href="config.html#cfg_CaptchaLoginPrivateKey"><strong>CaptchaLoginPrivateKey</strong></a>
  646. </dt>
  647. <dt><a href="config.html#cfg_CaptchaLoginPublicKey"><strong>CaptchaLoginPublicKey</strong></a>
  648. </dt>
  649. <dt><a href="glossary.html#term-cgi"><strong>CGI</strong></a>
  650. </dt>
  651. <dt><a href="glossary.html#term-changelog"><strong>Changelog</strong></a>
  652. </dt>
  653. <dt><a href="config.html#cfg_CharEditing"><strong>CharEditing</strong></a>
  654. </dt>
  655. <dt><a href="config.html#cfg_CharTextareaCols"><strong>CharTextareaCols</strong></a>
  656. </dt>
  657. <dt><a href="config.html#cfg_CharTextareaRows"><strong>CharTextareaRows</strong></a>
  658. </dt>
  659. <dt><a href="config.html#cfg_CheckConfigurationPermissions"><strong>CheckConfigurationPermissions</strong></a>
  660. </dt>
  661. <dt><a href="glossary.html#term-client"><strong>Client</strong></a>
  662. </dt>
  663. <dt><a href="config.html#cfg_CodemirrorEnable"><strong>CodemirrorEnable</strong></a>
  664. </dt>
  665. <dt><a href="glossary.html#term-column"><strong>column</strong></a>
  666. </dt>
  667. <dt><a href="config.html#cfg_Servers_column_info"><strong>column_info</strong></a>
  668. </dt>
  669. <dt><a href="config.html#cfg_Servers_compress"><strong>compress</strong></a>
  670. </dt>
  671. <dt><a href="config.html#cfg_CompressOnFly"><strong>CompressOnFly</strong></a>
  672. </dt>
  673. </dl></td>
  674. <td style="width: 33%" valign="top"><dl>
  675. <dt>
  676. Config
  677. </dt>
  678. <dd><dl>
  679. <dt><a href="setup.html#index-15">Authentication mode</a>
  680. </dt>
  681. </dl></dd>
  682. <dt><a href="config.html#index-0">config.inc.php</a>
  683. </dt>
  684. <dt>
  685. configuration option
  686. </dt>
  687. <dd><dl>
  688. <dt><a href="config.html#cfg_ActionLinksMode"><strong>$cfg[&#39;ActionLinksMode&#39;]</strong></a>
  689. </dt>
  690. <dt><a href="setup.html#index-9"><strong>$cfg[&#39;AllowArbitraryServer&#39;]</strong></a>, <a href="config.html#index-10"><strong>[1]</strong></a>, <a href="config.html#cfg_AllowArbitraryServer"><strong>[2]</strong></a>
  691. </dt>
  692. <dt><a href="config.html#cfg_AllowThirdPartyFraming"><strong>$cfg[&#39;AllowThirdPartyFraming&#39;]</strong></a>
  693. </dt>
  694. <dt><a href="config.html#cfg_AllowUserDropDatabase"><strong>$cfg[&#39;AllowUserDropDatabase&#39;]</strong></a>
  695. </dt>
  696. <dt><a href="config.html#cfg_AvailableCharsets"><strong>$cfg[&#39;AvailableCharsets&#39;]</strong></a>
  697. </dt>
  698. <dt><a href="config.html#cfg_BZipDump"><strong>$cfg[&#39;BZipDump&#39;]</strong></a>
  699. </dt>
  700. <dt><a href="config.html#cfg_BgOne"><strong>$cfg[&#39;BgOne&#39;]</strong></a>
  701. </dt>
  702. <dt><a href="config.html#cfg_BgTwo"><strong>$cfg[&#39;BgTwo&#39;]</strong></a>
  703. </dt>
  704. <dt><a href="config.html#cfg_Border"><strong>$cfg[&#39;Border&#39;]</strong></a>
  705. </dt>
  706. <dt><a href="config.html#cfg_BrowseMIME"><strong>$cfg[&#39;BrowseMIME&#39;]</strong></a>
  707. </dt>
  708. <dt><a href="config.html#cfg_BrowseMarkerBackground"><strong>$cfg[&#39;BrowseMarkerBackground&#39;]</strong></a>
  709. </dt>
  710. <dt><a href="config.html#cfg_BrowseMarkerColor"><strong>$cfg[&#39;BrowseMarkerColor&#39;]</strong></a>
  711. </dt>
  712. <dt><a href="config.html#cfg_BrowseMarkerEnable"><strong>$cfg[&#39;BrowseMarkerEnable&#39;]</strong></a>
  713. </dt>
  714. <dt><a href="config.html#cfg_BrowsePointerBackground"><strong>$cfg[&#39;BrowsePointerBackground&#39;]</strong></a>
  715. </dt>
  716. <dt><a href="config.html#cfg_BrowsePointerColor"><strong>$cfg[&#39;BrowsePointerColor&#39;]</strong></a>
  717. </dt>
  718. <dt><a href="config.html#cfg_BrowsePointerEnable"><strong>$cfg[&#39;BrowsePointerEnable&#39;]</strong></a>
  719. </dt>
  720. <dt><a href="config.html#cfg_CSPAllow"><strong>$cfg[&#39;CSPAllow&#39;]</strong></a>
  721. </dt>
  722. <dt><a href="setup.html#index-24"><strong>$cfg[&#39;CaptchaLoginPrivateKey&#39;]</strong></a>, <a href="config.html#cfg_CaptchaLoginPrivateKey"><strong>[1]</strong></a>
  723. </dt>
  724. <dt><a href="setup.html#index-23"><strong>$cfg[&#39;CaptchaLoginPublicKey&#39;]</strong></a>, <a href="config.html#cfg_CaptchaLoginPublicKey"><strong>[1]</strong></a>
  725. </dt>
  726. <dt><a href="config.html#cfg_CharEditing"><strong>$cfg[&#39;CharEditing&#39;]</strong></a>, <a href="config.html#index-76"><strong>[1]</strong></a>
  727. </dt>
  728. <dt><a href="config.html#cfg_CharTextareaCols"><strong>$cfg[&#39;CharTextareaCols&#39;]</strong></a>
  729. </dt>
  730. <dt><a href="config.html#cfg_CharTextareaRows"><strong>$cfg[&#39;CharTextareaRows&#39;]</strong></a>
  731. </dt>
  732. <dt><a href="config.html#cfg_CheckConfigurationPermissions"><strong>$cfg[&#39;CheckConfigurationPermissions&#39;]</strong></a>
  733. </dt>
  734. <dt><a href="config.html#cfg_CodemirrorEnable"><strong>$cfg[&#39;CodemirrorEnable&#39;]</strong></a>
  735. </dt>
  736. <dt><a href="faq.html#index-17"><strong>$cfg[&#39;CompressOnFly&#39;]</strong></a>, <a href="config.html#cfg_CompressOnFly"><strong>[1]</strong></a>
  737. </dt>
  738. <dt><a href="config.html#cfg_Confirm"><strong>$cfg[&#39;Confirm&#39;]</strong></a>
  739. </dt>
  740. <dt><a href="config.html#cfg_DBG"><strong>$cfg[&#39;DBG&#39;]</strong></a>
  741. </dt>
  742. <dt><a href="config.html#cfg_DBG_demo"><strong>$cfg[&#39;DBG&#39;][&#39;demo&#39;]</strong></a>
  743. </dt>
  744. <dt><a href="config.html#cfg_DBG_sql"><strong>$cfg[&#39;DBG&#39;][&#39;sql&#39;]</strong></a>
  745. </dt>
  746. <dt><a href="config.html#cfg_DefaultConnectionCollation"><strong>$cfg[&#39;DefaultConnectionCollation&#39;]</strong></a>
  747. </dt>
  748. <dt><a href="config.html#cfg_DefaultDisplay"><strong>$cfg[&#39;DefaultDisplay&#39;]</strong></a>
  749. </dt>
  750. <dt><a href="config.html#cfg_DefaultFunctions"><strong>$cfg[&#39;DefaultFunctions&#39;]</strong></a>
  751. </dt>
  752. <dt><a href="config.html#cfg_DefaultLang"><strong>$cfg[&#39;DefaultLang&#39;]</strong></a>
  753. </dt>
  754. <dt><a href="config.html#cfg_DefaultQueryDatabase"><strong>$cfg[&#39;DefaultQueryDatabase&#39;]</strong></a>
  755. </dt>
  756. <dt><a href="config.html#cfg_DefaultQueryTable"><strong>$cfg[&#39;DefaultQueryTable&#39;]</strong></a>
  757. </dt>
  758. <dt><a href="config.html#cfg_DefaultTabDatabase"><strong>$cfg[&#39;DefaultTabDatabase&#39;]</strong></a>
  759. </dt>
  760. <dt><a href="config.html#cfg_DefaultTabServer"><strong>$cfg[&#39;DefaultTabServer&#39;]</strong></a>
  761. </dt>
  762. <dt><a href="config.html#cfg_DefaultTabTable"><strong>$cfg[&#39;DefaultTabTable&#39;]</strong></a>
  763. </dt>
  764. <dt><a href="config.html#cfg_DisableMultiTableMaintenance"><strong>$cfg[&#39;DisableMultiTableMaintenance&#39;]</strong></a>
  765. </dt>
  766. <dt><a href="config.html#cfg_DisplayBinaryAsHex"><strong>$cfg[&#39;DisplayBinaryAsHex&#39;]</strong></a>
  767. </dt>
  768. <dt><a href="config.html#cfg_DisplayServersList"><strong>$cfg[&#39;DisplayServersList&#39;]</strong></a>
  769. </dt>
  770. <dt><a href="config.html#cfg_EditInWindow"><strong>$cfg[&#39;EditInWindow&#39;]</strong></a>, <a href="config.html#index-79"><strong>[1]</strong></a>
  771. </dt>
  772. <dt><a href="config.html#cfg_Error_Handler_display"><strong>$cfg[&#39;Error_Handler&#39;][&#39;display&#39;]</strong></a>
  773. </dt>
  774. <dt><a href="faq.html#index-25"><strong>$cfg[&#39;ExecTimeLimit&#39;]</strong></a>, <a href="config.html#cfg_ExecTimeLimit"><strong>[1]</strong></a>
  775. </dt>
  776. <dt><a href="config.html#cfg_Export"><strong>$cfg[&#39;Export&#39;]</strong></a>
  777. </dt>
  778. <dt><a href="config.html#index-72"><strong>$cfg[&#39;Export&#39;][&#39;charset&#39;]</strong></a>
  779. </dt>
  780. <dt><a href="config.html#cfg_Export_method"><strong>$cfg[&#39;Export&#39;][&#39;method&#39;]</strong></a>
  781. </dt>
  782. <dt><a href="config.html#cfg_FilterLanguages"><strong>$cfg[&#39;FilterLanguages&#39;]</strong></a>
  783. </dt>
  784. <dt><a href="config.html#cfg_FirstLevelNavigationItems"><strong>$cfg[&#39;FirstLevelNavigationItems&#39;]</strong></a>
  785. </dt>
  786. <dt><a href="config.html#cfg_FontFamily"><strong>$cfg[&#39;FontFamily&#39;]</strong></a>
  787. </dt>
  788. <dt><a href="config.html#cfg_FontFamilyFixed"><strong>$cfg[&#39;FontFamilyFixed&#39;]</strong></a>
  789. </dt>
  790. <dt><a href="config.html#cfg_ForceSSL"><strong>$cfg[&#39;ForceSSL&#39;]</strong></a>
  791. </dt>
  792. <dt><a href="config.html#index-70"><strong>$cfg[&#39;ForeignKeyDropdownOrder&#39;]</strong></a>, <a href="config.html#cfg_ForeignKeyDropdownOrder"><strong>[1]</strong></a>
  793. </dt>
  794. <dt><a href="faq.html#index-26"><strong>$cfg[&#39;ForeignKeyMaxLimit&#39;]</strong></a>, <a href="config.html#cfg_ForeignKeyMaxLimit"><strong>[1]</strong></a>
  795. </dt>
  796. <dt><a href="config.html#cfg_GD2Available"><strong>$cfg[&#39;GD2Available&#39;]</strong></a>
  797. </dt>
  798. <dt><a href="config.html#cfg_GZipDump"><strong>$cfg[&#39;GZipDump&#39;]</strong></a>
  799. </dt>
  800. <dt><a href="config.html#cfg_GridEditing"><strong>$cfg[&#39;GridEditing&#39;]</strong></a>
  801. </dt>
  802. <dt><a href="config.html#cfg_HeaderFlipType"><strong>$cfg[&#39;HeaderFlipType&#39;]</strong></a>
  803. </dt>
  804. <dt><a href="config.html#cfg_HideStructureActions"><strong>$cfg[&#39;HideStructureActions&#39;]</strong></a>
  805. </dt>
  806. <dt><a href="config.html#cfg_IconvExtraParams"><strong>$cfg[&#39;IconvExtraParams&#39;]</strong></a>
  807. </dt>
  808. <dt><a href="config.html#cfg_IgnoreMultiSubmitErrors"><strong>$cfg[&#39;IgnoreMultiSubmitErrors&#39;]</strong></a>
  809. </dt>
  810. <dt><a href="config.html#cfg_Import"><strong>$cfg[&#39;Import&#39;]</strong></a>
  811. </dt>
  812. <dt><a href="config.html#index-73"><strong>$cfg[&#39;Import&#39;][&#39;charset&#39;]</strong></a>
  813. </dt>
  814. <dt><a href="config.html#cfg_InitialSlidersState"><strong>$cfg[&#39;InitialSlidersState&#39;]</strong></a>
  815. </dt>
  816. <dt><a href="config.html#cfg_InsertRows"><strong>$cfg[&#39;InsertRows&#39;]</strong></a>
  817. </dt>
  818. <dt><a href="config.html#cfg_Lang"><strong>$cfg[&#39;Lang&#39;]</strong></a>
  819. </dt>
  820. <dt><a href="config.html#cfg_LimitChars"><strong>$cfg[&#39;LimitChars&#39;]</strong></a>
  821. </dt>
  822. <dt><a href="config.html#cfg_LinkLengthLimit"><strong>$cfg[&#39;LinkLengthLimit&#39;]</strong></a>
  823. </dt>
  824. <dt><a href="config.html#cfg_LoginCookieDeleteAll"><strong>$cfg[&#39;LoginCookieDeleteAll&#39;]</strong></a>
  825. </dt>
  826. <dt><a href="config.html#cfg_LoginCookieRecall"><strong>$cfg[&#39;LoginCookieRecall&#39;]</strong></a>
  827. </dt>
  828. <dt><a href="config.html#cfg_LoginCookieStore"><strong>$cfg[&#39;LoginCookieStore&#39;]</strong></a>
  829. </dt>
  830. <dt><a href="config.html#cfg_LoginCookieValidity"><strong>$cfg[&#39;LoginCookieValidity&#39;]</strong></a>, <a href="config.html#index-67"><strong>[1]</strong></a>
  831. </dt>
  832. <dt><a href="config.html#cfg_LongtextDoubleTextarea"><strong>$cfg[&#39;LongtextDoubleTextarea&#39;]</strong></a>
  833. </dt>
  834. <dt><a href="config.html#cfg_MainBackground"><strong>$cfg[&#39;MainBackground&#39;]</strong></a>
  835. </dt>
  836. <dt><a href="config.html#cfg_MaxCharactersInDisplayedSQL"><strong>$cfg[&#39;MaxCharactersInDisplayedSQL&#39;]</strong></a>
  837. </dt>
  838. <dt><a href="config.html#cfg_MaxDbList"><strong>$cfg[&#39;MaxDbList&#39;]</strong></a>
  839. </dt>
  840. <dt><a href="faq.html#index-19"><strong>$cfg[&#39;MaxExactCount&#39;]</strong></a>, <a href="config.html#cfg_MaxExactCount"><strong>[1]</strong></a>
  841. </dt>
  842. <dt><a href="config.html#cfg_MaxExactCountViews"><strong>$cfg[&#39;MaxExactCountViews&#39;]</strong></a>
  843. </dt>
  844. <dt><a href="config.html#cfg_MaxNavigationItems"><strong>$cfg[&#39;MaxNavigationItems&#39;]</strong></a>
  845. </dt>
  846. <dt><a href="config.html#cfg_MaxRows"><strong>$cfg[&#39;MaxRows&#39;]</strong></a>
  847. </dt>
  848. <dt><a href="config.html#cfg_MaxSizeForInputField"><strong>$cfg[&#39;MaxSizeForInputField&#39;]</strong></a>
  849. </dt>
  850. <dt><a href="config.html#cfg_MaxTableList"><strong>$cfg[&#39;MaxTableList&#39;]</strong></a>
  851. </dt>
  852. <dt><a href="config.html#cfg_MemoryLimit"><strong>$cfg[&#39;MemoryLimit&#39;]</strong></a>
  853. </dt>
  854. <dt><a href="config.html#cfg_MinSizeForInputField"><strong>$cfg[&#39;MinSizeForInputField&#39;]</strong></a>
  855. </dt>
  856. <dt><a href="config.html#cfg_NaturalOrder"><strong>$cfg[&#39;NaturalOrder&#39;]</strong></a>
  857. </dt>
  858. <dt><a href="config.html#cfg_NaviBackground"><strong>$cfg[&#39;NaviBackground&#39;]</strong></a>
  859. </dt>
  860. <dt><a href="config.html#cfg_NaviPointerBackground"><strong>$cfg[&#39;NaviPointerBackground&#39;]</strong></a>
  861. </dt>
  862. <dt><a href="config.html#cfg_NaviPointerColor"><strong>$cfg[&#39;NaviPointerColor&#39;]</strong></a>
  863. </dt>
  864. <dt><a href="config.html#cfg_NaviWidth"><strong>$cfg[&#39;NaviWidth&#39;]</strong></a>
  865. </dt>
  866. <dt><a href="config.html#cfg_NavigationDisplayLogo"><strong>$cfg[&#39;NavigationDisplayLogo&#39;]</strong></a>
  867. </dt>
  868. <dt><a href="config.html#cfg_NavigationDisplayServers"><strong>$cfg[&#39;NavigationDisplayServers&#39;]</strong></a>
  869. </dt>
  870. <dt><a href="config.html#cfg_NavigationLogoLink"><strong>$cfg[&#39;NavigationLogoLink&#39;]</strong></a>
  871. </dt>
  872. <dt><a href="config.html#cfg_NavigationLogoLinkWindow"><strong>$cfg[&#39;NavigationLogoLinkWindow&#39;]</strong></a>
  873. </dt>
  874. <dt><a href="config.html#index-68"><strong>$cfg[&#39;NavigationTreeDbSeparator&#39;]</strong></a>, <a href="config.html#cfg_NavigationTreeDbSeparator"><strong>[1]</strong></a>
  875. </dt>
  876. <dt><a href="config.html#index-35"><strong>$cfg[&#39;NavigationTreeDefaultTabTable&#39;]</strong></a>, <a href="config.html#cfg_NavigationTreeDefaultTabTable"><strong>[1]</strong></a>
  877. </dt>
  878. <dt><a href="config.html#cfg_NavigationTreeDisableDatabaseExpansion"><strong>$cfg[&#39;NavigationTreeDisableDatabaseExpansion&#39;]</strong></a>
  879. </dt>
  880. <dt><a href="config.html#cfg_NavigationTreeDisplayDbFilterMinimum"><strong>$cfg[&#39;NavigationTreeDisplayDbFilterMinimum&#39;]</strong></a>
  881. </dt>
  882. <dt><a href="config.html#cfg_NavigationTreeDisplayItemFilterMinimum"><strong>$cfg[&#39;NavigationTreeDisplayItemFilterMinimum&#39;]</strong></a>
  883. </dt>
  884. <dt><a href="config.html#cfg_NavigationTreeEnableGrouping"><strong>$cfg[&#39;NavigationTreeEnableGrouping&#39;]</strong></a>
  885. </dt>
  886. <dt><a href="config.html#cfg_NavigationTreePointerEnable"><strong>$cfg[&#39;NavigationTreePointerEnable&#39;]</strong></a>
  887. </dt>
  888. <dt><a href="config.html#cfg_NavigationTreeTableLevel"><strong>$cfg[&#39;NavigationTreeTableLevel&#39;]</strong></a>
  889. </dt>
  890. <dt><a href="faq.html#index-18"><strong>$cfg[&#39;NavigationTreeTableSeparator&#39;]</strong></a>, <a href="config.html#cfg_NavigationTreeTableSeparator"><strong>[1]</strong></a>
  891. </dt>
  892. <dt><a href="faq.html#index-30"><strong>$cfg[&#39;NumFavoriteTables&#39;]</strong></a>
  893. </dt>
  894. <dt><a href="config.html#index-34"><strong>$cfg[&#39;NumRecentTables&#39;]</strong></a>, <a href="config.html#cfg_NumRecentTables"><strong>[1]</strong></a>
  895. </dt>
  896. <dt><a href="faq.html#index-0"><strong>$cfg[&#39;OBGzip&#39;]</strong></a>, <a href="faq.html#index-3"><strong>[1]</strong></a>, <a href="faq.html#index-7"><strong>[2]</strong></a>, <a href="config.html#cfg_OBGzip"><strong>[3]</strong></a>
  897. </dt>
  898. <dt><a href="config.html#cfg_Order"><strong>$cfg[&#39;Order&#39;]</strong></a>
  899. </dt>
  900. <dt><a href="config.html#cfg_PDFDefaultPageSize"><strong>$cfg[&#39;PDFDefaultPageSize&#39;]</strong></a>
  901. </dt>
  902. <dt><a href="config.html#cfg_PDFPageSizes"><strong>$cfg[&#39;PDFPageSizes&#39;]</strong></a>, <a href="config.html#index-71"><strong>[1]</strong></a>
  903. </dt>
  904. <dt><a href="config.html#cfg_PersistentConnections"><strong>$cfg[&#39;PersistentConnections&#39;]</strong></a>
  905. </dt>
  906. <dt><a href="faq.html#index-8"><strong>$cfg[&#39;PmaAbsoluteUri&#39;]</strong></a>, <a href="faq.html#index-15"><strong>[1]</strong></a>, <a href="faq.html#index-23"><strong>[2]</strong></a>, <a href="faq.html#index-24"><strong>[3]</strong></a>, <a href="config.html#cfg_PmaAbsoluteUri"><strong>[4]</strong></a>, <a href="config.html#index-1"><strong>[5]</strong></a>, <a href="config.html#index-65"><strong>[6]</strong></a>
  907. </dt>
  908. <dt><a href="config.html#cfg_PmaNoRelation_DisableWarning"><strong>$cfg[&#39;PmaNoRelation_DisableWarning&#39;]</strong></a>
  909. </dt>
  910. <dt><a href="config.html#cfg_PropertiesNumColumns"><strong>$cfg[&#39;PropertiesNumColumns&#39;]</strong></a>
  911. </dt>
  912. <dt><a href="config.html#cfg_ProtectBinary"><strong>$cfg[&#39;ProtectBinary&#39;]</strong></a>
  913. </dt>
  914. <dt><a href="config.html#cfg_ProxyPass"><strong>$cfg[&#39;ProxyPass&#39;]</strong></a>
  915. </dt>
  916. <dt><a href="config.html#cfg_ProxyUrl"><strong>$cfg[&#39;ProxyUrl&#39;]</strong></a>
  917. </dt>
  918. <dt><a href="config.html#cfg_ProxyUser"><strong>$cfg[&#39;ProxyUser&#39;]</strong></a>
  919. </dt>
  920. <dt><a href="config.html#cfg_QueryHistoryDB"><strong>$cfg[&#39;QueryHistoryDB&#39;]</strong></a>, <a href="config.html#index-80"><strong>[1]</strong></a>, <a href="config.html#index-82"><strong>[2]</strong></a>
  921. </dt>
  922. <dt><a href="config.html#index-31"><strong>$cfg[&#39;QueryHistoryMax&#39;]</strong></a>, <a href="config.html#cfg_QueryHistoryMax"><strong>[1]</strong></a>, <a href="config.html#index-83"><strong>[2]</strong></a>
  923. </dt>
  924. <dt><a href="config.html#cfg_QueryWindowDefTab"><strong>$cfg[&#39;QueryWindowDefTab&#39;]</strong></a>, <a href="config.html#index-84"><strong>[1]</strong></a>
  925. </dt>
  926. <dt><a href="config.html#cfg_QueryWindowHeight"><strong>$cfg[&#39;QueryWindowHeight&#39;]</strong></a>, <a href="config.html#index-78"><strong>[1]</strong></a>
  927. </dt>
  928. <dt><a href="config.html#cfg_QueryWindowWidth"><strong>$cfg[&#39;QueryWindowWidth&#39;]</strong></a>, <a href="config.html#index-77"><strong>[1]</strong></a>
  929. </dt>
  930. <dt><a href="config.html#cfg_RecodingEngine"><strong>$cfg[&#39;RecodingEngine&#39;]</strong></a>
  931. </dt>
  932. <dt><a href="config.html#index-38"><strong>$cfg[&#39;RememberSorting&#39;]</strong></a>, <a href="config.html#cfg_RememberSorting"><strong>[1]</strong></a>
  933. </dt>
  934. <dt><a href="config.html#cfg_RepeatCells"><strong>$cfg[&#39;RepeatCells&#39;]</strong></a>
  935. </dt>
  936. <dt><a href="config.html#cfg_ReservedWordDisableWarning"><strong>$cfg[&#39;ReservedWordDisableWarning&#39;]</strong></a>
  937. </dt>
  938. <dt><a href="config.html#cfg_RetainQueryBox"><strong>$cfg[&#39;RetainQueryBox&#39;]</strong></a>
  939. </dt>
  940. <dt><a href="config.html#cfg_RowActionLinks"><strong>$cfg[&#39;RowActionLinks&#39;]</strong></a>
  941. </dt>
  942. <dt><a href="config.html#cfg_RowActionType"><strong>$cfg[&#39;RowActionType&#39;]</strong></a>
  943. </dt>
  944. <dt><a href="config.html#cfg_SQLQuery_Edit"><strong>$cfg[&#39;SQLQuery&#39;][&#39;Edit&#39;]</strong></a>
  945. </dt>
  946. <dt><a href="config.html#cfg_SQLQuery_Explain"><strong>$cfg[&#39;SQLQuery&#39;][&#39;Explain&#39;]</strong></a>
  947. </dt>
  948. <dt><a href="config.html#cfg_SQLQuery_Refresh"><strong>$cfg[&#39;SQLQuery&#39;][&#39;Refresh&#39;]</strong></a>
  949. </dt>
  950. <dt><a href="config.html#cfg_SQLQuery_ShowAsPHP"><strong>$cfg[&#39;SQLQuery&#39;][&#39;ShowAsPHP&#39;]</strong></a>
  951. </dt>
  952. <dt><a href="config.html#cfg_SaveCellsAtOnce"><strong>$cfg[&#39;SaveCellsAtOnce&#39;]</strong></a>
  953. </dt>
  954. <dt><a href="config.html#cfg_SaveDir"><strong>$cfg[&#39;SaveDir&#39;]</strong></a>
  955. </dt>
  956. <dt><a href="config.html#cfg_SendErrorReports"><strong>$cfg[&#39;SendErrorReports&#39;]</strong></a>
  957. </dt>
  958. <dt><a href="config.html#cfg_ServerDefault"><strong>$cfg[&#39;ServerDefault&#39;]</strong></a>, <a href="config.html#index-63"><strong>[1]</strong></a>, <a href="config.html#index-64"><strong>[2]</strong></a>
  959. </dt>
  960. <dt><a href="config.html#cfg_ServerLibraryDifference_DisableWarning"><strong>$cfg[&#39;ServerLibraryDifference_DisableWarning&#39;]</strong></a>
  961. </dt>
  962. <dt><a href="setup.html#index-6"><strong>$cfg[&#39;Servers&#39;]</strong></a>, <a href="config.html#cfg_Servers"><strong>[1]</strong></a>, <a href="config.html#index-4"><strong>[2]</strong></a>, <a href="config.html#index-7"><strong>[3]</strong></a>
  963. </dt>
  964. <dt><a href="setup.html#index-18"><strong>$cfg[&#39;Servers&#39;][$i][&#39;AllowDeny&#39;][&#39;order&#39;]</strong></a>, <a href="config.html#cfg_Servers_AllowDeny_order"><strong>[1]</strong></a>, <a href="config.html#index-74"><strong>[2]</strong></a>
  965. </dt>
  966. <dt><a href="setup.html#index-19"><strong>$cfg[&#39;Servers&#39;][$i][&#39;AllowDeny&#39;][&#39;rules&#39;]</strong></a>, <a href="setup.html#index-22"><strong>[1]</strong></a>, <a href="faq.html#index-22"><strong>[2]</strong></a>, <a href="config.html#index-58"><strong>[3]</strong></a>, <a href="config.html#cfg_Servers_AllowDeny_rules"><strong>[4]</strong></a>, <a href="config.html#index-75"><strong>[5]</strong></a>
  967. </dt>
  968. <dt><a href="config.html#cfg_Servers_AllowNoPassword"><strong>$cfg[&#39;Servers&#39;][$i][&#39;AllowNoPassword&#39;]</strong></a>
  969. </dt>
  970. <dt><a href="config.html#cfg_Servers_AllowRoot"><strong>$cfg[&#39;Servers&#39;][$i][&#39;AllowRoot&#39;]</strong></a>
  971. </dt>
  972. <dt><a href="config.html#cfg_Servers_LogoutURL"><strong>$cfg[&#39;Servers&#39;][$i][&#39;LogoutURL&#39;]</strong></a>
  973. </dt>
  974. <dt><a href="config.html#cfg_Servers_MaxTableUiprefs"><strong>$cfg[&#39;Servers&#39;][$i][&#39;MaxTableUiprefs&#39;]</strong></a>
  975. </dt>
  976. <dt><a href="setup.html#index-13"><strong>$cfg[&#39;Servers&#39;][$i][&#39;SignonScript&#39;]</strong></a>, <a href="config.html#index-12"><strong>[1]</strong></a>, <a href="config.html#cfg_Servers_SignonScript"><strong>[2]</strong></a>, <a href="config.html#index-60"><strong>[3]</strong></a>
  977. </dt>
  978. <dt><a href="setup.html#index-12"><strong>$cfg[&#39;Servers&#39;][$i][&#39;SignonSession&#39;]</strong></a>, <a href="config.html#index-11"><strong>[1]</strong></a>, <a href="config.html#cfg_Servers_SignonSession"><strong>[2]</strong></a>
  979. </dt>
  980. <dt><a href="setup.html#index-14"><strong>$cfg[&#39;Servers&#39;][$i][&#39;SignonURL&#39;]</strong></a>, <a href="config.html#index-13"><strong>[1]</strong></a>, <a href="config.html#cfg_Servers_SignonURL"><strong>[2]</strong></a>
  981. </dt>
  982. <dt><a href="config.html#cfg_Servers_StatusCacheDatabases"><strong>$cfg[&#39;Servers&#39;][$i][&#39;StatusCacheDatabases&#39;]</strong></a>, <a href="config.html#index-62"><strong>[1]</strong></a>
  983. </dt>
  984. <dt><a href="config.html#index-61"><strong>$cfg[&#39;Servers&#39;][$i][&#39;StatusCacheLifetime&#39;]</strong></a>, <a href="config.html#cfg_Servers_StatusCacheLifetime"><strong>[1]</strong></a>
  985. </dt>
  986. <dt><a href="config.html#cfg_Servers_auth_http_realm"><strong>$cfg[&#39;Servers&#39;][$i][&#39;auth_http_realm&#39;]</strong></a>
  987. </dt>
  988. <dt><a href="setup.html#index-21"><strong>$cfg[&#39;Servers&#39;][$i][&#39;auth_swekey_config&#39;]</strong></a>, <a href="config.html#cfg_Servers_auth_swekey_config"><strong>[1]</strong></a>
  989. </dt>
  990. <dt><a href="setup.html#index-11"><strong>$cfg[&#39;Servers&#39;][$i][&#39;auth_type&#39;]</strong></a>, <a href="config.html#cfg_Servers_auth_type"><strong>[1]</strong></a>, <a href="config.html#index-16"><strong>[2]</strong></a>
  991. </dt>
  992. <dt><a href="config.html#cfg_Servers_bookmarktable"><strong>$cfg[&#39;Servers&#39;][$i][&#39;bookmarktable&#39;]</strong></a>, <a href="config.html#index-19"><strong>[1]</strong></a>
  993. </dt>
  994. <dt><a href="config.html#index-29"><strong>$cfg[&#39;Servers&#39;][$i][&#39;column_comments&#39;]</strong></a>
  995. </dt>
  996. <dt><a href="config.html#cfg_Servers_column_info"><strong>$cfg[&#39;Servers&#39;][$i][&#39;column_info&#39;]</strong></a>, <a href="config.html#index-28"><strong>[1]</strong></a>, <a href="config.html#index-30"><strong>[2]</strong></a>
  997. </dt>
  998. <dt><a href="config.html#cfg_Servers_compress"><strong>$cfg[&#39;Servers&#39;][$i][&#39;compress&#39;]</strong></a>
  999. </dt>
  1000. <dt><a href="config.html#cfg_Servers_connect_type"><strong>$cfg[&#39;Servers&#39;][$i][&#39;connect_type&#39;]</strong></a>
  1001. </dt>
  1002. <dt><a href="config.html#cfg_Servers_controlhost"><strong>$cfg[&#39;Servers&#39;][$i][&#39;controlhost&#39;]</strong></a>
  1003. </dt>
  1004. <dt><a href="setup.html#index-3"><strong>$cfg[&#39;Servers&#39;][$i][&#39;controlpass&#39;]</strong></a>, <a href="faq.html#index-21"><strong>[1]</strong></a>, <a href="config.html#cfg_Servers_controlpass"><strong>[2]</strong></a>
  1005. </dt>
  1006. <dt><a href="config.html#cfg_Servers_controlport"><strong>$cfg[&#39;Servers&#39;][$i][&#39;controlport&#39;]</strong></a>
  1007. </dt>
  1008. <dt><a href="setup.html#index-2"><strong>$cfg[&#39;Servers&#39;][$i][&#39;controluser&#39;]</strong></a>, <a href="setup.html#index-5"><strong>[1]</strong></a>, <a href="faq.html#index-20"><strong>[2]</strong></a>, <a href="config.html#cfg_Servers_controluser"><strong>[3]</strong></a>
  1009. </dt>
  1010. <dt><a href="config.html#cfg_Servers_designer_coords"><strong>$cfg[&#39;Servers&#39;][$i][&#39;designer_coords&#39;]</strong></a>, <a href="config.html#index-54"><strong>[1]</strong></a>
  1011. </dt>
  1012. <dt><a href="config.html#cfg_Servers_hide_db"><strong>$cfg[&#39;Servers&#39;][$i][&#39;hide_db&#39;]</strong></a>
  1013. </dt>
  1014. <dt><a href="config.html#cfg_Servers_history"><strong>$cfg[&#39;Servers&#39;][$i][&#39;history&#39;]</strong></a>, <a href="config.html#index-33"><strong>[1]</strong></a>, <a href="config.html#index-81"><strong>[2]</strong></a>
  1015. </dt>
  1016. <dt><a href="config.html#index-5"><strong>$cfg[&#39;Servers&#39;][$i][&#39;host&#39;]</strong></a>, <a href="config.html#index-6"><strong>[1]</strong></a>, <a href="config.html#cfg_Servers_host"><strong>[2]</strong></a>, <a href="config.html#index-8"><strong>[3]</strong></a>, <a href="config.html#index-15"><strong>[4]</strong></a>
  1017. </dt>
  1018. <dt><a href="config.html#cfg_Servers_navigationhiding"><strong>$cfg[&#39;Servers&#39;][$i][&#39;navigationhiding&#39;]</strong></a>, <a href="config.html#index-45"><strong>[1]</strong></a>
  1019. </dt>
  1020. <dt><a href="config.html#cfg_Servers_nopassword"><strong>$cfg[&#39;Servers&#39;][$i][&#39;nopassword&#39;]</strong></a>
  1021. </dt>
  1022. <dt><a href="config.html#cfg_Servers_only_db"><strong>$cfg[&#39;Servers&#39;][$i][&#39;only_db&#39;]</strong></a>
  1023. </dt>
  1024. <dt><a href="setup.html#index-17"><strong>$cfg[&#39;Servers&#39;][$i][&#39;password&#39;]</strong></a>, <a href="config.html#cfg_Servers_password"><strong>[1]</strong></a>
  1025. </dt>
  1026. <dt><a href="config.html#cfg_Servers_pdf_pages"><strong>$cfg[&#39;Servers&#39;][$i][&#39;pdf_pages&#39;]</strong></a>, <a href="config.html#index-26"><strong>[1]</strong></a>
  1027. </dt>
  1028. <dt><a href="config.html#index-2"><strong>$cfg[&#39;Servers&#39;][$i][&#39;pmadb&#39;]</strong></a>, <a href="config.html#index-9"><strong>[1]</strong></a>, <a href="config.html#cfg_Servers_pmadb"><strong>[2]</strong></a>, <a href="config.html#index-17"><strong>[3]</strong></a>, <a href="config.html#index-18"><strong>[4]</strong></a>, <a href="config.html#index-20"><strong>[5]</strong></a>, <a href="config.html#index-22"><strong>[6]</strong></a>, <a href="config.html#index-24"><strong>[7]</strong></a>, <a href="config.html#index-27"><strong>[8]</strong></a>, <a href="config.html#index-32"><strong>[9]</strong></a>, <a href="config.html#index-36"><strong>[10]</strong></a>, <a href="config.html#index-39"><strong>[11]</strong></a>, <a href="config.html#index-41"><strong>[12]</strong></a>, <a href="config.html#index-44"><strong>[13]</strong></a>, <a href="config.html#index-46"><strong>[14]</strong></a>, <a href="config.html#index-48"><strong>[15]</strong></a>, <a href="config.html#index-50"><strong>[16]</strong></a>, <a href="config.html#index-51"><strong>[17]</strong></a>, <a href="config.html#index-53"><strong>[18]</strong></a>
  1029. </dt>
  1030. <dt><a href="config.html#cfg_Servers_port"><strong>$cfg[&#39;Servers&#39;][$i][&#39;port&#39;]</strong></a>
  1031. </dt>
  1032. <dt><a href="config.html#cfg_Servers_recent"><strong>$cfg[&#39;Servers&#39;][$i][&#39;recent&#39;]</strong></a>, <a href="config.html#index-37"><strong>[1]</strong></a>
  1033. </dt>
  1034. <dt><a href="config.html#cfg_Servers_relation"><strong>$cfg[&#39;Servers&#39;][$i][&#39;relation&#39;]</strong></a>, <a href="config.html#index-21"><strong>[1]</strong></a>
  1035. </dt>
  1036. <dt><a href="config.html#cfg_Servers_savedsearches"><strong>$cfg[&#39;Servers&#39;][$i][&#39;savedsearches&#39;]</strong></a>, <a href="config.html#index-47"><strong>[1]</strong></a>
  1037. </dt>
  1038. <dt><a href="faq.html#index-6"><strong>$cfg[&#39;Servers&#39;][$i][&#39;socket&#39;]</strong></a>, <a href="config.html#cfg_Servers_socket"><strong>[1]</strong></a>
  1039. </dt>
  1040. <dt><a href="config.html#cfg_Servers_ssl"><strong>$cfg[&#39;Servers&#39;][$i][&#39;ssl&#39;]</strong></a>
  1041. </dt>
  1042. <dt><a href="config.html#cfg_Servers_ssl_ca"><strong>$cfg[&#39;Servers&#39;][$i][&#39;ssl_ca&#39;]</strong></a>
  1043. </dt>
  1044. <dt><a href="config.html#cfg_Servers_ssl_ca_path"><strong>$cfg[&#39;Servers&#39;][$i][&#39;ssl_ca_path&#39;]</strong></a>
  1045. </dt>
  1046. <dt><a href="config.html#cfg_Servers_ssl_cert"><strong>$cfg[&#39;Servers&#39;][$i][&#39;ssl_cert&#39;]</strong></a>
  1047. </dt>
  1048. <dt><a href="config.html#cfg_Servers_ssl_ciphers"><strong>$cfg[&#39;Servers&#39;][$i][&#39;ssl_ciphers&#39;]</strong></a>
  1049. </dt>
  1050. <dt><a href="config.html#cfg_Servers_ssl_key"><strong>$cfg[&#39;Servers&#39;][$i][&#39;ssl_key&#39;]</strong></a>
  1051. </dt>
  1052. <dt><a href="config.html#cfg_Servers_table_coords"><strong>$cfg[&#39;Servers&#39;][$i][&#39;table_coords&#39;]</strong></a>, <a href="config.html#index-25"><strong>[1]</strong></a>
  1053. </dt>
  1054. <dt><a href="config.html#cfg_Servers_table_info"><strong>$cfg[&#39;Servers&#39;][$i][&#39;table_info&#39;]</strong></a>, <a href="config.html#index-23"><strong>[1]</strong></a>
  1055. </dt>
  1056. <dt><a href="config.html#cfg_Servers_table_uiprefs"><strong>$cfg[&#39;Servers&#39;][$i][&#39;table_uiprefs&#39;]</strong></a>, <a href="config.html#index-40"><strong>[1]</strong></a>, <a href="config.html#index-55"><strong>[2]</strong></a>, <a href="config.html#index-56"><strong>[3]</strong></a>, <a href="config.html#index-57"><strong>[4]</strong></a>
  1057. </dt>
  1058. <dt><a href="config.html#cfg_Servers_tracking"><strong>$cfg[&#39;Servers&#39;][$i][&#39;tracking&#39;]</strong></a>, <a href="config.html#index-49"><strong>[1]</strong></a>
  1059. </dt>
  1060. <dt><a href="config.html#cfg_Servers_tracking_add_drop_database"><strong>$cfg[&#39;Servers&#39;][$i][&#39;tracking_add_drop_database&#39;]</strong></a>
  1061. </dt>
  1062. <dt><a href="config.html#cfg_Servers_tracking_add_drop_table"><strong>$cfg[&#39;Servers&#39;][$i][&#39;tracking_add_drop_table&#39;]</strong></a>
  1063. </dt>
  1064. <dt><a href="config.html#cfg_Servers_tracking_add_drop_view"><strong>$cfg[&#39;Servers&#39;][$i][&#39;tracking_add_drop_view&#39;]</strong></a>
  1065. </dt>
  1066. <dt><a href="config.html#cfg_Servers_tracking_default_statements"><strong>$cfg[&#39;Servers&#39;][$i][&#39;tracking_default_statements&#39;]</strong></a>
  1067. </dt>
  1068. <dt><a href="config.html#cfg_Servers_tracking_version_auto_create"><strong>$cfg[&#39;Servers&#39;][$i][&#39;tracking_version_auto_create&#39;]</strong></a>
  1069. </dt>
  1070. <dt><a href="setup.html#index-16"><strong>$cfg[&#39;Servers&#39;][$i][&#39;user&#39;]</strong></a>, <a href="config.html#cfg_Servers_user"><strong>[1]</strong></a>
  1071. </dt>
  1072. <dt><a href="config.html#cfg_Servers_userconfig"><strong>$cfg[&#39;Servers&#39;][$i][&#39;userconfig&#39;]</strong></a>, <a href="config.html#index-52"><strong>[1]</strong></a>
  1073. </dt>
  1074. <dt><a href="config.html#cfg_Servers_usergroups"><strong>$cfg[&#39;Servers&#39;][$i][&#39;usergroups&#39;]</strong></a>, <a href="config.html#index-43"><strong>[1]</strong></a>
  1075. </dt>
  1076. <dt><a href="config.html#cfg_Servers_users"><strong>$cfg[&#39;Servers&#39;][$i][&#39;users&#39;]</strong></a>, <a href="config.html#index-42"><strong>[1]</strong></a>
  1077. </dt>
  1078. <dt><a href="faq.html#index-27"><strong>$cfg[&#39;Servers&#39;][$i][&#39;verbose&#39;]</strong></a>, <a href="config.html#index-14"><strong>[1]</strong></a>, <a href="config.html#cfg_Servers_verbose"><strong>[2]</strong></a>, <a href="config.html#index-69"><strong>[3]</strong></a>
  1079. </dt>
  1080. <dt><a href="config.html#cfg_SessionSavePath"><strong>$cfg[&#39;SessionSavePath&#39;]</strong></a>
  1081. </dt>
  1082. <dt><a href="config.html#cfg_ShowAll"><strong>$cfg[&#39;ShowAll&#39;]</strong></a>
  1083. </dt>
  1084. <dt><a href="config.html#cfg_ShowBrowseComments"><strong>$cfg[&#39;ShowBrowseComments&#39;]</strong></a>
  1085. </dt>
  1086. <dt><a href="config.html#cfg_ShowChgPassword"><strong>$cfg[&#39;ShowChgPassword&#39;]</strong></a>
  1087. </dt>
  1088. <dt><a href="config.html#cfg_ShowCreateDb"><strong>$cfg[&#39;ShowCreateDb&#39;]</strong></a>
  1089. </dt>
  1090. <dt><a href="config.html#cfg_ShowDbStructureCreation"><strong>$cfg[&#39;ShowDbStructureCreation&#39;]</strong></a>
  1091. </dt>
  1092. <dt><a href="config.html#cfg_ShowDbStructureLastCheck"><strong>$cfg[&#39;ShowDbStructureLastCheck&#39;]</strong></a>
  1093. </dt>
  1094. <dt><a href="config.html#cfg_ShowDbStructureLastUpdate"><strong>$cfg[&#39;ShowDbStructureLastUpdate&#39;]</strong></a>
  1095. </dt>
  1096. <dt><a href="config.html#cfg_ShowDisplayDirection"><strong>$cfg[&#39;ShowDisplayDirection&#39;]</strong></a>
  1097. </dt>
  1098. <dt><a href="config.html#cfg_ShowFieldTypesInDataEditView"><strong>$cfg[&#39;ShowFieldTypesInDataEditView&#39;]</strong></a>
  1099. </dt>
  1100. <dt><a href="config.html#cfg_ShowFunctionFields"><strong>$cfg[&#39;ShowFunctionFields&#39;]</strong></a>
  1101. </dt>
  1102. <dt><a href="config.html#cfg_ShowHint"><strong>$cfg[&#39;ShowHint&#39;]</strong></a>
  1103. </dt>
  1104. <dt><a href="config.html#cfg_ShowPhpInfo"><strong>$cfg[&#39;ShowPhpInfo&#39;]</strong></a>
  1105. </dt>
  1106. <dt><a href="config.html#cfg_ShowPropertyComments"><strong>$cfg[&#39;ShowPropertyComments&#39;]</strong></a>
  1107. </dt>
  1108. <dt><a href="config.html#cfg_ShowSQL"><strong>$cfg[&#39;ShowSQL&#39;]</strong></a>
  1109. </dt>
  1110. <dt><a href="config.html#cfg_ShowServerInfo"><strong>$cfg[&#39;ShowServerInfo&#39;]</strong></a>
  1111. </dt>
  1112. <dt><a href="config.html#cfg_ShowStats"><strong>$cfg[&#39;ShowStats&#39;]</strong></a>
  1113. </dt>
  1114. <dt><a href="config.html#cfg_SkipLockedTables"><strong>$cfg[&#39;SkipLockedTables&#39;]</strong></a>
  1115. </dt>
  1116. <dt><a href="faq.html#index-5"><strong>$cfg[&#39;SuhosinDisableWarning&#39;]</strong></a>, <a href="config.html#cfg_SuhosinDisableWarning"><strong>[1]</strong></a>
  1117. </dt>
  1118. <dt><a href="config.html#cfg_TableNavigationLinksMode"><strong>$cfg[&#39;TableNavigationLinksMode&#39;]</strong></a>
  1119. </dt>
  1120. <dt><a href="config.html#cfg_TabsMode"><strong>$cfg[&#39;TabsMode&#39;]</strong></a>
  1121. </dt>
  1122. <dt><a href="faq.html#index-1"><strong>$cfg[&#39;TempDir&#39;]</strong></a>, <a href="faq.html#index-29"><strong>[1]</strong></a>, <a href="config.html#cfg_TempDir"><strong>[2]</strong></a>
  1123. </dt>
  1124. <dt><a href="config.html#cfg_TextareaAutoSelect"><strong>$cfg[&#39;TextareaAutoSelect&#39;]</strong></a>
  1125. </dt>
  1126. <dt><a href="config.html#cfg_TextareaCols"><strong>$cfg[&#39;TextareaCols&#39;]</strong></a>
  1127. </dt>
  1128. <dt><a href="config.html#cfg_TextareaRows"><strong>$cfg[&#39;TextareaRows&#39;]</strong></a>
  1129. </dt>
  1130. <dt><a href="config.html#cfg_ThBackground"><strong>$cfg[&#39;ThBackground&#39;]</strong></a>
  1131. </dt>
  1132. <dt><a href="config.html#cfg_ThColor"><strong>$cfg[&#39;ThColor&#39;]</strong></a>
  1133. </dt>
  1134. <dt><a href="faq.html#index-11"><strong>$cfg[&#39;ThemeDefault&#39;]</strong></a>, <a href="config.html#cfg_ThemeDefault"><strong>[1]</strong></a>
  1135. </dt>
  1136. <dt><a href="faq.html#index-10"><strong>$cfg[&#39;ThemeManager&#39;]</strong></a>, <a href="faq.html#index-13"><strong>[1]</strong></a>, <a href="config.html#cfg_ThemeManager"><strong>[2]</strong></a>
  1137. </dt>
  1138. <dt><a href="faq.html#index-9"><strong>$cfg[&#39;ThemePath&#39;]</strong></a>, <a href="faq.html#index-12"><strong>[1]</strong></a>, <a href="faq.html#index-14"><strong>[2]</strong></a>, <a href="config.html#cfg_ThemePath"><strong>[3]</strong></a>, <a href="config.html#index-85"><strong>[4]</strong></a>
  1139. </dt>
  1140. <dt><a href="config.html#cfg_ThemePerServer"><strong>$cfg[&#39;ThemePerServer&#39;]</strong></a>
  1141. </dt>
  1142. <dt><a href="config.html#cfg_TitleDatabase"><strong>$cfg[&#39;TitleDatabase&#39;]</strong></a>
  1143. </dt>
  1144. <dt><a href="config.html#cfg_TitleDefault"><strong>$cfg[&#39;TitleDefault&#39;]</strong></a>
  1145. </dt>
  1146. <dt><a href="config.html#cfg_TitleServer"><strong>$cfg[&#39;TitleServer&#39;]</strong></a>
  1147. </dt>
  1148. <dt><a href="config.html#cfg_TitleTable"><strong>$cfg[&#39;TitleTable&#39;]</strong></a>
  1149. </dt>
  1150. <dt><a href="config.html#cfg_TranslationWarningThreshold"><strong>$cfg[&#39;TranslationWarningThreshold&#39;]</strong></a>
  1151. </dt>
  1152. <dt><a href="config.html#index-59"><strong>$cfg[&#39;TrustedProxies&#39;]</strong></a>, <a href="config.html#cfg_TrustedProxies"><strong>[1]</strong></a>
  1153. </dt>
  1154. <dt><a href="faq.html#index-2"><strong>$cfg[&#39;UploadDir&#39;]</strong></a>, <a href="faq.html#index-28"><strong>[1]</strong></a>, <a href="config.html#cfg_UploadDir"><strong>[2]</strong></a>
  1155. </dt>
  1156. <dt><a href="config.html#cfg_UseDbSearch"><strong>$cfg[&#39;UseDbSearch&#39;]</strong></a>
  1157. </dt>
  1158. <dt><a href="config.html#cfg_UserprefsDeveloperTab"><strong>$cfg[&#39;UserprefsDeveloperTab&#39;]</strong></a>
  1159. </dt>
  1160. <dt><a href="config.html#index-3"><strong>$cfg[&#39;UserprefsDisallow&#39;]</strong></a>, <a href="config.html#cfg_UserprefsDisallow"><strong>[1]</strong></a>
  1161. </dt>
  1162. <dt><a href="config.html#cfg_VersionCheck"><strong>$cfg[&#39;VersionCheck&#39;]</strong></a>
  1163. </dt>
  1164. <dt><a href="config.html#cfg_ZipDump"><strong>$cfg[&#39;ZipDump&#39;]</strong></a>
  1165. </dt>
  1166. <dt><a href="config.html#cfg_blowfish_secret"><strong>$cfg[&#39;blowfish_secret&#39;]</strong></a>, <a href="config.html#index-66"><strong>[1]</strong></a>
  1167. </dt>
  1168. </dl></dd>
  1169. <dt><a href="setup.html#index-1">Configuration storage</a>
  1170. </dt>
  1171. <dt><a href="config.html#cfg_Confirm"><strong>Confirm</strong></a>
  1172. </dt>
  1173. <dt><a href="config.html#cfg_Servers_connect_type"><strong>connect_type</strong></a>
  1174. </dt>
  1175. <dt><a href="config.html#cfg_Servers_controlhost"><strong>controlhost</strong></a>
  1176. </dt>
  1177. <dt><a href="config.html#cfg_Servers_controlpass"><strong>controlpass</strong></a>
  1178. </dt>
  1179. <dt><a href="config.html#cfg_Servers_controlport"><strong>controlport</strong></a>
  1180. </dt>
  1181. <dt><a href="config.html#cfg_Servers_controluser"><strong>controluser</strong></a>
  1182. </dt>
  1183. <dt><a href="glossary.html#term-cookie"><strong>Cookie</strong></a>
  1184. </dt>
  1185. <dd><dl>
  1186. <dt><a href="setup.html#index-8">Authentication mode</a>
  1187. </dt>
  1188. </dl></dd>
  1189. <dt><a href="config.html#cfg_CSPAllow"><strong>CSPAllow</strong></a>
  1190. </dt>
  1191. <dt><a href="glossary.html#term-csv"><strong>CSV</strong></a>
  1192. </dt>
  1193. </dl></td>
  1194. </tr></table>
  1195. <h2 id="D">D</h2>
  1196. <table style="width: 100%" class="indextable genindextable"><tr>
  1197. <td style="width: 33%" valign="top"><dl>
  1198. <dt><a href="glossary.html#term-database"><strong>database</strong></a>
  1199. </dt>
  1200. <dt><a href="glossary.html#term-db"><strong>DB</strong></a>
  1201. </dt>
  1202. <dt><a href="config.html#cfg_DBG"><strong>DBG</strong></a>
  1203. </dt>
  1204. <dt><a href="config.html#cfg_DBG_demo"><strong>DBG, demo</strong></a>
  1205. </dt>
  1206. <dt><a href="config.html#cfg_DBG_sql"><strong>DBG, sql</strong></a>
  1207. </dt>
  1208. <dt><a href="config.html#cfg_DefaultConnectionCollation"><strong>DefaultConnectionCollation</strong></a>
  1209. </dt>
  1210. <dt><a href="config.html#cfg_DefaultDisplay"><strong>DefaultDisplay</strong></a>
  1211. </dt>
  1212. <dt><a href="config.html#cfg_DefaultFunctions"><strong>DefaultFunctions</strong></a>
  1213. </dt>
  1214. <dt><a href="config.html#cfg_DefaultLang"><strong>DefaultLang</strong></a>
  1215. </dt>
  1216. </dl></td>
  1217. <td style="width: 33%" valign="top"><dl>
  1218. <dt><a href="config.html#cfg_DefaultQueryDatabase"><strong>DefaultQueryDatabase</strong></a>
  1219. </dt>
  1220. <dt><a href="config.html#cfg_DefaultQueryTable"><strong>DefaultQueryTable</strong></a>
  1221. </dt>
  1222. <dt><a href="config.html#cfg_DefaultTabDatabase"><strong>DefaultTabDatabase</strong></a>
  1223. </dt>
  1224. <dt><a href="config.html#cfg_DefaultTabServer"><strong>DefaultTabServer</strong></a>
  1225. </dt>
  1226. <dt><a href="config.html#cfg_DefaultTabTable"><strong>DefaultTabTable</strong></a>
  1227. </dt>
  1228. <dt><a href="config.html#cfg_Servers_designer_coords"><strong>designer_coords</strong></a>
  1229. </dt>
  1230. <dt><a href="config.html#cfg_DisableMultiTableMaintenance"><strong>DisableMultiTableMaintenance</strong></a>
  1231. </dt>
  1232. <dt><a href="config.html#cfg_DisplayBinaryAsHex"><strong>DisplayBinaryAsHex</strong></a>
  1233. </dt>
  1234. <dt><a href="config.html#cfg_DisplayServersList"><strong>DisplayServersList</strong></a>
  1235. </dt>
  1236. </dl></td>
  1237. </tr></table>
  1238. <h2 id="E">E</h2>
  1239. <table style="width: 100%" class="indextable genindextable"><tr>
  1240. <td style="width: 33%" valign="top"><dl>
  1241. <dt><a href="config.html#cfg_EditInWindow"><strong>EditInWindow</strong></a>
  1242. </dt>
  1243. <dt><a href="glossary.html#term-engine"><strong>Engine</strong></a>
  1244. </dt>
  1245. <dt><a href="config.html#cfg_Error_Handler_display"><strong>Error_Handler, display</strong></a>
  1246. </dt>
  1247. <dt><a href="config.html#cfg_ExecTimeLimit"><strong>ExecTimeLimit</strong></a>
  1248. </dt>
  1249. </dl></td>
  1250. <td style="width: 33%" valign="top"><dl>
  1251. <dt><a href="config.html#cfg_Export"><strong>Export</strong></a>
  1252. </dt>
  1253. <dt><a href="config.html#cfg_Export_method"><strong>Export, method</strong></a>
  1254. </dt>
  1255. <dt><a href="glossary.html#term-extension"><strong>extension</strong></a>
  1256. </dt>
  1257. </dl></td>
  1258. </tr></table>
  1259. <h2 id="F">F</h2>
  1260. <table style="width: 100%" class="indextable genindextable"><tr>
  1261. <td style="width: 33%" valign="top"><dl>
  1262. <dt><a href="glossary.html#term-faq"><strong>FAQ</strong></a>
  1263. </dt>
  1264. <dt><a href="glossary.html#term-field"><strong>Field</strong></a>
  1265. </dt>
  1266. <dt><a href="config.html#cfg_FilterLanguages"><strong>FilterLanguages</strong></a>
  1267. </dt>
  1268. <dt><a href="config.html#cfg_FirstLevelNavigationItems"><strong>FirstLevelNavigationItems</strong></a>
  1269. </dt>
  1270. <dt><a href="config.html#cfg_FontFamily"><strong>FontFamily</strong></a>
  1271. </dt>
  1272. <dt><a href="config.html#cfg_FontFamilyFixed"><strong>FontFamilyFixed</strong></a>
  1273. </dt>
  1274. </dl></td>
  1275. <td style="width: 33%" valign="top"><dl>
  1276. <dt><a href="config.html#cfg_ForceSSL"><strong>ForceSSL</strong></a>
  1277. </dt>
  1278. <dt><a href="glossary.html#term-foreign-key"><strong>foreign key</strong></a>
  1279. </dt>
  1280. <dt><a href="config.html#cfg_ForeignKeyDropdownOrder"><strong>ForeignKeyDropdownOrder</strong></a>
  1281. </dt>
  1282. <dt><a href="config.html#cfg_ForeignKeyMaxLimit"><strong>ForeignKeyMaxLimit</strong></a>
  1283. </dt>
  1284. <dt><a href="glossary.html#term-fpdf"><strong>FPDF</strong></a>
  1285. </dt>
  1286. </dl></td>
  1287. </tr></table>
  1288. <h2 id="G">G</h2>
  1289. <table style="width: 100%" class="indextable genindextable"><tr>
  1290. <td style="width: 33%" valign="top"><dl>
  1291. <dt><a href="glossary.html#term-gd"><strong>GD</strong></a>
  1292. </dt>
  1293. <dt><a href="glossary.html#term-gd2"><strong>GD2</strong></a>
  1294. </dt>
  1295. <dt><a href="config.html#cfg_GD2Available"><strong>GD2Available</strong></a>
  1296. </dt>
  1297. </dl></td>
  1298. <td style="width: 33%" valign="top"><dl>
  1299. <dt><a href="config.html#cfg_GridEditing"><strong>GridEditing</strong></a>
  1300. </dt>
  1301. <dt><a href="glossary.html#term-gzip"><strong>gzip</strong></a>
  1302. </dt>
  1303. <dt><a href="config.html#cfg_GZipDump"><strong>GZipDump</strong></a>
  1304. </dt>
  1305. </dl></td>
  1306. </tr></table>
  1307. <h2 id="H">H</h2>
  1308. <table style="width: 100%" class="indextable genindextable"><tr>
  1309. <td style="width: 33%" valign="top"><dl>
  1310. <dt><a href="config.html#cfg_HeaderFlipType"><strong>HeaderFlipType</strong></a>
  1311. </dt>
  1312. <dt><a href="config.html#cfg_Servers_hide_db"><strong>hide_db</strong></a>
  1313. </dt>
  1314. <dt><a href="config.html#cfg_HideStructureActions"><strong>HideStructureActions</strong></a>
  1315. </dt>
  1316. <dt><a href="config.html#cfg_Servers_history"><strong>history</strong></a>
  1317. </dt>
  1318. </dl></td>
  1319. <td style="width: 33%" valign="top"><dl>
  1320. <dt><a href="glossary.html#term-host"><strong>host</strong></a>, <a href="config.html#cfg_Servers_host"><strong>[1]</strong></a>
  1321. </dt>
  1322. <dt><a href="glossary.html#term-hostname"><strong>hostname</strong></a>
  1323. </dt>
  1324. <dt><a href="glossary.html#term-http"><strong>HTTP</strong></a>
  1325. </dt>
  1326. <dd><dl>
  1327. <dt><a href="setup.html#index-7">Authentication mode</a>
  1328. </dt>
  1329. </dl></dd>
  1330. <dt><a href="glossary.html#term-https"><strong>https</strong></a>
  1331. </dt>
  1332. </dl></td>
  1333. </tr></table>
  1334. <h2 id="I">I</h2>
  1335. <table style="width: 100%" class="indextable genindextable"><tr>
  1336. <td style="width: 33%" valign="top"><dl>
  1337. <dt><a href="config.html#cfg_IconvExtraParams"><strong>IconvExtraParams</strong></a>
  1338. </dt>
  1339. <dt><a href="glossary.html#term-iec"><strong>IEC</strong></a>
  1340. </dt>
  1341. <dt><a href="config.html#cfg_IgnoreMultiSubmitErrors"><strong>IgnoreMultiSubmitErrors</strong></a>
  1342. </dt>
  1343. <dt><a href="glossary.html#term-iis"><strong>IIS</strong></a>
  1344. </dt>
  1345. <dt><a href="config.html#cfg_Import"><strong>Import</strong></a>
  1346. </dt>
  1347. <dt><a href="glossary.html#term-index"><strong>Index</strong></a>
  1348. </dt>
  1349. <dt><a href="config.html#cfg_InitialSlidersState"><strong>InitialSlidersState</strong></a>
  1350. </dt>
  1351. </dl></td>
  1352. <td style="width: 33%" valign="top"><dl>
  1353. <dt><a href="config.html#cfg_InsertRows"><strong>InsertRows</strong></a>
  1354. </dt>
  1355. <dt><a href="glossary.html#term-ip"><strong>IP</strong></a>
  1356. </dt>
  1357. <dt><a href="glossary.html#term-ip-address"><strong>IP Address</strong></a>
  1358. </dt>
  1359. <dt><a href="glossary.html#term-ipv6"><strong>IPv6</strong></a>
  1360. </dt>
  1361. <dt><a href="glossary.html#term-isapi"><strong>ISAPI</strong></a>
  1362. </dt>
  1363. <dt><a href="glossary.html#term-iso"><strong>ISO</strong></a>
  1364. </dt>
  1365. <dt><a href="glossary.html#term-isp"><strong>ISP</strong></a>
  1366. </dt>
  1367. </dl></td>
  1368. </tr></table>
  1369. <h2 id="J">J</h2>
  1370. <table style="width: 100%" class="indextable genindextable"><tr>
  1371. <td style="width: 33%" valign="top"><dl>
  1372. <dt><a href="glossary.html#term-jpeg"><strong>JPEG</strong></a>
  1373. </dt>
  1374. </dl></td>
  1375. <td style="width: 33%" valign="top"><dl>
  1376. <dt><a href="glossary.html#term-jpg"><strong>JPG</strong></a>
  1377. </dt>
  1378. </dl></td>
  1379. </tr></table>
  1380. <h2 id="K">K</h2>
  1381. <table style="width: 100%" class="indextable genindextable"><tr>
  1382. <td style="width: 33%" valign="top"><dl>
  1383. <dt><a href="glossary.html#term-key"><strong>Key</strong></a>
  1384. </dt>
  1385. </dl></td>
  1386. </tr></table>
  1387. <h2 id="L">L</h2>
  1388. <table style="width: 100%" class="indextable genindextable"><tr>
  1389. <td style="width: 33%" valign="top"><dl>
  1390. <dt><a href="config.html#cfg_Lang"><strong>Lang</strong></a>
  1391. </dt>
  1392. <dt><a href="glossary.html#term-latex"><strong>LATEX</strong></a>
  1393. </dt>
  1394. <dt><a href="config.html#cfg_LimitChars"><strong>LimitChars</strong></a>
  1395. </dt>
  1396. <dt><a href="config.html#cfg_LinkLengthLimit"><strong>LinkLengthLimit</strong></a>
  1397. </dt>
  1398. <dt><a href="config.html#cfg_LoginCookieDeleteAll"><strong>LoginCookieDeleteAll</strong></a>
  1399. </dt>
  1400. </dl></td>
  1401. <td style="width: 33%" valign="top"><dl>
  1402. <dt><a href="config.html#cfg_LoginCookieRecall"><strong>LoginCookieRecall</strong></a>
  1403. </dt>
  1404. <dt><a href="config.html#cfg_LoginCookieStore"><strong>LoginCookieStore</strong></a>
  1405. </dt>
  1406. <dt><a href="config.html#cfg_LoginCookieValidity"><strong>LoginCookieValidity</strong></a>
  1407. </dt>
  1408. <dt><a href="config.html#cfg_Servers_LogoutURL"><strong>LogoutURL</strong></a>
  1409. </dt>
  1410. <dt><a href="config.html#cfg_LongtextDoubleTextarea"><strong>LongtextDoubleTextarea</strong></a>
  1411. </dt>
  1412. </dl></td>
  1413. </tr></table>
  1414. <h2 id="M">M</h2>
  1415. <table style="width: 100%" class="indextable genindextable"><tr>
  1416. <td style="width: 33%" valign="top"><dl>
  1417. <dt><a href="glossary.html#term-mac"><strong>Mac</strong></a>
  1418. </dt>
  1419. <dt><a href="glossary.html#term-mac-os-x"><strong>Mac OS X</strong></a>
  1420. </dt>
  1421. <dt><a href="config.html#cfg_MainBackground"><strong>MainBackground</strong></a>
  1422. </dt>
  1423. <dt><a href="config.html#cfg_MaxCharactersInDisplayedSQL"><strong>MaxCharactersInDisplayedSQL</strong></a>
  1424. </dt>
  1425. <dt><a href="config.html#cfg_MaxDbList"><strong>MaxDbList</strong></a>
  1426. </dt>
  1427. <dt><a href="config.html#cfg_MaxExactCount"><strong>MaxExactCount</strong></a>
  1428. </dt>
  1429. <dt><a href="config.html#cfg_MaxExactCountViews"><strong>MaxExactCountViews</strong></a>
  1430. </dt>
  1431. <dt><a href="config.html#cfg_MaxNavigationItems"><strong>MaxNavigationItems</strong></a>
  1432. </dt>
  1433. <dt><a href="config.html#cfg_MaxRows"><strong>MaxRows</strong></a>
  1434. </dt>
  1435. <dt><a href="config.html#cfg_MaxSizeForInputField"><strong>MaxSizeForInputField</strong></a>
  1436. </dt>
  1437. <dt><a href="config.html#cfg_MaxTableList"><strong>MaxTableList</strong></a>
  1438. </dt>
  1439. </dl></td>
  1440. <td style="width: 33%" valign="top"><dl>
  1441. <dt><a href="config.html#cfg_Servers_MaxTableUiprefs"><strong>MaxTableUiprefs</strong></a>
  1442. </dt>
  1443. <dt><a href="glossary.html#term-mcrypt"><strong>MCrypt</strong></a>
  1444. </dt>
  1445. <dt><a href="glossary.html#term-42"><strong>mcrypt</strong></a>
  1446. </dt>
  1447. <dt><a href="config.html#cfg_MemoryLimit"><strong>MemoryLimit</strong></a>
  1448. </dt>
  1449. <dt><a href="glossary.html#term-mime"><strong>MIME</strong></a>
  1450. </dt>
  1451. <dt><a href="config.html#cfg_MinSizeForInputField"><strong>MinSizeForInputField</strong></a>
  1452. </dt>
  1453. <dt><a href="glossary.html#term-module"><strong>module</strong></a>
  1454. </dt>
  1455. <dt><a href="glossary.html#term-mysql"><strong>MySQL</strong></a>
  1456. </dt>
  1457. <dt><a href="glossary.html#term-47"><strong>mysql</strong></a>
  1458. </dt>
  1459. <dt><a href="glossary.html#term-mysqli"><strong>mysqli</strong></a>
  1460. </dt>
  1461. </dl></td>
  1462. </tr></table>
  1463. <h2 id="N">N</h2>
  1464. <table style="width: 100%" class="indextable genindextable"><tr>
  1465. <td style="width: 33%" valign="top"><dl>
  1466. <dt><a href="config.html#cfg_NaturalOrder"><strong>NaturalOrder</strong></a>
  1467. </dt>
  1468. <dt><a href="config.html#cfg_NaviBackground"><strong>NaviBackground</strong></a>
  1469. </dt>
  1470. <dt><a href="config.html#cfg_NavigationDisplayLogo"><strong>NavigationDisplayLogo</strong></a>
  1471. </dt>
  1472. <dt><a href="config.html#cfg_NavigationDisplayServers"><strong>NavigationDisplayServers</strong></a>
  1473. </dt>
  1474. <dt><a href="config.html#cfg_Servers_navigationhiding"><strong>navigationhiding</strong></a>
  1475. </dt>
  1476. <dt><a href="config.html#cfg_NavigationLogoLink"><strong>NavigationLogoLink</strong></a>
  1477. </dt>
  1478. <dt><a href="config.html#cfg_NavigationLogoLinkWindow"><strong>NavigationLogoLinkWindow</strong></a>
  1479. </dt>
  1480. <dt><a href="config.html#cfg_NavigationTreeDbSeparator"><strong>NavigationTreeDbSeparator</strong></a>
  1481. </dt>
  1482. <dt><a href="config.html#cfg_NavigationTreeDefaultTabTable"><strong>NavigationTreeDefaultTabTable</strong></a>
  1483. </dt>
  1484. <dt><a href="config.html#cfg_NavigationTreeDisableDatabaseExpansion"><strong>NavigationTreeDisableDatabaseExpansion</strong></a>
  1485. </dt>
  1486. <dt><a href="config.html#cfg_NavigationTreeDisplayDbFilterMinimum"><strong>NavigationTreeDisplayDbFilterMinimum</strong></a>
  1487. </dt>
  1488. </dl></td>
  1489. <td style="width: 33%" valign="top"><dl>
  1490. <dt><a href="config.html#cfg_NavigationTreeDisplayItemFilterMinimum"><strong>NavigationTreeDisplayItemFilterMinimum</strong></a>
  1491. </dt>
  1492. <dt><a href="config.html#cfg_NavigationTreeEnableGrouping"><strong>NavigationTreeEnableGrouping</strong></a>
  1493. </dt>
  1494. <dt><a href="config.html#cfg_NavigationTreePointerEnable"><strong>NavigationTreePointerEnable</strong></a>
  1495. </dt>
  1496. <dt><a href="config.html#cfg_NavigationTreeTableLevel"><strong>NavigationTreeTableLevel</strong></a>
  1497. </dt>
  1498. <dt><a href="config.html#cfg_NavigationTreeTableSeparator"><strong>NavigationTreeTableSeparator</strong></a>
  1499. </dt>
  1500. <dt><a href="config.html#cfg_NaviPointerBackground"><strong>NaviPointerBackground</strong></a>
  1501. </dt>
  1502. <dt><a href="config.html#cfg_NaviPointerColor"><strong>NaviPointerColor</strong></a>
  1503. </dt>
  1504. <dt><a href="config.html#cfg_NaviWidth"><strong>NaviWidth</strong></a>
  1505. </dt>
  1506. <dt><a href="config.html#cfg_Servers_nopassword"><strong>nopassword</strong></a>
  1507. </dt>
  1508. <dt><a href="config.html#cfg_NumRecentTables"><strong>NumRecentTables</strong></a>
  1509. </dt>
  1510. </dl></td>
  1511. </tr></table>
  1512. <h2 id="O">O</h2>
  1513. <table style="width: 100%" class="indextable genindextable"><tr>
  1514. <td style="width: 33%" valign="top"><dl>
  1515. <dt><a href="config.html#cfg_OBGzip"><strong>OBGzip</strong></a>
  1516. </dt>
  1517. <dt><a href="config.html#cfg_Servers_only_db"><strong>only_db</strong></a>
  1518. </dt>
  1519. <dt><a href="glossary.html#term-opendocument"><strong>OpenDocument</strong></a>
  1520. </dt>
  1521. </dl></td>
  1522. <td style="width: 33%" valign="top"><dl>
  1523. <dt><a href="config.html#cfg_Order"><strong>Order</strong></a>
  1524. </dt>
  1525. <dt><a href="glossary.html#term-os-x"><strong>OS X</strong></a>
  1526. </dt>
  1527. </dl></td>
  1528. </tr></table>
  1529. <h2 id="P">P</h2>
  1530. <table style="width: 100%" class="indextable genindextable"><tr>
  1531. <td style="width: 33%" valign="top"><dl>
  1532. <dt><a href="config.html#cfg_Servers_password"><strong>password</strong></a>
  1533. </dt>
  1534. <dt><a href="glossary.html#term-pcre"><strong>PCRE</strong></a>
  1535. </dt>
  1536. <dt><a href="glossary.html#term-pdf"><strong>PDF</strong></a>
  1537. </dt>
  1538. <dt><a href="config.html#cfg_Servers_pdf_pages"><strong>pdf_pages</strong></a>
  1539. </dt>
  1540. <dt><a href="config.html#cfg_PDFDefaultPageSize"><strong>PDFDefaultPageSize</strong></a>
  1541. </dt>
  1542. <dt><a href="config.html#cfg_PDFPageSizes"><strong>PDFPageSizes</strong></a>
  1543. </dt>
  1544. <dt><a href="glossary.html#term-pear"><strong>PEAR</strong></a>
  1545. </dt>
  1546. <dt><a href="config.html#cfg_PersistentConnections"><strong>PersistentConnections</strong></a>
  1547. </dt>
  1548. <dt><a href="glossary.html#term-php"><strong>PHP</strong></a>
  1549. </dt>
  1550. <dt><a href="setup.html#index-1">phpMyAdmin configuration storage</a>
  1551. </dt>
  1552. </dl></td>
  1553. <td style="width: 33%" valign="top"><dl>
  1554. <dt><a href="config.html#cfg_PmaAbsoluteUri"><strong>PmaAbsoluteUri</strong></a>
  1555. </dt>
  1556. <dt><a href="setup.html#index-1">pmadb</a>, <a href="config.html#cfg_Servers_pmadb"><strong>[1]</strong></a>
  1557. </dt>
  1558. <dt><a href="config.html#cfg_PmaNoRelation_DisableWarning"><strong>PmaNoRelation_DisableWarning</strong></a>
  1559. </dt>
  1560. <dt><a href="glossary.html#term-port"><strong>port</strong></a>, <a href="config.html#cfg_Servers_port"><strong>[1]</strong></a>
  1561. </dt>
  1562. <dt><a href="config.html#cfg_PropertiesNumColumns"><strong>PropertiesNumColumns</strong></a>
  1563. </dt>
  1564. <dt><a href="config.html#cfg_ProtectBinary"><strong>ProtectBinary</strong></a>
  1565. </dt>
  1566. <dt><a href="config.html#cfg_ProxyPass"><strong>ProxyPass</strong></a>
  1567. </dt>
  1568. <dt><a href="config.html#cfg_ProxyUrl"><strong>ProxyUrl</strong></a>
  1569. </dt>
  1570. <dt><a href="config.html#cfg_ProxyUser"><strong>ProxyUser</strong></a>
  1571. </dt>
  1572. </dl></td>
  1573. </tr></table>
  1574. <h2 id="Q">Q</h2>
  1575. <table style="width: 100%" class="indextable genindextable"><tr>
  1576. <td style="width: 33%" valign="top"><dl>
  1577. <dt><a href="config.html#cfg_QueryHistoryDB"><strong>QueryHistoryDB</strong></a>
  1578. </dt>
  1579. <dt><a href="config.html#cfg_QueryHistoryMax"><strong>QueryHistoryMax</strong></a>
  1580. </dt>
  1581. <dt><a href="config.html#cfg_QueryWindowDefTab"><strong>QueryWindowDefTab</strong></a>
  1582. </dt>
  1583. </dl></td>
  1584. <td style="width: 33%" valign="top"><dl>
  1585. <dt><a href="config.html#cfg_QueryWindowHeight"><strong>QueryWindowHeight</strong></a>
  1586. </dt>
  1587. <dt><a href="config.html#cfg_QueryWindowWidth"><strong>QueryWindowWidth</strong></a>
  1588. </dt>
  1589. </dl></td>
  1590. </tr></table>
  1591. <h2 id="R">R</h2>
  1592. <table style="width: 100%" class="indextable genindextable"><tr>
  1593. <td style="width: 33%" valign="top"><dl>
  1594. <dt><a href="config.html#cfg_Servers_recent"><strong>recent</strong></a>
  1595. </dt>
  1596. <dt><a href="config.html#cfg_RecodingEngine"><strong>RecodingEngine</strong></a>
  1597. </dt>
  1598. <dt><a href="config.html#cfg_Servers_relation"><strong>relation</strong></a>
  1599. </dt>
  1600. <dt><a href="config.html#cfg_RememberSorting"><strong>RememberSorting</strong></a>
  1601. </dt>
  1602. <dt><a href="config.html#cfg_RepeatCells"><strong>RepeatCells</strong></a>
  1603. </dt>
  1604. <dt><a href="config.html#cfg_ReservedWordDisableWarning"><strong>ReservedWordDisableWarning</strong></a>
  1605. </dt>
  1606. </dl></td>
  1607. <td style="width: 33%" valign="top"><dl>
  1608. <dt><a href="config.html#cfg_RetainQueryBox"><strong>RetainQueryBox</strong></a>
  1609. </dt>
  1610. <dt><a href="glossary.html#term-rfc"><strong>RFC</strong></a>
  1611. </dt>
  1612. <dd><dl>
  1613. <dt><a href="faq.html#index-16">RFC 1867</a>
  1614. </dt>
  1615. <dt><a href="glossary.html#index-0">RFC 1952</a>
  1616. </dt>
  1617. <dt><a href="faq.html#index-4">RFC 2616</a>
  1618. </dt>
  1619. </dl></dd>
  1620. <dt><a href="glossary.html#term-rfc-1952"><strong>RFC 1952</strong></a>
  1621. </dt>
  1622. <dt><a href="glossary.html#term-row-record-tuple"><strong>Row (record, tuple)</strong></a>
  1623. </dt>
  1624. <dt><a href="config.html#cfg_RowActionLinks"><strong>RowActionLinks</strong></a>
  1625. </dt>
  1626. <dt><a href="config.html#cfg_RowActionType"><strong>RowActionType</strong></a>
  1627. </dt>
  1628. </dl></td>
  1629. </tr></table>
  1630. <h2 id="S">S</h2>
  1631. <table style="width: 100%" class="indextable genindextable"><tr>
  1632. <td style="width: 33%" valign="top"><dl>
  1633. <dt><a href="config.html#cfg_SaveCellsAtOnce"><strong>SaveCellsAtOnce</strong></a>
  1634. </dt>
  1635. <dt><a href="config.html#cfg_SaveDir"><strong>SaveDir</strong></a>
  1636. </dt>
  1637. <dt><a href="config.html#cfg_Servers_savedsearches"><strong>savedsearches</strong></a>
  1638. </dt>
  1639. <dt><a href="config.html#cfg_SendErrorReports"><strong>SendErrorReports</strong></a>
  1640. </dt>
  1641. <dt><a href="glossary.html#term-server"><strong>Server</strong></a>
  1642. </dt>
  1643. <dt>
  1644. server configuration
  1645. </dt>
  1646. <dd><dl>
  1647. <dt><a href="config.html#cfg_Servers_AllowDeny_order"><strong>AllowDeny, order</strong></a>
  1648. </dt>
  1649. <dt><a href="config.html#cfg_Servers_AllowDeny_rules"><strong>AllowDeny, rules</strong></a>
  1650. </dt>
  1651. <dt><a href="config.html#cfg_Servers_AllowNoPassword"><strong>AllowNoPassword</strong></a>
  1652. </dt>
  1653. <dt><a href="config.html#cfg_Servers_AllowRoot"><strong>AllowRoot</strong></a>
  1654. </dt>
  1655. <dt><a href="config.html#cfg_Servers_LogoutURL"><strong>LogoutURL</strong></a>
  1656. </dt>
  1657. <dt><a href="config.html#cfg_Servers_MaxTableUiprefs"><strong>MaxTableUiprefs</strong></a>
  1658. </dt>
  1659. <dt><a href="config.html#cfg_Servers_SignonScript"><strong>SignonScript</strong></a>
  1660. </dt>
  1661. <dt><a href="config.html#cfg_Servers_SignonSession"><strong>SignonSession</strong></a>
  1662. </dt>
  1663. <dt><a href="config.html#cfg_Servers_SignonURL"><strong>SignonURL</strong></a>
  1664. </dt>
  1665. <dt><a href="config.html#cfg_Servers_StatusCacheDatabases"><strong>StatusCacheDatabases</strong></a>
  1666. </dt>
  1667. <dt><a href="config.html#cfg_Servers_StatusCacheLifetime"><strong>StatusCacheLifetime</strong></a>
  1668. </dt>
  1669. <dt><a href="config.html#cfg_Servers_auth_http_realm"><strong>auth_http_realm</strong></a>
  1670. </dt>
  1671. <dt><a href="config.html#cfg_Servers_auth_swekey_config"><strong>auth_swekey_config</strong></a>
  1672. </dt>
  1673. <dt><a href="config.html#cfg_Servers_auth_type"><strong>auth_type</strong></a>
  1674. </dt>
  1675. <dt><a href="config.html#cfg_Servers_bookmarktable"><strong>bookmarktable</strong></a>
  1676. </dt>
  1677. <dt><a href="config.html#cfg_Servers_column_info"><strong>column_info</strong></a>
  1678. </dt>
  1679. <dt><a href="config.html#cfg_Servers_compress"><strong>compress</strong></a>
  1680. </dt>
  1681. <dt><a href="config.html#cfg_Servers_connect_type"><strong>connect_type</strong></a>
  1682. </dt>
  1683. <dt><a href="config.html#cfg_Servers_controlhost"><strong>controlhost</strong></a>
  1684. </dt>
  1685. <dt><a href="config.html#cfg_Servers_controlpass"><strong>controlpass</strong></a>
  1686. </dt>
  1687. <dt><a href="config.html#cfg_Servers_controlport"><strong>controlport</strong></a>
  1688. </dt>
  1689. <dt><a href="config.html#cfg_Servers_controluser"><strong>controluser</strong></a>
  1690. </dt>
  1691. <dt><a href="config.html#cfg_Servers_designer_coords"><strong>designer_coords</strong></a>
  1692. </dt>
  1693. <dt><a href="config.html#cfg_Servers_hide_db"><strong>hide_db</strong></a>
  1694. </dt>
  1695. <dt><a href="config.html#cfg_Servers_history"><strong>history</strong></a>
  1696. </dt>
  1697. <dt><a href="config.html#cfg_Servers_host"><strong>host</strong></a>
  1698. </dt>
  1699. <dt><a href="config.html#cfg_Servers_navigationhiding"><strong>navigationhiding</strong></a>
  1700. </dt>
  1701. <dt><a href="config.html#cfg_Servers_nopassword"><strong>nopassword</strong></a>
  1702. </dt>
  1703. <dt><a href="config.html#cfg_Servers_only_db"><strong>only_db</strong></a>
  1704. </dt>
  1705. <dt><a href="config.html#cfg_Servers_password"><strong>password</strong></a>
  1706. </dt>
  1707. <dt><a href="config.html#cfg_Servers_pdf_pages"><strong>pdf_pages</strong></a>
  1708. </dt>
  1709. <dt><a href="config.html#cfg_Servers_pmadb"><strong>pmadb</strong></a>
  1710. </dt>
  1711. <dt><a href="config.html#cfg_Servers_port"><strong>port</strong></a>
  1712. </dt>
  1713. <dt><a href="config.html#cfg_Servers_recent"><strong>recent</strong></a>
  1714. </dt>
  1715. <dt><a href="config.html#cfg_Servers_relation"><strong>relation</strong></a>
  1716. </dt>
  1717. <dt><a href="config.html#cfg_Servers_savedsearches"><strong>savedsearches</strong></a>
  1718. </dt>
  1719. <dt><a href="config.html#cfg_Servers_socket"><strong>socket</strong></a>
  1720. </dt>
  1721. <dt><a href="config.html#cfg_Servers_ssl"><strong>ssl</strong></a>
  1722. </dt>
  1723. <dt><a href="config.html#cfg_Servers_ssl_ca"><strong>ssl_ca</strong></a>
  1724. </dt>
  1725. <dt><a href="config.html#cfg_Servers_ssl_ca_path"><strong>ssl_ca_path</strong></a>
  1726. </dt>
  1727. <dt><a href="config.html#cfg_Servers_ssl_cert"><strong>ssl_cert</strong></a>
  1728. </dt>
  1729. <dt><a href="config.html#cfg_Servers_ssl_ciphers"><strong>ssl_ciphers</strong></a>
  1730. </dt>
  1731. <dt><a href="config.html#cfg_Servers_ssl_key"><strong>ssl_key</strong></a>
  1732. </dt>
  1733. <dt><a href="config.html#cfg_Servers_table_coords"><strong>table_coords</strong></a>
  1734. </dt>
  1735. <dt><a href="config.html#cfg_Servers_table_info"><strong>table_info</strong></a>
  1736. </dt>
  1737. <dt><a href="config.html#cfg_Servers_table_uiprefs"><strong>table_uiprefs</strong></a>
  1738. </dt>
  1739. <dt><a href="config.html#cfg_Servers_tracking"><strong>tracking</strong></a>
  1740. </dt>
  1741. <dt><a href="config.html#cfg_Servers_tracking_add_drop_database"><strong>tracking_add_drop_database</strong></a>
  1742. </dt>
  1743. <dt><a href="config.html#cfg_Servers_tracking_add_drop_table"><strong>tracking_add_drop_table</strong></a>
  1744. </dt>
  1745. <dt><a href="config.html#cfg_Servers_tracking_add_drop_view"><strong>tracking_add_drop_view</strong></a>
  1746. </dt>
  1747. <dt><a href="config.html#cfg_Servers_tracking_default_statements"><strong>tracking_default_statements</strong></a>
  1748. </dt>
  1749. <dt><a href="config.html#cfg_Servers_tracking_version_auto_create"><strong>tracking_version_auto_create</strong></a>
  1750. </dt>
  1751. <dt><a href="config.html#cfg_Servers_user"><strong>user</strong></a>
  1752. </dt>
  1753. <dt><a href="config.html#cfg_Servers_userconfig"><strong>userconfig</strong></a>
  1754. </dt>
  1755. <dt><a href="config.html#cfg_Servers_usergroups"><strong>usergroups</strong></a>
  1756. </dt>
  1757. <dt><a href="config.html#cfg_Servers_users"><strong>users</strong></a>
  1758. </dt>
  1759. <dt><a href="config.html#cfg_Servers_verbose"><strong>verbose</strong></a>
  1760. </dt>
  1761. </dl></dd>
  1762. <dt><a href="config.html#cfg_ServerDefault"><strong>ServerDefault</strong></a>
  1763. </dt>
  1764. <dt><a href="config.html#cfg_ServerLibraryDifference_DisableWarning"><strong>ServerLibraryDifference_DisableWarning</strong></a>
  1765. </dt>
  1766. <dt><a href="config.html#cfg_Servers"><strong>Servers</strong></a>
  1767. </dt>
  1768. <dt><a href="config.html#cfg_SessionSavePath"><strong>SessionSavePath</strong></a>
  1769. </dt>
  1770. <dt><a href="setup.html#index-0">Setup script</a>
  1771. </dt>
  1772. <dt><a href="config.html#cfg_ShowAll"><strong>ShowAll</strong></a>
  1773. </dt>
  1774. <dt><a href="config.html#cfg_ShowBrowseComments"><strong>ShowBrowseComments</strong></a>
  1775. </dt>
  1776. <dt><a href="config.html#cfg_ShowChgPassword"><strong>ShowChgPassword</strong></a>
  1777. </dt>
  1778. <dt><a href="config.html#cfg_ShowCreateDb"><strong>ShowCreateDb</strong></a>
  1779. </dt>
  1780. <dt><a href="config.html#cfg_ShowDbStructureCreation"><strong>ShowDbStructureCreation</strong></a>
  1781. </dt>
  1782. <dt><a href="config.html#cfg_ShowDbStructureLastCheck"><strong>ShowDbStructureLastCheck</strong></a>
  1783. </dt>
  1784. <dt><a href="config.html#cfg_ShowDbStructureLastUpdate"><strong>ShowDbStructureLastUpdate</strong></a>
  1785. </dt>
  1786. <dt><a href="config.html#cfg_ShowDisplayDirection"><strong>ShowDisplayDirection</strong></a>
  1787. </dt>
  1788. <dt><a href="config.html#cfg_ShowFieldTypesInDataEditView"><strong>ShowFieldTypesInDataEditView</strong></a>
  1789. </dt>
  1790. <dt><a href="config.html#cfg_ShowFunctionFields"><strong>ShowFunctionFields</strong></a>
  1791. </dt>
  1792. <dt><a href="config.html#cfg_ShowHint"><strong>ShowHint</strong></a>
  1793. </dt>
  1794. <dt><a href="config.html#cfg_ShowPhpInfo"><strong>ShowPhpInfo</strong></a>
  1795. </dt>
  1796. <dt><a href="config.html#cfg_ShowPropertyComments"><strong>ShowPropertyComments</strong></a>
  1797. </dt>
  1798. <dt><a href="config.html#cfg_ShowServerInfo"><strong>ShowServerInfo</strong></a>
  1799. </dt>
  1800. <dt><a href="config.html#cfg_ShowSQL"><strong>ShowSQL</strong></a>
  1801. </dt>
  1802. </dl></td>
  1803. <td style="width: 33%" valign="top"><dl>
  1804. <dt><a href="config.html#cfg_ShowStats"><strong>ShowStats</strong></a>
  1805. </dt>
  1806. <dt>
  1807. Signon
  1808. </dt>
  1809. <dd><dl>
  1810. <dt><a href="setup.html#index-10">Authentication mode</a>
  1811. </dt>
  1812. </dl></dd>
  1813. <dt><a href="config.html#cfg_Servers_SignonScript"><strong>SignonScript</strong></a>
  1814. </dt>
  1815. <dt><a href="config.html#cfg_Servers_SignonSession"><strong>SignonSession</strong></a>
  1816. </dt>
  1817. <dt><a href="config.html#cfg_Servers_SignonURL"><strong>SignonURL</strong></a>
  1818. </dt>
  1819. <dt><a href="config.html#cfg_SkipLockedTables"><strong>SkipLockedTables</strong></a>
  1820. </dt>
  1821. <dt><a href="glossary.html#term-socket"><strong>socket</strong></a>, <a href="config.html#cfg_Servers_socket"><strong>[1]</strong></a>
  1822. </dt>
  1823. <dt><a href="glossary.html#term-sql"><strong>SQL</strong></a>
  1824. </dt>
  1825. <dt><a href="config.html#cfg_SQLQuery_Edit"><strong>SQLQuery, Edit</strong></a>
  1826. </dt>
  1827. <dt><a href="config.html#cfg_SQLQuery_Explain"><strong>SQLQuery, Explain</strong></a>
  1828. </dt>
  1829. <dt><a href="config.html#cfg_SQLQuery_Refresh"><strong>SQLQuery, Refresh</strong></a>
  1830. </dt>
  1831. <dt><a href="config.html#cfg_SQLQuery_ShowAsPHP"><strong>SQLQuery, ShowAsPHP</strong></a>
  1832. </dt>
  1833. <dt><a href="glossary.html#term-ssl"><strong>SSL</strong></a>
  1834. </dt>
  1835. <dt><a href="config.html#cfg_Servers_ssl"><strong>ssl</strong></a>
  1836. </dt>
  1837. <dt><a href="config.html#cfg_Servers_ssl_ca"><strong>ssl_ca</strong></a>
  1838. </dt>
  1839. <dt><a href="config.html#cfg_Servers_ssl_ca_path"><strong>ssl_ca_path</strong></a>
  1840. </dt>
  1841. <dt><a href="config.html#cfg_Servers_ssl_cert"><strong>ssl_cert</strong></a>
  1842. </dt>
  1843. <dt><a href="config.html#cfg_Servers_ssl_ciphers"><strong>ssl_ciphers</strong></a>
  1844. </dt>
  1845. <dt><a href="config.html#cfg_Servers_ssl_key"><strong>ssl_key</strong></a>
  1846. </dt>
  1847. <dt><a href="config.html#cfg_Servers_StatusCacheDatabases"><strong>StatusCacheDatabases</strong></a>
  1848. </dt>
  1849. <dt><a href="config.html#cfg_Servers_StatusCacheLifetime"><strong>StatusCacheLifetime</strong></a>
  1850. </dt>
  1851. <dt><a href="glossary.html#term-storage-engines"><strong>Storage Engines</strong></a>
  1852. </dt>
  1853. <dt><a href="glossary.html#term-stored-procedure"><strong>Stored procedure</strong></a>
  1854. </dt>
  1855. <dt><a href="config.html#cfg_SuhosinDisableWarning"><strong>SuhosinDisableWarning</strong></a>
  1856. </dt>
  1857. <dt>
  1858. Swekey
  1859. </dt>
  1860. <dd><dl>
  1861. <dt><a href="setup.html#index-20">Authentication mode</a>
  1862. </dt>
  1863. </dl></dd>
  1864. </dl></td>
  1865. </tr></table>
  1866. <h2 id="T">T</h2>
  1867. <table style="width: 100%" class="indextable genindextable"><tr>
  1868. <td style="width: 33%" valign="top"><dl>
  1869. <dt><a href="glossary.html#term-table"><strong>table</strong></a>
  1870. </dt>
  1871. <dt><a href="config.html#cfg_Servers_table_coords"><strong>table_coords</strong></a>
  1872. </dt>
  1873. <dt><a href="config.html#cfg_Servers_table_info"><strong>table_info</strong></a>
  1874. </dt>
  1875. <dt><a href="config.html#cfg_Servers_table_uiprefs"><strong>table_uiprefs</strong></a>
  1876. </dt>
  1877. <dt><a href="config.html#cfg_TableNavigationLinksMode"><strong>TableNavigationLinksMode</strong></a>
  1878. </dt>
  1879. <dt><a href="config.html#cfg_TabsMode"><strong>TabsMode</strong></a>
  1880. </dt>
  1881. <dt><a href="glossary.html#term-tar"><strong>tar</strong></a>
  1882. </dt>
  1883. <dt><a href="glossary.html#term-tcp"><strong>TCP</strong></a>
  1884. </dt>
  1885. <dt><a href="glossary.html#term-tcpdf"><strong>TCPDF</strong></a>
  1886. </dt>
  1887. <dt><a href="config.html#cfg_TempDir"><strong>TempDir</strong></a>
  1888. </dt>
  1889. <dt><a href="config.html#cfg_TextareaAutoSelect"><strong>TextareaAutoSelect</strong></a>
  1890. </dt>
  1891. <dt><a href="config.html#cfg_TextareaCols"><strong>TextareaCols</strong></a>
  1892. </dt>
  1893. <dt><a href="config.html#cfg_TextareaRows"><strong>TextareaRows</strong></a>
  1894. </dt>
  1895. <dt><a href="config.html#cfg_ThBackground"><strong>ThBackground</strong></a>
  1896. </dt>
  1897. <dt><a href="config.html#cfg_ThColor"><strong>ThColor</strong></a>
  1898. </dt>
  1899. <dt><a href="config.html#cfg_ThemeDefault"><strong>ThemeDefault</strong></a>
  1900. </dt>
  1901. </dl></td>
  1902. <td style="width: 33%" valign="top"><dl>
  1903. <dt><a href="config.html#cfg_ThemeManager"><strong>ThemeManager</strong></a>
  1904. </dt>
  1905. <dt><a href="config.html#cfg_ThemePath"><strong>ThemePath</strong></a>
  1906. </dt>
  1907. <dt><a href="config.html#cfg_ThemePerServer"><strong>ThemePerServer</strong></a>
  1908. </dt>
  1909. <dt><a href="config.html#cfg_TitleDatabase"><strong>TitleDatabase</strong></a>
  1910. </dt>
  1911. <dt><a href="config.html#cfg_TitleDefault"><strong>TitleDefault</strong></a>
  1912. </dt>
  1913. <dt><a href="config.html#cfg_TitleServer"><strong>TitleServer</strong></a>
  1914. </dt>
  1915. <dt><a href="config.html#cfg_TitleTable"><strong>TitleTable</strong></a>
  1916. </dt>
  1917. <dt><a href="config.html#cfg_Servers_tracking"><strong>tracking</strong></a>
  1918. </dt>
  1919. <dt><a href="config.html#cfg_Servers_tracking_add_drop_database"><strong>tracking_add_drop_database</strong></a>
  1920. </dt>
  1921. <dt><a href="config.html#cfg_Servers_tracking_add_drop_table"><strong>tracking_add_drop_table</strong></a>
  1922. </dt>
  1923. <dt><a href="config.html#cfg_Servers_tracking_add_drop_view"><strong>tracking_add_drop_view</strong></a>
  1924. </dt>
  1925. <dt><a href="config.html#cfg_Servers_tracking_default_statements"><strong>tracking_default_statements</strong></a>
  1926. </dt>
  1927. <dt><a href="config.html#cfg_Servers_tracking_version_auto_create"><strong>tracking_version_auto_create</strong></a>
  1928. </dt>
  1929. <dt><a href="config.html#cfg_TranslationWarningThreshold"><strong>TranslationWarningThreshold</strong></a>
  1930. </dt>
  1931. <dt><a href="glossary.html#term-trigger"><strong>trigger</strong></a>
  1932. </dt>
  1933. <dt><a href="config.html#cfg_TrustedProxies"><strong>TrustedProxies</strong></a>
  1934. </dt>
  1935. </dl></td>
  1936. </tr></table>
  1937. <h2 id="U">U</h2>
  1938. <table style="width: 100%" class="indextable genindextable"><tr>
  1939. <td style="width: 33%" valign="top"><dl>
  1940. <dt><a href="glossary.html#term-ufpdf"><strong>UFPDF</strong></a>
  1941. </dt>
  1942. <dt><a href="config.html#cfg_UploadDir"><strong>UploadDir</strong></a>
  1943. </dt>
  1944. <dt><a href="glossary.html#term-url"><strong>URL</strong></a>
  1945. </dt>
  1946. <dt><a href="config.html#cfg_UseDbSearch"><strong>UseDbSearch</strong></a>
  1947. </dt>
  1948. <dt><a href="config.html#cfg_Servers_user"><strong>user</strong></a>
  1949. </dt>
  1950. </dl></td>
  1951. <td style="width: 33%" valign="top"><dl>
  1952. <dt><a href="config.html#cfg_Servers_userconfig"><strong>userconfig</strong></a>
  1953. </dt>
  1954. <dt><a href="config.html#cfg_Servers_usergroups"><strong>usergroups</strong></a>
  1955. </dt>
  1956. <dt><a href="config.html#cfg_UserprefsDeveloperTab"><strong>UserprefsDeveloperTab</strong></a>
  1957. </dt>
  1958. <dt><a href="config.html#cfg_UserprefsDisallow"><strong>UserprefsDisallow</strong></a>
  1959. </dt>
  1960. <dt><a href="config.html#cfg_Servers_users"><strong>users</strong></a>
  1961. </dt>
  1962. </dl></td>
  1963. </tr></table>
  1964. <h2 id="V">V</h2>
  1965. <table style="width: 100%" class="indextable genindextable"><tr>
  1966. <td style="width: 33%" valign="top"><dl>
  1967. <dt><a href="config.html#cfg_Servers_verbose"><strong>verbose</strong></a>
  1968. </dt>
  1969. </dl></td>
  1970. <td style="width: 33%" valign="top"><dl>
  1971. <dt><a href="config.html#cfg_VersionCheck"><strong>VersionCheck</strong></a>
  1972. </dt>
  1973. </dl></td>
  1974. </tr></table>
  1975. <h2 id="W">W</h2>
  1976. <table style="width: 100%" class="indextable genindextable"><tr>
  1977. <td style="width: 33%" valign="top"><dl>
  1978. <dt><a href="glossary.html#term-webserver"><strong>Webserver</strong></a>
  1979. </dt>
  1980. </dl></td>
  1981. </tr></table>
  1982. <h2 id="X">X</h2>
  1983. <table style="width: 100%" class="indextable genindextable"><tr>
  1984. <td style="width: 33%" valign="top"><dl>
  1985. <dt><a href="glossary.html#term-xml"><strong>XML</strong></a>
  1986. </dt>
  1987. </dl></td>
  1988. </tr></table>
  1989. <h2 id="Z">Z</h2>
  1990. <table style="width: 100%" class="indextable genindextable"><tr>
  1991. <td style="width: 33%" valign="top"><dl>
  1992. <dt><a href="glossary.html#term-zip"><strong>ZIP</strong></a>
  1993. </dt>
  1994. <dt><a href="config.html#cfg_ZipDump"><strong>ZipDump</strong></a>
  1995. </dt>
  1996. </dl></td>
  1997. <td style="width: 33%" valign="top"><dl>
  1998. <dt><a href="glossary.html#term-zlib"><strong>zlib</strong></a>
  1999. </dt>
  2000. </dl></td>
  2001. </tr></table>
  2002. </div>
  2003. </div>
  2004. </div>
  2005. <div class="sphinxsidebar">
  2006. <div class="sphinxsidebarwrapper">
  2007. <div id="searchbox" style="display: none">
  2008. <h3>Quick search</h3>
  2009. <form class="search" action="search.html" method="get">
  2010. <input type="text" name="q" />
  2011. <input type="submit" value="Go" />
  2012. <input type="hidden" name="check_keywords" value="yes" />
  2013. <input type="hidden" name="area" value="default" />
  2014. </form>
  2015. <p class="searchtip" style="font-size: 90%">
  2016. Enter search terms or a module, class or function name.
  2017. </p>
  2018. </div>
  2019. <script type="text/javascript">$('#searchbox').show(0);</script>
  2020. </div>
  2021. </div>
  2022. <div class="clearer"></div>
  2023. </div>
  2024. <div class="related">
  2025. <h3>Navigation</h3>
  2026. <ul>
  2027. <li class="right" style="margin-right: 10px">
  2028. <a href="#" title="General Index"
  2029. >index</a></li>
  2030. <li><a href="index.html">phpMyAdmin 4.2.7.1 documentation</a> &raquo;</li>
  2031. </ul>
  2032. </div>
  2033. <div class="footer">
  2034. &copy; <a href="copyright.html">Copyright</a> 2012 - 2014, The phpMyAdmin devel team.
  2035. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
  2036. </div>
  2037. </body>
  2038. </html>