Just installed FCKeditor on my localhost. Tested /_samples/asp/sample01.asp in IE and all works fine. Tested it in Firefox 1 and I get the following error...
HTTP 500.100 - Internal Server Error - ASP error
Internet Information Services
Technical Information (for support personnel)
* Error Type:
Microsoft VBScript runtime (0x800A0006)
Overflow: 'CInt'
C:\INETPUB\WWWROOT\FCKEDITOR_2.0RC1\_SAMPLES\ASP\../../fckeditor.asp, line 130
* Browser Type:
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko/20041107 Firefox/1.0
* Page:
GET /_samples/asp/sample01.asp
* Time:
14 December 2004, 11:01:26
------------------------------------------------
Any ideas why?
Thanks!
Tue, 12/14/2004 - 03:55
#1
RE: IE ok, but not Firefox 1
Mozilla version numbers are too large for an integer.
RE: IE ok, but not Firefox 1
But, now I don't get the editor displayed in Firefox, again IE is ok. In FF it shows all, including the textarea, but just no editor.
Any ideas again?
RE: IE ok, but not Firefox 1
Change the same line to :
iVersion = Clng(Mid(sAgent, InStr(sAgent, "Gecko/") + 6, 8))
It's missing the first number of the version in the user agent string.
RE: IE ok, but not Firefox 1