Just copied over from my local development to GoDaddy.  When I go to register a new user, I'm getting this error.  Basically it's looking for something to put in the @Signature field.  What am I missing?

Also can not get the Administration/Default.aspx to come up.

The Category pages come up fine.

I was using SQL 2008 on my development server.  GoDaddy uses SQL 2005.  I used the MSSQL Database Publishing Wizard to copy over my local SQL to GoDaddy.  Did I miss something?

Register.aspx page:

System.Web.HttpUnhandledException: Exception of type 'System.Web.HttpUnhandledException' was thrown. ---> System.Data.SqlClient.SqlException: Procedure or function 'Nop_CustomerInsert' expects parameter '@Signature', which was not supplied.
   at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection)
   at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection)
   at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)
   at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj)
   at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString)
   at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async)
   at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result)
   at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, String methodName, Boolean sendToPipe)
   at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
   at Microsoft.Practices.EnterpriseLibrary.Data.Database.DoExecuteNonQuery(DbCommand command)
   at Microsoft.Practices.EnterpriseLibrary.Data.Database.ExecuteNonQuery(DbCommand command)
   at NopSolutions.NopCommerce.DataAccess.CustomerManagement.SQLCustomerProvider.AddCustomer(Guid CustomerGUID, String Email, String Username, String passwordHash, String saltKey, Int32 AffiliateID, Int32 BillingAddressID, Int32 ShippingAddressID, Int32 LastPaymentMethodID, String LastAppliedCouponCode, Int32 LanguageID, Int32 CurrencyID, Int32 TaxDisplayTypeID, Boolean IsAdmin, Boolean IsGuest, Boolean IsForumModerator, Int32 TotalForumPosts, Boolean Active, Boolean Deleted, DateTime RegistrationDate, String TimeZoneID, Int32 AvatarID) in D:\Work\Own\NopCommerce\Solution\Solution\Libraries\Nop.DataAccess.SqlServer\Customer\SQLCustomerProvider.cs:line 583
   at NopSolutions.NopCommerce.Common.CustomerManagement.CustomerManager.AddCustomer(Guid CustomerGUID, String Email, String Username, String Password, Int32 AffiliateID, Int32 BillingAddressID, Int32 ShippingAddressID, Int32 LastPaymentMethodID, String LastAppliedCouponCode, Int32 LanguageID, Int32 CurrencyID, TaxDisplayTypeEnum TaxDisplayType, Boolean IsAdmin, Boolean IsGuest, Boolean IsForumModerator, Int32 TotalForumPosts, Boolean Active, Boolean Deleted, DateTime RegistrationDate, String TimeZoneID, Int32 AvatarID, MembershipCreateStatus& status) in D:\Work\Own\NopCommerce\Solution\Solution\Libraries\Nop.Common\Customer\CustomerManager.cs:line 935
   at NopSolutions.NopCommerce.Common.CustomerManagement.CustomerManager.AddCustomer(String Email, String Username, String Password, Boolean IsAdmin, Boolean IsGuest, Boolean Active, MembershipCreateStatus& status) in D:\Work\Own\NopCommerce\Solution\Solution\Libraries\Nop.Common\Customer\CustomerManager.cs:line 810
   at NopSolutions.NopCommerce.Common.Profile.StoreMembershipProvider.CreateUser(String username, String password, String email, String passwordQuestion, String passwordAnswer, Boolean isApproved, Object providerUserKey, MembershipCreateStatus& status) in D:\Work\Own\NopCommerce\Solution\Solution\Libraries\Nop.Common\Profile\StoreMembershipProvider.cs:line 105
   at System.Web.UI.WebControls.CreateUserWizard.AttemptCreateUser()
   at System.Web.UI.WebControls.CreateUserWizard.OnNextButtonClick(WizardNavigationEventArgs e)
   at System.Web.UI.WebControls.Wizard.OnBubbleEvent(Object source, EventArgs e)
   at System.Web.UI.WebControls.CreateUserWizard.OnBubbleEvent(Object source, EventArgs e)
   at System.Web.UI.WebControls.Wizard.WizardChildTable.OnBubbleEvent(Object source, EventA