I dont know where else to put this question. After an extensive period of time trying to get my site to run on Go.Daddy, I reduced the number of pages to two: the login page and the default (home) page. The problem simply is that after the login screen appears, I enter my user name and password, click "login" and the application stops. Now there are NO DB accesses on the home page so I concluded that the problem must be in the way I configured the connection strings for what I think must be associated with the login screen; and there were only two. I sent the following email to go.daddy which here is preceeded by their answer: (The app runs 100% on my machine)
| Discussion Notes |
| Support Staff Response |
You will need to set the directory permissions for this folder so that you can write to it from an ASP script.
- Click on My Account.
- Log into your account.
- In the My Products section, click Hosting Account List.
- Click the “Open” link to the right of the domain you would like to modify.
- Click on Content: File Manager.
- Check the box to the left of the folder you want to modify the permissions for.
- Click on the ‘Permissions’ button.
- Set the permissions you need for this folder then click ‘OK.’
|
| Customer Inquiry |
I am trying to run my first non-trivial site and it crashes after completing the login screen. Error message says that the database file specified in the connection string cant be found. The site configuration has been reduced to two pages: Login and default. Default accesses NO databases. I am assuming that something must be wrong with my connection string setup: The connection strings working on my development computer are:
<!-- <add name="PINEMgtConnectionString" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename="C:\Documents and Settings\a\My Documents\Visual Studio 2005\WebSites\Pinetools\App_Data\PINEMgt.mdf";Integrated Security=True;Connect Timeout=30;User Instance=True" providerName="System.Data.SqlClient" /> <add name="PINEMgtConnectionString2" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename="C:\Documents and Settings\a\My Documents\Visual Studio 2005\WebSites\Pinetools\App_Data\PINEMgt.mdf";Integrated Security=True;Connect Timeout=30;User Instance=True" providerName="System.Data.SqlClient" /> --> They are commented out so I can run the GoDaddy configured strings which are:
<add name="PINEMgtConnectionString" connectionString="Server=p3swhsql-v10.shr.phx3.secureserver.net; Database=PINEmgt; User ID=PINEmgt; Password=XXXXXXX; Trusted_Connection=False" providerName="System.Data.SqlClient" />
<add name="PINEMgtConnectionString2" connectionString="Server=p3swhsql-v10.shr.phx3.secureserver.net; Database=PINEmgt; User ID=PINEmgt; Password=XXXXXX; Trusted_Connection=False" providerName="System.Data.SqlClient" />
The Xs replace my actual password.
I am using the Microsoft VWD 2005 to build by site
I configured the login page and and then moved the ASPNETDB to GoDaddy.
I have been trying to get this simple configuration running for days. Appreciate your help |
I tried to follow their directions but it turns out that no "Permissions" button appeared and I called their help line. After also failing to find a "permissions" button, they put me on hold for a short time and gave me the following data. The said that I need to download a tool called WSFTP which would give me the ability to set "READ, WRITE, EXECUTE" permissions for each page of my VWD 2005 developed application and that unless I did that, my application would not run because Microsoft Front Page controlled the app after it started and these were Front Page requirements! I looked up WSFTP and it is a FTP application (but I admit I didnt study the application).
Have I made some other error that is really stopping my app? Do I really need WSFTP? Or do I need to find another, amd more VWD friendly host?
Buddypup