Ir al contenido principal

Problemas de ASP error 0115

Cuando saca este error 

Páginas Active Server error 'ASP 0115'

Error inesperado

/iscampus/admon/upload/upload_dest.asp

Error capturable (C0000005) en un objeto externo. La secuencia de comandos no puede continuar

Fue solucionado de la siguiente manera:


W2K3 tiene tiene limitada a 200 K el tamaño de los ficheros que pueden subirse con ASP, y se debe modificar el archivo C:\WINDOWS\system32\inetsrv\metabase.xml elvalor asignado a la entrada spMaxRequestEntityAllowed por el necesario.  Puede ser 10 MB.

Para poder modificar el archivo es necesario parar el servicio IIS y configurar en la administracion de IIS en equipo Local click derecho, propiedades  activamos el checkbox que dice "Habilitar la modificación directa de archivos Metabase".

Tambien puede ser necesario hacer lo siguiente:

What does this error mean: 'error "ASP 0115" Unexpected error - A trappable error occurred in an external object.'

It typically means that you are not running the latest version of Internet Information Server / Active Server. See the Installation Instructions for more details.

Note that some customers have experienced this problem even after installing the latest version of ASP. If you are still experiencing this error, it is possible that the upgrade did not "take", partially due to some inaccuracies in Microsoft's Hotfix installation instructions. If this is the case:

1- Stop IIS (all services from the Internet Service Manager)

2- Assuming you still have the old version of ASP.DLL and it is called ASP_OLD.DLL, then from a command prompt, run

 C:> REGSVR32 /U ASP_OLD.DLL (to unregister the old version)

3- With the new ASP.DLL, run

 C:> REGSVR32 ASP.DLL

4- Restart IIS.




Comentarios

Entradas populares de este blog

Vulnerabilidad en Bluetooth -- BIAS

Crítica vulnerabilidad en Linux desde 2009

Esta semana se dio a conocer la existencia de una vulnerabilidad de 5 años de antigüedad que afecta a la mayoría de las distribuciones del sistema operativo Linux . La misma radica en el kernel del sistema operativo y permite, entre otras cosas, la ejecución de código arbitrario y la elevación de privilegios. Fue introducida al popular sistema operativo de código abierto en el año 2009 con la versión 2.6.31-rc3 del kernel y afecta a todas las versiones liberadas desde entonces hasta la 3.14.3 inclusive. La vulnerabilidad se genera gracias a una corrupción de memoria en el kernel , más específicamente en la función n_tty_write   que controla el pseudo dispositivo tty ( pty ) de Linux. Afortunadamente, la falla fue descubierta por los desarrolladores del kernel de Linux, por lo que pudieron tomar acciones rápidamente publicando un parche  en la rama de desarrollo del proyecto y luego avisando a las respectivas distribuciones para que se liberaran las corre...

PHP On Tomcat

Fue tomado de http://fabien.duminy.ifrance.com/blog/archives/2007/08/entry_14.html tomcat and php Here are the steps to run php in tomcat : Download tomcat and unzip the archive where you want (=> TOMCAT_DIR ) Create the following directories : TOMCAT_DIR /webapps/testPHP If necessary, create directory TOMCAT_DIR /common/lib (it seems, at least with tomcat 6, that the directory is no more created) Edit the file TOMCAT_DIR /conf/catalina.properties and modify the line for property shared.loader : shared.loader=${catalina.home}/common/classes,${catalina.home}/common/lib/*.jar Edit the file TOMCAT_DIR /conf/web.xml and add the lines mentionned below (see ' lines to add to web.xml of your tomcat installation ') To download quercus ( a php 5 engine written in pure java), you must in fact download resin becau...