Hi all,
I'm running an ASP site using IIS 4.0 on a Windows 2000 Professional OS.
When accessing a certain page abc.asp, I get an error with the following line...
Anyway, this works fine on the development server, however, upon getting this error, the entire site goes down and you receive the error stating that "Too many users are currently accessing the site". The server must then be re-booted.
If I remove the code, the site functions perfectly. Also, I have checked that the scrrun.dll file is registered and it is, and the max connections allowed on the web server is set to 10 by default and cannot be changed. (Windows specific).
I have made a test ASP page (on the Production server) where I open the AutoExec.bat file using the FileSystemObject and it still hangs the site.
The development server has the capability to allow unlimited connections. Does anyone think that this could be the problem? Any help would be much appreciated. Thanks
I'm running an ASP site using IIS 4.0 on a Windows 2000 Professional OS.
When accessing a certain page abc.asp, I get an error with the following line...
Code:
set FSO = Server.CreateObject("Scripting.FileSystemObject")
set objFile = FSO.GetFile server.MapPath(rs("EntireFilePath"))
If I remove the code, the site functions perfectly. Also, I have checked that the scrrun.dll file is registered and it is, and the max connections allowed on the web server is set to 10 by default and cannot be changed. (Windows specific).
I have made a test ASP page (on the Production server) where I open the AutoExec.bat file using the FileSystemObject and it still hangs the site.
The development server has the capability to allow unlimited connections. Does anyone think that this could be the problem? Any help would be much appreciated. Thanks