Many people are having problems with password after installation at godaddy. Following is the solution.
If it says invalid id or password then you have to follow these steps
1.) Login to your godaddy account.
2.) Get into your hosting ...
3.) Go to Databases --> SQL Server
4.) (I assume you know your database name and password, if not let me know) Click Manage Via Web admin Link.
5.) In the new page enter your login credentials.
6.) Now click Query Analyzer Link at left side.
7.) Enter the following code and press execute button
SET IDENTITY_INSERT [dbo].[Nop_Customer] ON
INSERT INTO [dbo].[Nop_Customer]([CustomerID],[CustomerGUID],[Email],[PasswordHash],[SaltKey],[AffiliateID],[BillingAddressID],[ShippingAddressID],[LastPaymentMethodID],[LastAppliedCouponCode],[LanguageID],[CurrencyID],[IsAdmin],[Active],[Deleted],[RegistrationDate],[IsGuest],[TaxDisplayTypeID],[TimeZoneID],[Username],[IsForumModerator],[TotalForumPosts],[AvatarID],[Signature]) VALUES(101,'18c4f7dc-2964-41db-9611-8a313bf672d3','[email protected]','E13AEC70E605CB0398BD5EC03090231FF0F0335F','cA9vL6k=',0,0,0,0,'',7,1,1,1,0,CAST(0x00009B3600C2192F AS DateTime),0,1,'Mountain Standard Time','Admin',1,0,0,'')
SET IDENTITY_INSERT [dbo].[Nop_Customer] OFF
GO
8.) After successful script insertion your login email is [email protected] and password is 123456
Hope it works for you. If you still have any problems let me know.
Regards,
Adil