CodeVerge.Net Beta


   Explore    Item Entry   Register  Login  
Microsoft News
Asp.Net Forums
IBM Software
Borland Forums
Adobe Forums
Novell Forums

ASP.NET Web Hosting
ASP.NET MVC Ready – 3 Months Free and Free Setup



Can Reply:  No Members Can Edit: No Online: Yes
Zone: > NEWSGROUP > Asp.Net Forum > starter_kits_and_source_projects.personal_site_starter_kit Tags:
Item Type: NewsGroup Date Entered: 2/20/2007 8:36:45 PM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
NR
XPoints: N/A Replies: 4 Views: 62 Favorited: 0 Favorite
5 Items, 1 Pages 1 |< << Go >> >|
johntboyle
Asp.Net User
My Godaddy upload almost there need help with SQL2/20/2007 8:36:45 PM

0

 

 My Godday control panel is listed below.  I can not work out how to upload my pictures or logon as the Adminastrator?

aspnet_Applications aspnet_Applications dbo 2/18/2007 3:40:10 AM PRIMARY 1  Content Search   Rename Structure   Drop 
aspnet_Membership aspnet_Membership dbo 2/18/2007 3:40:11 AM PRIMARY 1  Content Search   Rename Structure   Drop 
aspnet_Paths aspnet_Paths dbo 2/18/2007 3:40:18 AM PRIMARY 0  Content Search   Rename Structure   Drop 
aspnet_PersonalizationAllUsers aspnet_PersonalizationAllUsers dbo 2/18/2007 3:40:18 AM PRIMARY 0  Content Search   Rename Structure   Drop 
aspnet_PersonalizationPerUser aspnet_PersonalizationPerUser dbo 2/18/2007 3:40:18 AM PRIMARY 0  Content Search   Rename Structure   Drop 
aspnet_Profile aspnet_Profile dbo 2/18/2007 3:40:15 AM PRIMARY 0  Content Search   Rename Structure   Drop 
aspnet_Roles aspnet_Roles dbo 2/18/2007 3:40:16 AM PRIMARY 2  Content Search   Rename Structure   Drop 
aspnet_SchemaVersions aspnet_SchemaVersions dbo 2/18/2007 3:40:10 AM PRIMARY 6  Content Search   Rename Structure   Drop 
aspnet_Users aspnet_Users dbo 2/18/2007 3:40:10 AM PRIMARY 2  Content Search   Rename Structure   Drop 
aspnet_UsersInRoles aspnet_UsersInRoles dbo 2/18/2007 3:40:16 AM PRIMARY 1  Content Search   Rename Structure   Drop 
aspnet_WebEvent_Events aspnet_WebEvent_Events dbo 2/18/2007 3:40:19 AM PRIMARY 0  Content Search   Rename Structure   Drop 
Albums Albums jtboyle40 2/18/2007 6:00:20 AM PRIMARY 0  Content Search   Rename Structure   Drop 
Photos Photos jtboyle40 2/18/2007 6:00:20 AM PRIMARY 0  Content Search   Rename Structure   Drop 

vvsharma
Asp.Net User
Re: My Godaddy upload almost there need help with SQL2/22/2007 3:53:19 AM

0

I believe ftp is an option for you,unless they dont provide you with your Administrator credentials :-D

Vikram.S, Developer

DiscountASP.NET

Innovative ASP.NET Hosting & SQL Hosting
hrs122
Asp.Net User
Re: My Godaddy upload almost there need help with SQL2/22/2007 3:44:49 PM

0

How did you get all the aspnet tables on your site?  Did you create them manually?  I had a script for the personal tables, photo, etc.. and ran that.  But I am having problems with the security stuff.  I keep getting an error trying to connect to a remote database.  I don't see a connection string to change the db for the security tables.  Anyway this is all on Godaddy.com as you are using.  I am using the FTP client in visual studio to upload my files, but an FTP client will work.  Even the one godaddy provides through the web will work.
johntboyle
Asp.Net User
Re: My Godaddy upload almost there need help with SQL2/23/2007 7:49:09 PM

0

"How did you get all the aspnet tables on your site?"

This drove me up the wall.  You need to create the folder that holds aspnet file on the Godaddy control panel (Not just uploading on FTP) as the directory need write access and again this is done throught the Godaddy Control Panel only.

When you have the correct pemissions you can progress.

I went through this from Booster Man

  1. Create your site locally.  Include AT LEAST 1 local admin account.
  2. Run site using CTRL-F5.
  3. Log into your GoDaddy hosting account and open the control panel.
  4. Click on ASP.Net runtime and select 2.0
  5. Click Databases > SQL Server > Create New Database.
  6. Select
  7. Check DSN (optional?)
  8. Enter UserName (this will become the database name NOT your hosting login)
  9. Enter Password (again, database password NOT hosting password)
  10. Check "Install Schema Features"
  11. Click Continue > Create Database (it WILL take some time for the database to create itself, you can refresh by clicking the SQL button in the left menu)
  12. Once setup finishes, Click Pencil icon under actions > print this page.
  13. Click Computer icon under actions > record the SQL Connection (.NET) strings
  14. Click Open Manager
  15. Click Connection > Enter the Username and Password from 6 above.
  16. Once connected, expand Tools menu > Click Query Analyzer
  17. Cut & Paste all text from club-add.sql into the Query Analyzer window
  18. Click Submit (you should see many "command(s) completed successfully" below)
  19. Go back to VWD and edit default.aspx
  20. Go to Edit > Find & Replace > Quick Replace
  21. Find dbo. (NOT Dbo. big difference)
  22. Replace with <blank> (nothing, nada, zip, zero)
  23. Look in: Current Document
  24. Click Replace All (should be 12 or more) > Save default.aspx
  25. Repeat steps 16 & 17 for:
  26. Events_Edit.aspx
  27. Events_View.aspx
  28. Open web.config
  29. Replace original text
    1. <add name="ClubSiteDB" connectionString="Data Source=.\SQLExpress;

            Integrated Security=true;

            AttachDBFileName=|DataDirectory|Club.mdf;

            User Instance=True" providerName="System.Data.SqlClient"/>

  30. With new text

    1. <add name="ClubSiteDB" providerName="System.Data.SqlClient"

            connectionString="server=whsql-v04.prod.mesa1.secureserver.net;

            database=DB_12345;

            uid=myusername;

            pwd=mypassword"/>

      <remove name="LocalSqlServer"/>

      <add name="LocalSqlServer" providerName="System.Data.SqlClient"

            connectionString="server=whsql-v04.prod.mesa1.secureserver.net;

            database=DB_12345;

            uid=myusername;

            pwd=mypassword"/>

  31. Change <customErrors mode="Off" /> (optional)

  32. Save!!!

  33. Run CTRL-F5 again.  (it will bring up a window with a server error, what you want is to look in the lower left corner of the VWD window for "Build Successful")

  34. Click Website > Copy Web Site > Connect

  35. Input your hosting username and password (NOT you database uid and pwd)

  36. Highlight all files from the left side and click right arrow to transfer.

  37. Go to your public website and create an account for each admin you created on your local database.  (make sure the usernames and passwords are the same!!!)

  38. Log back into Query Analyzer

  39. Input

    1. SELECT RoleId FROM aspnet_Roles WHERE RoleName="Administrators"

  40. Copy bracketed response into a text document and include the brackets

    1. Reset QA and Input
    2. SELECT UserId FROM aspnet_Users WHERE UserName="username"

    3. Copy each bracketed response to your text document.

    4. Reset QA again and Input

      1. INSERT INTO aspnet_UsersInRoles (RoleId, UserID) VALUES ('copied text from 29', 'copied text from 31')

    5. Repeat 28-32 for each admin account.

    6. Welcome to your club site on GoDaddy!

       

    johntboyle
    Asp.Net User
    Re: My Godaddy upload almost there need help with SQL2/25/2007 3:07:01 PM

    0

    Also add this into the into Query Analyzer to add roles and the it all works.

    /*

    Please change the YOUR_USERNAME_HERE text to your username you entered in when you registered to your PWSK.

    */

    DECLARE

    @userID uniqueidentifier,

    @roleID uniqueidentifier,

    @userName nvarchar(256)

    SET @userName = 'YOUR_USERNAME_HERE'

    SET @userID = (SELECT TOP 1 UserId FROM aspnet_Users WHERE UserName = @userName)

    UPDATE aspnet_Membership SET IsApproved = 1 WHERE UserId = @userID

    SET @roleID = (SELECT RoleId FROM aspnet_Roles WHERE RoleName = 'Administrators')

    INSERT INTO aspnet_UsersInRoles (RoleId, UserId) VALUES (@roleID, @userID)

    5 Items, 1 Pages 1 |< << Go >> >|


    Free Download:


    Web:
    GoDaddy, MySQL, iTextSharp and Shared Hosting Woes : Tomas Vera NET on a GoDaddy shared hosting account. Mostly because there are some limitations on ... a restore of the database per the instructions in GoDaddy's help system. ... Exept that because of the database size, we would need a full MS SQL ... and I was able to generate my reports using the iTextSharp library. Almost. ...
    MS SQL Server :: Godaddy Server/SQL Management Studio Connection ... Is there a way I can connect to that DB from my Microsoft SQL Server Management Studio? .... I need a way to backup the data to a server machine for backup purposes. .... Godaddy's help file shows this for a connection string: connectstr ..... I can make a bak file that I can upload and restore to SQL Server 2005. ...
    Visual Studio .NET Connecting to SQL Express on Hosted Site I've used the example on help.godaddy.com site and still can't .... Will I be able to test pages locally pointing them to the SQL Server on GoDaddy? or do I need to ftp my pages to ... I cant get it running when i upload my project. ... I wish there were a way to use our SQL Express database locally ...
    Joomla! • View topic - Installation Manual for Joomla! on GoDaddy ... I'm almost finished with building it. I have my database all ... HELP! ... marked restore click on it then select the sql file you uploaded ... When uploading a completed site to Godaddy, is there anything in ... After I transfer all my files up to GoDaddy, do I need to redo all my internal links? ...
    anyone is familiar with GoDaddy SQL server? - ASP.NET Forums My web hosting is GoDaddy, When I was ready to upload my website, ... Here is what had happened: 1. I copied my local SQL stored procedure commands ... and almost all the sites I am hosting are .net 1.1 and 2.0 sites. ... I found it: http://help.godaddy.com/search.php?topic_id=&q=publishing+wizard ...

    C# Guestbook - ng.asp-net-forum.personal_site_starter_kit - error ... my godaddy upload almost there need help with sql · personal site starter kit for mysql! add tables to mysql database for personal starter ...
    Yet another Treeview Not Working Problem.. - ng.asp-net-forum ... my godaddy upload almost there need help with sql · customizing the albums page · can personal web site starter kit be used with sql server 2000? ...
    Cannot open Login.aspx on web - ng.asp-net-forum ... I am hosting with godaddy so yours may be different, but here's my connection string: .... i'm almost there...one little issue can someone help ...
    add div using button click event - ng.asp-net-forum ... need fresh eyes...datatable help...almost there ... godaddy file folder permission with expressiosn web .net application · return html code from a url ...












    how to clear the webpartmanager?

    shared initial scope don't reflect changes to visitors

    provider pattern help!

    wss + webpart + iframe + wpf = headache

    problem with connecting to sql server db

    dynamically disable personalization

    helpmode in custom webpartchrome

    create everything server side? (web part class)

    web part category in sharepoint 3.0

    external web part catalog

    creating webparts

    embedding resources

    please help me to create page builder

    modules into compiled webparts

    how do i implement iwebparts for a system

    trouble creating part that makes async call to web service - help!

    sqlpersonalizationprovider' requires a database schema compatible ?

    trouble with serialisation

    conceptual question

    how can i add custom verbs to webparts?

    get aspx where a webpart is located

    add databound control to web part

    sharepoint documents part in standard .net project

    find a textbox control from a popup window in asp .net with masterpage, formview, panels, template, etc...

    custom web part verb visibility dependant on webpartmanager.displaymode

    cropped square thumbnails, :d

    updating file in list.asmx file

    webparts do not work on mozilla firebird

    show both catalogzone and editorzone simultaneously

    checking for part in zone

       
      Privacy | Contact Us
    All Times Are GMT