MySQL Too Many Connections Error Problem & Fix

If you are getting? Too many connections error when you try to open your website in browser, It means all available connection used by other script or mysql process. Number of connection to mysql server determined by setting in mysql conf? file.? By default,? it is 151? for MySQL 5.x…continue reading →

Set / Retrieve Script Timeout in ASP

The ScriptTimeout property in ASP specifies the amount of run-time in seconds for a script before it terminates. The default value is 90 seconds set by IIS. Set the script timeout: <% Server.ScriptTimeout=200 %> Retrieve the current value of the ScriptTimeout property: <% response.write(Server.ScriptTimeout) %>continue reading →