<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/wincache.setup.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'uk',
  ),
  'this' => 
  array (
    0 => 'wincache.installation.php',
    1 => 'Встановлення',
    2 => 'Встановлення',
  ),
  'up' => 
  array (
    0 => 'wincache.setup.php',
    1 => 'Встановлення/налаштування',
  ),
  'prev' => 
  array (
    0 => 'wincache.requirements.php',
    1 => 'Вимоги',
  ),
  'next' => 
  array (
    0 => 'wincache.configuration.php',
    1 => 'Налаштування під час виконання',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/wincache/setup.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="wincache.installation" class="section">
  <h2 class="title">Встановлення</h2>
  <p class="para">
   Це розширення <a href="https://pecl.php.net/" class="link external">&raquo;&nbsp;PECL</a> не входить до складу PHP.
  </p>
  <p class="para">
   Інструкція щодо встановлення цього PECL-розширення є в розділі посібника <a href="install.pecl.php" class="link">Встановлення
PECL-розширень</a>. Більше інформації, як от нові випуски, файли для
завантаження, файли з початковим кодом, інформація для дописувачів та список
змін знаходиться тут: 
   <a href="https://pecl.php.net/package/wincache" class="link external">&raquo;&nbsp;https://pecl.php.net/package/wincache</a>.
  </p>
  <p class="para">
   There are two packages for this extension: one package is for PHP versions 5.2.X,
   and the other package is for PHP 5.3.X. Select the package that is appropriate for
   the PHP version being used.
  </p>
  <p class="para">
   To install and enable the extension, follow these steps:
  </p>
  <div class="procedure">
   <ol type="1"><li>
    <p class="simpara">
     Unpack the package into some temporary location.
    </p>
   </li>
   <li>
    <p class="simpara">
     Copy the <var class="filename">php_wincache.dll</var> file into the PHP extensions folder.
     Typically this folder is called &quot;ext&quot; and it is located in the same folder with all
     PHP binary files. For example: <var class="filename">C:\Program Files\PHP\ext</var>.
    </p>
   </li>
   <li>
    <p class="simpara">
     Using a text editor, open the php.ini file, which is usually located in the
     same folder where all PHP binary files are. For example:
     <var class="filename">C:\Program Files\PHP\php.ini</var>.
    </p>
   </li>
   <li>
    <p class="simpara">
     Add the following line at the end of the php.ini file:
     <code class="literal">extension = php_wincache.dll</code>.
    </p>
   </li>
   <li>
    <p class="simpara">
     Save and close the <var class="filename">php.ini</var> file.
    </p>
   </li>
   <li>
    <p class="simpara">
     Recycle the IIS Application Pools for PHP to pick up the configuration changes.
     To check that the extension has been enabled, create a file called
     <var class="filename">phpinfo.php</var> with a PHP code that calls
     <a href="function.phpinfo.php" class="link">phpinfo</a> function.
    </p>
   </li>
   <li>
    <p class="simpara">
     Save the <var class="filename">phpinfo.php</var> file in the root folder of a
     IIS web site that uses PHP, then open a browser and make a request to
     http://localhost/phpinfo.php. Search within the returned web page
     for a section called <code class="literal">wincache</code>. If the extension
     is enabled, then the <a href="function.phpinfo.php" class="link">phpinfo</a>
     output will list the configuration settings provided by the WinCache.
    </p>
   </li>
  </ol></div>
  <blockquote class="note"><p><strong class="note">Зауваження</strong>: 
   <span class="simpara">
    Do not forget to remove <var class="filename">phpinfo.php</var> file from the web
    site&#039;s root folder after verifying that extension has been enabled.
   </span>
  </p></blockquote>
 </div><?php manual_footer($setup); ?>