Request Timeout
I get nothing but timeouts when I try to run the VS Sample projects. VS running as admin. Sitefinity 4.0 RTW.
I've tried the "Run VS Sample solution" in the welcome screen. Nothing ever loads. I've also tried to "Repair" the Sitefinity installation. The version number on the installer is 4.0.1098.0.
I think the DB services were not running. There should definitely be a timeout if the DB cannot be contacted/opened.
Hi Eric,
It is possible that your SQLExpress instance is not running at the location the Sample website expects. You can change the connection string of the database using the DataConfig.config file located in the App_Data\Sitefinity\Configuration folder of the SitefinityWebApp solution. The current config looks similar to this:
<?
xml
version
=
"1.0"
encoding
=
"utf-8"
?>
<
dataConfig
initialized
=
"True"
xmlns:config
=
"urn:telerik:sitefinity:configuration"
xmlns:type
=
"urn:telerik:sitefinity:configuration:type"
config:version
=
"4.0.1090.0"
>
<
connectionStrings
>
<
add
connectionString
=
"Data Source=.\SQLExpress;Integrated Security=True;User Instance=True;AttachDBFilename=|DataDirectory|Sitefinity.mdf"
providerName
=
"System.Data.SqlClient"
name
=
"Sitefinity"
/>
</
connectionStrings
>
</
dataConfig
>