Changes between Version 18 and Version 19 of manual_regente_windows:apache_php

Show
Ignore:
Timestamp:
09/20/10 15:09:21 (14 years ago)
Author:
pablo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • manual_regente_windows:apache_php

    v18 v19  
    7676 }}} 
    7777 
    78  * eAccellerator: 
     78 * eAccelerator: (instrucciones basadas en http://www.sitebuddy.com/PHP/Accelerators/eAccelerator) 
    7979  * Descargar http://www.sitebuddy.com/files/eAccelerator0952_5.2.6.dll o http://www.bircherasociados.com.ar/soft/eAccelerator0952_5.2.6.dll 
    80   * Instrucciones de instalación en http://www.sitebuddy.com/PHP/Accelerators/eAccelerator 
     80  * Copiar la dll en c:\php\ext con el nombre "eaccelerator.dll". 
     81  * Crear la carpeta c:\php\eaccelerator y darle permisos totales. 
     82  * Agregar lo siguiente en c:\php\php.ini 
     83 {{{ 
     84extension="eaccelerator.dll" 
     85eaccelerator.shm_size="64" ; 20MB per heavy site ? 
     86eaccelerator.cache_dir="c:\php\eaccelerator" 
     87eaccelerator.enable="1" 
     88eaccelerator.optimizer="1" 
     89eaccelerator.check_mtime="1" 
     90; 0 should be faster but will skip checking the modified date on your cached files eaccelerator.debug="0" 
     91eaccelerator.filter="" 
     92eaccelerator.shm_max="0" 
     93eaccelerator.shm_ttl="0" ( I have used 3600 = 1 hour) 
     94eaccelerator.shm_prune_period="0"  ( testing 1800) 
     95eaccelerator.shm_only="0" (testing 1 this seem noticeably faster?) 
     96eaccelerator.compress="1" 
     97eaccelerator.compress_level="9" 
     98eaccelerator.keys = "shm" (testing) 
     99eaccelerator.sessions = "shm" (testing) 
     100eaccelerator.content = "shm" (testing) 
     101}}} 
     102  * Reiniciar el servidor web Apache como se ha indicado más arriba. 
     103  * Al recargar la página phpinfo.php, debe encontrarse lo siguiente: 
    81104 
    82105