Categoría: Apache
-
[php] Depurando / Profiling en php ( II )
En este caso analizamos un hecho real, una web que tarda en cargar aleatoriamente entre 10 y 12 segundos. El problema es que al medir los tiempos en otro servidor no llega a 2 segundos. Después de revisar conectividad, carga de sistema, carga de apache … y demás parámetros habituales; todo estaba perfecto. Así que…
-
File Upload Warning: Max File Size Exceeded
Si estamos usando un script en php y necesitamos subir ficheros de gran tamaño, puede que tengamos que ampliar algunos parámetros. Normalente aparece un error como :File Upload Warning: Max File Size Exceeded Para ello, hay que revisar los siguientes parámetros: Apache LimitRequestBody PHP upload_max_filesize PHP post_max_size
-
Warning: PHP Startup: Unable to load dynamic library ‘/usr/lib/php5/20060613+lfs/fileinfo.so’ – /usr/lib/php5/20060613+lfs/fileinfo.so: cannot open shared object file: No such file or directory in Unknown on line 0
Algunos paquetes de Debian y otras distribuciones pueden quedarse obsoletos. En este caso php-fileinfo quedó obsoleto. Si no se ha eliminado la carga del modulo de php puede obtener este error : <b>Warning</b>: PHP Startup: Unable to load dynamic library ‘/usr/lib/php5/20060613+lfs/fileinfo.so’ – /usr/lib/php5/20060613+lfs/fileinfo.so: cannot open shared object file: No such file or directory in <b>Unknown</b>…
-
[error] an unknown filter was not added: DEFLATE
Limpiando errores de apache en Debian. Al parecer estoy intentando usar un módulo que no tengo activado [error] an unknown filter was not added: DEFLATE La solcuión, como siempre rápida : a2enmod deflate /etc/init.d/apache2 force-reload
-
[crit] (28)No space left on device: mod_rewrite: could not create rewrite_log_lock
Este error en el que apache se flipa y no es capaz de levantar aún cuando sí tiene espacio en el disco, se soluciona así: [shell]ipcs -s | grep apache | perl -e ‘while () { @a=split(/\s+/); print `ipcrm sem $a[1]`}’[/shell]
-
Invalid command ‘Order’, perhaps misspelled or defined by a module not included in the server configuration
En Debian testing al actualizar ahora ocurre este problema: [shell] # /etc/init.d/apache2 restart Forcing reload of web server (apache2)…Syntax error on line 141 of /etc/apache2/apache2.conf: Invalid command ‘Order’, perhaps misspelled or defined by a module not included in the server configuration failed! [/shell] Si vemos la documentación de Apache, el comando ‘Order’ pertenece al modulo…
-
Eaccelator: cache para php
Instalar eaccelerator Requirements ———— apache >= 1.3, mod_php >= 4.1, autoconf, automake, libtool, m4 apt-get install php4-dev #/usr/src/ wget http://keihanna.dl.sourceforge.net/sourceforge/eaccelerator/eaccelerator-0.9.4-rc2.tar.bz2 tar jxvf eaccelerator-0.9.4-rc2.tar.bz2 cd eaccelerator-0.9.4-rc2 export PHP_PREFIX=»/usr» $PHP_PREFIX/bin/phpize ./configure \ –enable-eaccelerator=shared \ –with-php-config=$PHP_PREFIX/bin/php-config export PHP_PREFIX=»/usr/local» make You must specify the real prefix where PHP is installed in the «export» command. It may be «/usr» «/usr/local»,…
-
Interprestar ApacheTop
Last hit: 09:17:07 atop runtime: 0 days, 00:58:20 09:17:08 All: 638924 reqs ( 182.65/sec) 3433539K ( 981.6K/sec) ( 5.4K/req) 2xx: 455415 (71.3%) 3xx: 175745 (27.5%) 4xx: 7746 ( 1.2%) 5xx: 10 ( 0.0%) R ( 30s): 5195 reqs ( 173.17/sec) 25405K ( 846.8K/sec) ( 4.9K/req) 2xx: 3447 (66.4%) 3xx: 1715 (33.0%) 4xx: 33 ( 0.6%)…