Ask a Question related to ASP, Design and Development.
-
Vinod Pillai #1
IIS log failed to write entry
This comes randomly once in a blue moon on the browser
screen. Any clues on how to resolve this.
Warning: IIS log failed to write entry,
File /WebCollections/global.asa
Line 35 Arguments are of the wrong type, are out of
acceptable range, or
are in conflict with one another.. .
For additional information specific to this message please
visit the
Microsoft Online Support site located at:
[url]http://www.microsoft.com/contentredirect.asp[/url].
Vinod Pillai Guest
-
#19022 [Com]: PHP Warning: Failed to write session data (files)
ID: 19022 Comment by: alexbodn at 012 dot net dot il Reported By: phpbugs at mx4k dot com Status: No Feedback... -
delayed write failed?
oooh I could cry. I just lost an entire page of work. There is an error that keeps popping up that says "windows was unable to save all data for... -
Any ideas on how to confirm data entry of an item post entry?
Access 97 is being used. Sorry for the vague subject. The database is a frontend/backend if that makes a difference. There are 3 tables,... -
#21503 [Opn->Fbk]: Failed to write session data (Files).
ID: 21503 Updated by: sniper@php.net Reported By: ccollins at totsp dot com -Status: Open +Status: ... -
Getting "{Delayed Write Failed}" messages
I have several rendering machines running XP Pro connected to a Server Running XP Server 2003 - I am getting the message : "{Delayed Write Failed}... -
Ken Schaefer #2
Re: IIS log failed to write entry
What is on line 35 of global.asa?
Cheers
Ken
"Vinod Pillai" <vinod.pillai@indussoft.com> wrote in message
news:126101c372c2$48d61f40$a001280a@phx.gbl...
: This comes randomly once in a blue moon on the browser
: screen. Any clues on how to resolve this.
:
:
: Warning: IIS log failed to write entry,
: File /WebCollections/global.asa
: Line 35 Arguments are of the wrong type, are out of
: acceptable range, or
: are in conflict with one another.. .
: For additional information specific to this message please
: visit the
: Microsoft Online Support site located at:
: [url]http://www.microsoft.com/contentredirect.asp[/url].
:
Ken Schaefer Guest
-
Vinod Pillai #3
Re: IIS log failed to write entry
The error comes only once or twice in one to two weeks.
The error comes on the line
com.Parameters.Append com.CreateParameter("f1", 8 , adParamInput)
from the function below in global.asa file
Sub Session_OnEnd
set con = server.CreateObject("ADODB.Connection")
con.Open session("sConnectstring")
con.Execute "update th set caccountdisabledyn = 'N' where szuserid =
'"&session("userid")&"'"
'Added By
set com = Server.CreateObject("adodb.command")
com.ActiveConnection = con
com.CommandType = 4 'adcmdstoredproc
com.CommandText = "Upd_LOG"
com.Parameters.Append com.CreateParameter("f1", 8 , adParamInput)
com.Parameters.Append com.CreateParameter("f2", 8, adParamInput)
com.Parameters.Append com.CreateParameter("f3", 8, adParamInput)
com.Parameters.Append com.CreateParameter("f4", 8, adParamInput)
com.Execute
con.CommitTrans
con.Close
set com = nothing
set con = nothing
session.Abandon
End Sub
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
Vinod Pillai Guest



Reply With Quote

