
02/06/2003, 14:41
|
 | | | Fecha de Ingreso: febrero-2002 Ubicación: Monterrey
Mensajes: 32
Antigüedad: 23 años, 2 meses Puntos: 0 | |
Tal vez tengas definido otro directorio cgi-bin en la configuracion de tu apache,, verifica estas lineas y asegurate que sea el mismo directorio donde estas corriendo tus .pl
#
# ScriptAlias: This controls which directories contain server scripts.
# ScriptAliases are essentially the same as Aliases, except that
# documents in the realname directory are treated as applications and
# run by the server when requested rather than as documents sent to the client.
# The same rules about trailing "/" apply to ScriptAlias directives as to
# Alias.
#
ScriptAlias /cgi-bin/ "E:/Root/cgi-bin/"
#
# "C:/Program Files/Apache Group/Apache/cgi-bin" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
#
<Directory "E:/Root/cgi-bin">
AllowOverride None
Options None
</Directory> |