require.html 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="generator" content="Docutils 0.19: https://docutils.sourceforge.io/" />
  6. <title>Requirements &#8212; phpMyAdmin 5.2.2 documentation</title>
  7. <link rel="stylesheet" type="text/css" href="_static/pygments.css" />
  8. <link rel="stylesheet" type="text/css" href="_static/classic.css" />
  9. <script data-url_root="./" id="documentation_options" src="_static/documentation_options.js"></script>
  10. <script src="_static/jquery.js"></script>
  11. <script src="_static/underscore.js"></script>
  12. <script src="_static/_sphinx_javascript_frameworks_compat.js"></script>
  13. <script src="_static/doctools.js"></script>
  14. <script src="_static/sphinx_highlight.js"></script>
  15. <link rel="index" title="Index" href="genindex.html" />
  16. <link rel="search" title="Search" href="search.html" />
  17. <link rel="copyright" title="Copyright" href="copyright.html" />
  18. <link rel="next" title="Installation" href="setup.html" />
  19. <link rel="prev" title="Introduction" href="intro.html" />
  20. </head><body>
  21. <div class="related" role="navigation" aria-label="related navigation">
  22. <h3>Navigation</h3>
  23. <ul>
  24. <li class="right" style="margin-right: 10px">
  25. <a href="genindex.html" title="General Index"
  26. accesskey="I">index</a></li>
  27. <li class="right" >
  28. <a href="setup.html" title="Installation"
  29. accesskey="N">next</a> |</li>
  30. <li class="right" >
  31. <a href="intro.html" title="Introduction"
  32. accesskey="P">previous</a> |</li>
  33. <li class="nav-item nav-item-0"><a href="index.html">phpMyAdmin 5.2.2 documentation</a> &#187;</li>
  34. <li class="nav-item nav-item-this"><a href="">Requirements</a></li>
  35. </ul>
  36. </div>
  37. <div class="document">
  38. <div class="documentwrapper">
  39. <div class="bodywrapper">
  40. <div class="body" role="main">
  41. <section id="requirements">
  42. <span id="require"></span><h1>Requirements<a class="headerlink" href="#requirements" title="Permalink to this heading">¶</a></h1>
  43. <section id="web-server">
  44. <h2>Web server<a class="headerlink" href="#web-server" title="Permalink to this heading">¶</a></h2>
  45. <p>Since phpMyAdmin’s interface is based entirely in your browser, you’ll need a
  46. web server (such as Apache, nginx, <a class="reference internal" href="glossary.html#term-IIS"><span class="xref std std-term">IIS</span></a>) to install phpMyAdmin’s files into.</p>
  47. </section>
  48. <section id="php">
  49. <h2>PHP<a class="headerlink" href="#php" title="Permalink to this heading">¶</a></h2>
  50. <ul class="simple">
  51. <li><p>You need PHP 7.2.5 or newer, with <code class="docutils literal notranslate"><span class="pre">session</span></code> support, the Standard PHP Library
  52. (SPL) extension, hash, ctype, and JSON support.</p></li>
  53. <li><p>The <code class="docutils literal notranslate"><span class="pre">mbstring</span></code> extension (see <a class="reference internal" href="glossary.html#term-mbstring"><span class="xref std std-term">mbstring</span></a>) is strongly recommended
  54. for performance reasons.</p></li>
  55. <li><p>To support uploading of ZIP files, you need the PHP <code class="docutils literal notranslate"><span class="pre">zip</span></code> extension.</p></li>
  56. <li><p>You need GD2 support in PHP to display inline thumbnails of JPEGs
  57. (“image/jpeg: inline”) with their original aspect ratio.</p></li>
  58. <li><p>When using the cookie authentication (the default), the <a class="reference external" href="https://www.php.net/openssl">openssl</a> extension is strongly suggested.</p></li>
  59. <li><p>To support upload progress bars, see <a class="reference internal" href="faq.html#faq2-9"><span class="std std-ref">2.9 Seeing an upload progress bar</span></a>.</p></li>
  60. <li><p>To support XML and Open Document Spreadsheet importing, you need the
  61. <a class="reference external" href="https://www.php.net/libxml">libxml</a> extension.</p></li>
  62. <li><p>To support reCAPTCHA on the login page, you need the
  63. <a class="reference external" href="https://www.php.net/openssl">openssl</a> extension.</p></li>
  64. <li><p>To support displaying phpMyAdmin’s latest version, you need to enable
  65. <code class="docutils literal notranslate"><span class="pre">allow_url_open</span></code> in your <code class="file docutils literal notranslate"><span class="pre">php.ini</span></code> or to have the
  66. <a class="reference external" href="https://www.php.net/curl">curl</a> extension.</p></li>
  67. </ul>
  68. <div class="admonition seealso">
  69. <p class="admonition-title">See also</p>
  70. <p><a class="reference internal" href="faq.html#faq1-31"><span class="std std-ref">1.31 Which PHP versions does phpMyAdmin support?</span></a>, <a class="reference internal" href="setup.html#authentication-modes"><span class="std std-ref">Using authentication modes</span></a></p>
  71. </div>
  72. </section>
  73. <section id="database">
  74. <h2>Database<a class="headerlink" href="#database" title="Permalink to this heading">¶</a></h2>
  75. <p>phpMyAdmin supports MySQL-compatible databases.</p>
  76. <ul class="simple">
  77. <li><p>MySQL 5.5 or newer</p></li>
  78. <li><p>MariaDB 5.5 or newer</p></li>
  79. </ul>
  80. <div class="admonition seealso">
  81. <p class="admonition-title">See also</p>
  82. <p><a class="reference internal" href="faq.html#faq1-17"><span class="std std-ref">1.17 Which Database versions does phpMyAdmin support?</span></a></p>
  83. </div>
  84. </section>
  85. <section id="web-browser">
  86. <h2>Web browser<a class="headerlink" href="#web-browser" title="Permalink to this heading">¶</a></h2>
  87. <p>To access phpMyAdmin you need a web browser with cookies and JavaScript
  88. enabled.</p>
  89. <p>You need a browser which is supported by Bootstrap 4.5, see
  90. &lt;<a class="reference external" href="https://getbootstrap.com/docs/4.5/getting-started/browsers-devices/">https://getbootstrap.com/docs/4.5/getting-started/browsers-devices/</a>&gt;.</p>
  91. <div class="versionchanged">
  92. <p><span class="versionmodified changed">Changed in version 5.2.0: </span>You need a browser which is supported by Bootstrap 5.0, see
  93. &lt;<a class="reference external" href="https://getbootstrap.com/docs/5.0/getting-started/browsers-devices/">https://getbootstrap.com/docs/5.0/getting-started/browsers-devices/</a>&gt;.</p>
  94. </div>
  95. </section>
  96. </section>
  97. <div class="clearer"></div>
  98. </div>
  99. </div>
  100. </div>
  101. <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
  102. <div class="sphinxsidebarwrapper">
  103. <div>
  104. <h3><a href="index.html">Table of Contents</a></h3>
  105. <ul>
  106. <li><a class="reference internal" href="#">Requirements</a><ul>
  107. <li><a class="reference internal" href="#web-server">Web server</a></li>
  108. <li><a class="reference internal" href="#php">PHP</a></li>
  109. <li><a class="reference internal" href="#database">Database</a></li>
  110. <li><a class="reference internal" href="#web-browser">Web browser</a></li>
  111. </ul>
  112. </li>
  113. </ul>
  114. </div>
  115. <div>
  116. <h4>Previous topic</h4>
  117. <p class="topless"><a href="intro.html"
  118. title="previous chapter">Introduction</a></p>
  119. </div>
  120. <div>
  121. <h4>Next topic</h4>
  122. <p class="topless"><a href="setup.html"
  123. title="next chapter">Installation</a></p>
  124. </div>
  125. <div role="note" aria-label="source link">
  126. <h3>This Page</h3>
  127. <ul class="this-page-menu">
  128. <li><a href="_sources/require.rst.txt"
  129. rel="nofollow">Show Source</a></li>
  130. </ul>
  131. </div>
  132. <div id="searchbox" style="display: none" role="search">
  133. <h3 id="searchlabel">Quick search</h3>
  134. <div class="searchformwrapper">
  135. <form class="search" action="search.html" method="get">
  136. <input type="text" name="q" aria-labelledby="searchlabel" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"/>
  137. <input type="submit" value="Go" />
  138. </form>
  139. </div>
  140. </div>
  141. <script>document.getElementById('searchbox').style.display = "block"</script>
  142. </div>
  143. </div>
  144. <div class="clearer"></div>
  145. </div>
  146. <div class="related" role="navigation" aria-label="related navigation">
  147. <h3>Navigation</h3>
  148. <ul>
  149. <li class="right" style="margin-right: 10px">
  150. <a href="genindex.html" title="General Index"
  151. >index</a></li>
  152. <li class="right" >
  153. <a href="setup.html" title="Installation"
  154. >next</a> |</li>
  155. <li class="right" >
  156. <a href="intro.html" title="Introduction"
  157. >previous</a> |</li>
  158. <li class="nav-item nav-item-0"><a href="index.html">phpMyAdmin 5.2.2 documentation</a> &#187;</li>
  159. <li class="nav-item nav-item-this"><a href="">Requirements</a></li>
  160. </ul>
  161. </div>
  162. <div class="footer" role="contentinfo">
  163. &#169; <a href="copyright.html">Copyright</a> 2012 - 2024, The phpMyAdmin devel team.
  164. Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 5.3.0.
  165. </div>
  166. </body>
  167. </html>