Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

No clue.. Overflow, Microsoft VBScript runtime error '800a0006'

I'm receiving suddenly this error on a Win2003 Server Web Application:

Microsoft VBScript runtime error '800a0006'

Overflow: 'Appname'

A bunch of updates where performed on this server but I have rolled them back all.

The page is old ASP code and if i run file monitor utility it will show the BUFFER OVERFLOW when it hits a GIF.

Any ideas?

like image 913
Codex73 Avatar asked Dec 17 '22 08:12

Codex73


2 Answers

Microsoft VBScript runtime error '800a0006' almost always indicates a divide by zero error.

like image 160
Randolpho Avatar answered Mar 25 '23 07:03

Randolpho


You can reproduce the Overflow error like this :

Dim testVar
testVar = 99999
testVar = CInt(testVar)

So, maybe this indicates there are some problems with the data types where you are setting some variables on that file?

like image 34
Çağdaş Tekin Avatar answered Mar 25 '23 07:03

Çağdaş Tekin