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

instalar FEDORA 9 en VirtualPC

Para instalar Fedora 9 en virtualPC se obtuvo ayuda desde la pagina web  http://blogs.technet.com/seanearp/archive/2008/05/19/installing-fedora-9-sulphur-in-virtual-pc-2007.aspx Installing Fedora 9 (Sulphur) in Virtual PC 2007 Fedora 9 was released last week, which you can download here: http://fedoraproject.org/get-fedora.html .  What's new?  Highlights from the release notes include: GNOME 2.22 . GNOME now includes a webcam photo and video creation utility called Cheese , improved network filesystem support, a new international clock applet, Google Calendar support and custom email labels in Evolution, a new Remote Desktop Viewer, improved accessibility features, and PolicyKit integration. KDE 4.0.3 Xfce 4.4.2 NetworkManager 0.7 provides improved mobile broadband support, including GSM and CDMA devices, and now supports multiple devices and ad-hoc networking for sharing connections. The Fedora installer, Anaconda , now supports partition resizing for ext2...

25 Useful IPtable Firewall Rules Every Linux Administrator Should Know

Tomado de http://www.tecmint.com/linux-iptables-firewall-rules-examples-commands/ Managing network traffic is one of the toughest jobs a system administrators has to deal with. He must configure the firewall in such a way that it will meet the system and users requirements for both incoming and outgoing connections, without leaving the system vulnerable to attacks.  25 IPtables Firewall Rules for Linux This is where iptables come in handy. Iptables is a Linux command line firewall that allows system administrators to manage incoming and outgoing traffic via a set of configurable table rules. Iptables uses a set of tables which have chains that contain set of built-in or user defined rules. Thanks to them a system administrator can properly filter the network traffic of his system. Per iptables manual, there are currently 3 types of tables: FILTER – this is the default table, which contains the built in chains for:IN...