<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/apache.setup.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'it',
  ),
  'this' => 
  array (
    0 => 'apache.configuration.php',
    1 => 'Configurazione di Runtime',
    2 => 'Configurazione di Runtime',
  ),
  'up' => 
  array (
    0 => 'apache.setup.php',
    1 => 'Installazione/Configurazione',
  ),
  'prev' => 
  array (
    0 => 'apache.installation.php',
    1 => 'Installazione',
  ),
  'next' => 
  array (
    0 => 'ref.apache.php',
    1 => 'Funzioni Apache',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'it',
    'path' => 'reference/apache/ini.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="apache.configuration" class="section">
 <h2 class="title">Configurazione di Runtime</h2>
 <p class="para">
 Il comportamento del modulo Apache per PHP è influenzato dalle impostazioni in <var class="filename">php.ini</var>.
 Le impostazioni di configurazione del <var class="filename">php.ini</var> possono essere scavalcate
 attraverso le impostazioni <a href="configuration.changes.php#configuration.changes.apache" class="link">php_flag</a>
 nel file di configurazione del server o nei file <var class="filename">.htaccess</var> locali.
 </p>
 <div class="example" id="example-1">
  <p><strong>Example #1 disabilitazione dell&#039;interprete PHP in una directory mediante <var class="filename">.htaccess</var></strong></p>
  <div class="example-contents"><div class="cdata"><pre>php_flag engine off</pre></div></div>

 </div>
 <p class="para">
  <table class="doctable table">
   <caption><strong>Opzioni di configurazione di Apache</strong></caption>
   
    <thead>
     <tr>
      <th>Nome</th>
      <th>Default</th>
      <th>Modificabile</th>
      <th>Storico dei cambiamenti</th>
     </tr>

    </thead>

    <tbody class="tbody">
     <tr>
      <td><a href="apache.configuration.php#ini.engine" class="link">engine</a></td>
      <td>&quot;1&quot;</td>
      <td><strong><code><a href="info.constants.php#constant.ini-all">INI_ALL</a></code></strong></td>
      <td class="empty">&nbsp;</td>
     </tr>

     <tr>
      <td><a href="apache.configuration.php#ini.child-terminate" class="link">child_terminate</a></td>
      <td>&quot;0&quot;</td>
      <td><strong><code><a href="info.constants.php#constant.ini-all">INI_ALL</a></code></strong></td>
      <td class="empty">&nbsp;</td>
     </tr>

     <tr>
      <td><a href="apache.configuration.php#ini.last-modified" class="link">last_modified</a></td>
      <td>&quot;0&quot;</td>
      <td><strong><code><a href="info.constants.php#constant.ini-all">INI_ALL</a></code></strong></td>
      <td class="empty">&nbsp;</td>
     </tr>

     <tr>
      <td><a href="apache.configuration.php#ini.xbithack" class="link">xbithack</a></td>
      <td>&quot;0&quot;</td>
      <td><strong><code><a href="info.constants.php#constant.ini-all">INI_ALL</a></code></strong></td>
      <td class="empty">&nbsp;</td>
     </tr>

    </tbody>
   
  </table>

  Per maggiori dettagli e definizioni sui 
modi INI_*, vedere <a href="configuration.changes.modes.php" class="xref">Where a configuration setting may be set</a>.
 </p>

 <p class="para">Breve descrizione dei parametri
di configurazione.</p>

 <p class="para">
  <dl>
   
    <dt id="ini.engine">
     <code class="parameter">engine</code>
     <span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span>
    </dt>
    <dd>
     <p class="para">
      Spegne o accende l&#039;inteprete PHP.
      Questa direttiva è utile solo nella versione di PHP compilata come
      modulo di Apache. Viene usata dai siti che vogliono spegnere
      e accendere il parsing PHP in base alla directory o al virtual server
      corrente. Inserendo <strong class="userinput"><code>engine off</code></strong>
      nel posto appropriato nel file <var class="filename">httpd.conf</var>, il PHP può
      essere abilitato o disabilitato.
     </p>
    </dd>
   
   
    <dt id="ini.child-terminate">
     <code class="parameter">child_terminate</code>
     <span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span>
    </dt>
    <dd>
     <p class="para">
      Decide se gli script PHP possono richiedere la terminazione dei processi figli alla fine della richiesta HTTP, 
      vedere anche <span class="function"><a href="function.apache-child-terminate.php" class="function">apache_child_terminate()</a></span>.
     </p>
    </dd>
   
   
    <dt id="ini.last-modified">
     <code class="parameter">last_modified</code>
     <span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span>
    </dt>
    <dd>
     <p class="para">
      Manda la data di modifica degli script nell&#039;header Last-Modified:.
     </p>
    </dd>
   
   
    <dt id="ini.xbithack">
     <code class="parameter">xbithack</code>
     <span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span>
    </dt>
    <dd>
     <p class="para">
      Interpreta i file con il bit di esecuzione impostato, a prescindere dalla loro estensione.
     </p>
    </dd>
   
  </dl>
 </p>

</div><?php manual_footer($setup); ?>