require.html 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>Requirements &#8212; phpMyAdmin 4.9.10 documentation</title>
  7. <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
  8. <link rel="stylesheet" href="_static/classic.css" type="text/css" />
  9. <script id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script>
  10. <script src="_static/jquery.js"></script>
  11. <script src="_static/underscore.js"></script>
  12. <script src="_static/doctools.js"></script>
  13. <link rel="index" title="Index" href="genindex.html" />
  14. <link rel="search" title="Search" href="search.html" />
  15. <link rel="copyright" title="Copyright" href="copyright.html" />
  16. <link rel="next" title="Installation" href="setup.html" />
  17. <link rel="prev" title="Introduction" href="intro.html" />
  18. </head><body>
  19. <div class="related" role="navigation" aria-label="related navigation">
  20. <h3>Navigation</h3>
  21. <ul>
  22. <li class="right" style="margin-right: 10px">
  23. <a href="genindex.html" title="General Index"
  24. accesskey="I">index</a></li>
  25. <li class="right" >
  26. <a href="setup.html" title="Installation"
  27. accesskey="N">next</a> |</li>
  28. <li class="right" >
  29. <a href="intro.html" title="Introduction"
  30. accesskey="P">previous</a> |</li>
  31. <li class="nav-item nav-item-0"><a href="index.html">phpMyAdmin 4.9.10 documentation</a> &#187;</li>
  32. <li class="nav-item nav-item-this"><a href="">Requirements</a></li>
  33. </ul>
  34. </div>
  35. <div class="document">
  36. <div class="documentwrapper">
  37. <div class="bodywrapper">
  38. <div class="body" role="main">
  39. <div class="section" id="requirements">
  40. <span id="require"></span><h1>Requirements<a class="headerlink" href="#requirements" title="Permalink to this headline">¶</a></h1>
  41. <div class="section" id="web-server">
  42. <h2>Web server<a class="headerlink" href="#web-server" title="Permalink to this headline">¶</a></h2>
  43. <p>Since phpMyAdmin’s interface is based entirely in your browser, you’ll need a
  44. 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>
  45. </div>
  46. <div class="section" id="php">
  47. <h2>PHP<a class="headerlink" href="#php" title="Permalink to this headline">¶</a></h2>
  48. <ul class="simple">
  49. <li><p>You need PHP 5.5.0 or newer, with <code class="docutils literal notranslate"><span class="pre">session</span></code> support, the Standard PHP Library
  50. (SPL) extension, hash, ctype, and JSON support.</p></li>
  51. <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
  52. for performance reasons.</p></li>
  53. <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>
  54. <li><p>You need GD2 support in PHP to display inline thumbnails of JPEGs
  55. (“image/jpeg: inline”) with their original aspect ratio.</p></li>
  56. <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>
  57. <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>
  58. <li><p>To support XML and Open Document Spreadsheet importing, you need the
  59. <a class="reference external" href="https://www.php.net/libxml">libxml</a> extension.</p></li>
  60. <li><p>To support reCAPTCHA on the login page, you need the
  61. <a class="reference external" href="https://www.php.net/openssl">openssl</a> extension.</p></li>
  62. <li><p>To support displaying phpMyAdmin’s latest version, you need to enable
  63. <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
  64. <a class="reference external" href="https://www.php.net/curl">curl</a> extension.</p></li>
  65. </ul>
  66. <div class="admonition seealso">
  67. <p class="admonition-title">See also</p>
  68. <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>
  69. </div>
  70. </div>
  71. <div class="section" id="database">
  72. <h2>Database<a class="headerlink" href="#database" title="Permalink to this headline">¶</a></h2>
  73. <p>phpMyAdmin supports MySQL-compatible databases.</p>
  74. <ul class="simple">
  75. <li><p>MySQL 5.5 or newer</p></li>
  76. <li><p>MariaDB 5.5 or newer</p></li>
  77. </ul>
  78. <div class="admonition seealso">
  79. <p class="admonition-title">See also</p>
  80. <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>
  81. </div>
  82. </div>
  83. <div class="section" id="web-browser">
  84. <h2>Web browser<a class="headerlink" href="#web-browser" title="Permalink to this headline">¶</a></h2>
  85. <p>To access phpMyAdmin you need a web browser with cookies and JavaScript
  86. enabled.</p>
  87. <p>You need browser which is supported by jQuery 2.0, see
  88. &lt;<a class="reference external" href="https://jquery.com/browser-support/">https://jquery.com/browser-support/</a>&gt;.</p>
  89. </div>
  90. </div>
  91. <div class="clearer"></div>
  92. </div>
  93. </div>
  94. </div>
  95. <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
  96. <div class="sphinxsidebarwrapper">
  97. <h3><a href="index.html">Table of Contents</a></h3>
  98. <ul>
  99. <li><a class="reference internal" href="#">Requirements</a><ul>
  100. <li><a class="reference internal" href="#web-server">Web server</a></li>
  101. <li><a class="reference internal" href="#php">PHP</a></li>
  102. <li><a class="reference internal" href="#database">Database</a></li>
  103. <li><a class="reference internal" href="#web-browser">Web browser</a></li>
  104. </ul>
  105. </li>
  106. </ul>
  107. <h4>Previous topic</h4>
  108. <p class="topless"><a href="intro.html"
  109. title="previous chapter">Introduction</a></p>
  110. <h4>Next topic</h4>
  111. <p class="topless"><a href="setup.html"
  112. title="next chapter">Installation</a></p>
  113. <div role="note" aria-label="source link">
  114. <h3>This Page</h3>
  115. <ul class="this-page-menu">
  116. <li><a href="_sources/require.rst.txt"
  117. rel="nofollow">Show Source</a></li>
  118. </ul>
  119. </div>
  120. <div id="searchbox" style="display: none" role="search">
  121. <h3 id="searchlabel">Quick search</h3>
  122. <div class="searchformwrapper">
  123. <form class="search" action="search.html" method="get">
  124. <input type="text" name="q" aria-labelledby="searchlabel" />
  125. <input type="submit" value="Go" />
  126. </form>
  127. </div>
  128. </div>
  129. <script>$('#searchbox').show(0);</script>
  130. </div>
  131. </div>
  132. <div class="clearer"></div>
  133. </div>
  134. <div class="related" role="navigation" aria-label="related navigation">
  135. <h3>Navigation</h3>
  136. <ul>
  137. <li class="right" style="margin-right: 10px">
  138. <a href="genindex.html" title="General Index"
  139. >index</a></li>
  140. <li class="right" >
  141. <a href="setup.html" title="Installation"
  142. >next</a> |</li>
  143. <li class="right" >
  144. <a href="intro.html" title="Introduction"
  145. >previous</a> |</li>
  146. <li class="nav-item nav-item-0"><a href="index.html">phpMyAdmin 4.9.10 documentation</a> &#187;</li>
  147. <li class="nav-item nav-item-this"><a href="">Requirements</a></li>
  148. </ul>
  149. </div>
  150. <div class="footer" role="contentinfo">
  151. &#169; <a href="copyright.html">Copyright</a> 2012 - 2018, The phpMyAdmin devel team.
  152. Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 3.4.3.
  153. </div>
  154. </body>
  155. </html>