|
Yes, it was one of the first things that was done:
Información detallada de error:
| Módulo | IsapiModule |
| Notificación | ExecuteRequestHandler |
| Controlador | ASPClassic |
| Código de error | 0x00000000 |
| Dirección URL solicitada | https://www.vidauna.com:443/aaa.asp" rel="nofollow - https://www.vidauna.com:443/aaa.asp |
| Ruta de acceso física | ...\aaa.asp |
| Método de inicio de sesión | Anónimo |
| Usuario de inicio de sesión | Anónimo |
|---|
We use Plesk, and one thing I think might be happening is that there might be some configuration that prevents scripts from running at the same time, or there might be incompatibility with "Server.ScriptTimeout = 90" and "Session.Timeout = 20". Tests have been run by deleting all content from common.asp except for these two lines (leaving the forum down), and the example still doesn't work. However, when I remove the "Session.Timeout = 20" line (leaving only "Server.ScriptTimeout = 90"), the example works fine.
If I remove the "Server.ScriptTimeout = 90" line (leaving only "Session.Timeout = 20"), the example still causes problems, but not as often (when refreshing the page).
What's happening to me is very strange. That's why I think there must be something in the Plesk or IIS configuration that's preventing these scripts (forum and example) from running at the same time.
That's why I'm asking on this forum to see if anyone has experienced this and/or knows how to fix it.
This is the content of aaa.asp. I've also tried setting (on any domain) "Session.Timeout = 20" in aaa.asp (it doesn't matter what time you set: 20, 30, 60, etc.) and the same thing happens: it works once, and it doesn't work once (when you refresh the page (F5)).
Thanks,
<%@ Language= "VBScript" %> <HTML> <BODY> <!-- Call the JScript procedure from within VBScript--> <% call printDate() %> <!--Call the VBScript procedure from within VBScrip--> <% Echo %> <BR> </BODY> </HTML>
<%Sub Echo%> <!--Note: this will not output anything unless the page is called with a query string like https://localhost/test.asp?x=1%20have&y=a%20cunning&z=plan --> <% Response.Write "<TABLE BORDER=1>" & _ "<TR><TH>Name</TH><TH>Value</TH></TR>"
Set objQueryString = Request.QueryString
For Each strSelection In objQueryString Response.Write "<TR><TD>" & strSelection & "</TD><TD>" & _ objQueryString(strSelection) & "</TD></TR>" Next
Response.Write "</TABLE>"
End Sub %>
<SCRIPT Language= "JScript" RUNAT=SERVER>
function printDate() { var x
x = new Date()
Response.Write(x.toString()) Response.Write("<BR>") } </SCRIPT>
------------- https://www.lanocion.es - https://www.lanocion.games - https://www.lanocion.chat
|