Survey Forums

HomeHomeSurvey Project ...Survey Project ...Installation & ...Installation & ...installation 2.2/2.3 is not easy,  instruction unclear in README or www yoursite sourceinstallation 2.2/2.3 is not easy, instruction unclear in README or www yoursite source
Previous
 
Next
New Post
6/8/2015 2:53 PM
 

no matter how hard I try, after login (cannot really login)

 

I reach here

 

http://i.imgur.com/6gA8KuH.png

 

 

I cannot go further

 

I guess it is connection string

 

first, I cannot successfully run -- I always then choose, last success run, then choose control-F5

 

and this is my info of my sql server

the name is  --- FUJITSUPC\SQLEXPRESS --


when I open sql server, I just not use (sa/sa) for user/pass

just window authenticated login- with the above name, then oke


also no user/pass for the SURVEYDB database that I create and run your script (I presume successful as I can see some data in some of the tables)


for the connection string listed below (no username, no password anywhere),  am I doing correct???

 

can you make a youtube video (you got the youtube channel for thesurveyproject channel already) on HOW TO INSTALL -- it is  hard -- all we want, is try it out !! (passing installation and first few steps)

reminder-- looking at the topic of your forum, other people try and give up --- as no deep drill down questions has been asked !!

 

 

 

  <connectionStrings>
    <add name="SurveyProjectDevConnectionString" connectionString="Data Source=FUJITSUPC\SQLEXPRESS;Initial Catalog=SURVEYDB;Persist Security Info=True;User ID=;Password=" providerName="System.Data.SqlClient" />
    <add name="SurveyProjectTestConnectionString" connectionString="Data Source=.\sqlexpress;Initial Catalog=;Persist Security Info=True;User ID=;Password=" providerName="System.Data.SqlClient" />
    <add name="SurveyProjectProdConnectionString" connectionString="Data Source=.\sqlexpress;Initial Catalog=;Persist Security Info=True;User ID=;Password=" providerName="System.Data.SqlClient" />
  </connectionStrings>
  <!-- Survey Project database connection: to select connectionsetting options see connectionStrings-->
  <dataConfiguration defaultDatabase="SurveyProjectProdConnectionString" />
  <appSettings>

 
New Post
6/8/2015 11:48 PM
 

Hello,

Based on your information you should either set: 

<dataConfiguration defaultDatabase="SurveyProjectProdConnectionString" />
to 
<dataConfiguration defaultDatabase="SurveyProjectDevConnectionString" />

Or add the connection details to the SurveyProjectProdConnectionString instead of to the SurveyProjectDevConnectionString
 
Relevant information can be found in the Readme.txt file:

6. DATABASE CONNECTION
- open the web.config file in notepad or a texteditor
- Check the database connection string in the web.config file. You can create connectionstrings for different databases (e.g. Development, Test, Production):

  <!-- selection of database connection options & settings-->
  <connectionStrings>
    <add name="SurveyProjectDevConnectionString" connectionString="Data Source=.\yoursqlserver;Initial Catalog=YourSpDevDatabase;Persist Security Info=True;User ID=yourusername;Password=yourpassword" providerName="System.Data.SqlClient" />
    <add name="SurveyProjectTestConnectionString" connectionString="Data Source=.\yoursqlserver;Initial Catalog=YourSpTestDatabase;Persist Security Info=True;User ID=yourusername;Password=yourpassword" providerName="System.Data.SqlClient" />
    <add name="SurveyProjectProdConnectionString" connectionString="Data Source=.\yoursqlserver;Initial Catalog=YourSpProdDatabase;Persist Security Info=True;User ID=yourusername;Password=yourpassword" providerName="System.Data.SqlClient" />
  </connectionStrings>

- Next set the default dbconnection to use on the SP site:

  <!-- Survey Project database connection: to select connectionsetting options see connectionStrings-->
  <dataConfiguration defaultDatabase="SurveyProjectProdConnectionString" />


 
Previous
 
Next
HomeHomeSurvey Project ...Survey Project ...Installation & ...Installation & ...installation 2.2/2.3 is not easy,  instruction unclear in README or www yoursite sourceinstallation 2.2/2.3 is not easy, instruction unclear in README or www yoursite source