I have recently move from one hosting providor to another. The former providor was using SQL 2005 and the new providor is using 2008. I installed SQL Manager 2008 and used Data Export/Import to move the contents between the two SQL servers. Everything went fine. Then i used FTP to download the content and upload it to the new providor again no problems.
I changed the web.config with the new credentials and tried to login to the /umbraco backend and i have no problems with that.
But when i try to access the normal site i get the following :
[SqlException (0x80131904): Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.]
Its umbraco v4.0.2.1 and ASP.NET 2.0
And yes i know what the SqlException is saying, but i just don't understand why i can login to the backend but the frontend is not working....
Recommendet is not data export/import for moving better is to do a backup of the old db and restore on the new system. So the indexes are in sync.One thing is to recycle the indexes of the tables.(or delete and recreate them)
Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Data.SqlClient.SqlException: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
SQL 2008 Timeout Expired
Hi,
I have recently move from one hosting providor to another. The former providor was using SQL 2005 and the new providor is using 2008. I installed SQL Manager 2008 and used Data Export/Import to move the contents between the two SQL servers. Everything went fine. Then i used FTP to download the content and upload it to the new providor again no problems.
I changed the web.config with the new credentials and tried to login to the /umbraco backend and i have no problems with that.
But when i try to access the normal site i get the following :
Its umbraco v4.0.2.1 and ASP.NET 2.0
And yes i know what the SqlException is saying, but i just don't understand why i can login to the backend but the frontend is not working....
/René
Try post full exception details...
Recommendet is not data export/import for moving better is to do a backup of the old db and restore on the new system. So the indexes are in sync.One thing is to recycle the indexes of the tables.(or delete and recreate them)
before try to republish the whole site...
Cheers, Thomas
Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Data.SqlClient.SqlException: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
Version Information: Microsoft .NET Framework Version:2.0.50727.4927; ASP.NET Version:2.0.50727.4927
And to Thomas, the old hosting company will not provide me with a backup !
Hi René!
I agree that it's strange you can login to the backend, but not the front end...
Are you using a remote SQL??
Try to add this to the end of your umbracoDbDSN ;timeout=60
/Michael
Oh, this is thrown by the usercontrol TopMenu in the function get_TopMenuList...
Take a look into this code or paste it here
is working on a reply...