Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeGetting StartedGetting StartedInstalling DNN ...Installing DNN ...Upgrading DNN to 4.5.3 (Advice needed)Upgrading DNN to 4.5.3 (Advice needed)
Previous
 
Next
New Post
7/9/2007 2:43 PM
 

The contents of the file are a bit of a puzzle to me. The first one seems to have failed while migrating the users. The second only has one line. Most things seem to work. But when I try editing the site I get errors.

04.00.04.log

* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

System.Data.SqlClient.SqlException: Incorrect syntax near 'LastUpdated'.
Incorrect syntax near 'LastUpdated'.
Incorrect syntax near 'LastUpdated'.
Incorrect syntax near 'LastUpdated'.
Incorrect syntax near 'LastUpdated'.
Incorrect syntax near 'LastUpdated'.
Incorrect syntax near 'LastUpdated'.
Incorrect syntax near 'LastUpdated'.
Incorrect syntax near 'LastUpdated'.
Incorrect syntax near 'LastUpdated'.
Incorrect syntax near 'LastUpdated'.
Incorrect syntax near 'LastUpdated'.
Incorrect syntax near 'LastUpdated'.
Incorrect syntax near 'LastUpdated'.
Incorrect syntax near 'LastUpdated'.
   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.RunExecuteNonQueryTds(String methodName, Boolean async)
   at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, String methodName, Boolean sendToPipe)
   at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
   at DotNetNuke.Data.SqlDataProvider.ExecuteADOScript(String SQL)
   at DotNetNuke.Data.SqlDataProvider.ExecuteScript(String Script, Boolean UseTransactions)


/* Transfer Profile  */
/*********************/

If (SELECT quser.fn_GetVersion(3,2,3)) = 0
    BEGIN
        --Create Temp Table
        CREATE TABLE quser.FlatProfile (
             [UserID] [int] ,
             [PortalID] [int],
             [Username] [nvarchar] (256) NULL ,
             [FirstName] [nvarchar] (256) NULL ,
             [LastName] [nvarchar] (256) NULL ,
             [Street] [nvarchar] (256) NULL ,
             [Unit] [nvarchar] (128) NULL ,
             [City] [nvarchar] (256) NULL ,
             [Country] [nvarchar] (256) NULL ,
             [Region] [nvarchar] (256) NULL ,
             [PostalCode] [nvarchar] (128) NULL ,
             [Telephone] [nvarchar] (128) NULL ,
             [Cell] [nvarchar] (128) NULL ,
             [Fax] [nvarchar] (128) NULL ,
             [Website] [nvarchar] (256) NULL ,
             [IM] [nvarchar] (256) NULL,
             [PreferredLocale] [nvarchar] (128) NULL ,
             [TimeZone] [nvarchar] (256) NULL,
             [LastUpdatedDate] [datetime]
           
        )

        --Extract from Profile Blob to Temp Table
        INSERT INTO quser.FlatProfile
            SELECT
                quser.users.userid,
                quser.userportals.portalid,
                quser.users.username,
                quser.users.firstname,
                quser.users.lastname,
                quser.GetProfileElement('Street',PropertyNames,PropertyValuesString) Street, 
                quser.GetProfileElement('Unit',PropertyNames,PropertyValuesString) Unit, 
                quser.GetProfileElement('City',PropertyNames,PropertyValuesString) City,
                quser.GetProfileElement('Country',PropertyNames,PropertyValuesString) Country,
                quser.GetProfileElement('Region',PropertyNames,PropertyValuesString) Region,
                quser.GetProfileElement('PostalCode',PropertyNames,PropertyValuesString) PostalCode,
                quser.GetProfileElement('Telephone',PropertyNames,PropertyValuesString) Telephone,
                quser.GetProfileElement('Cell',PropertyNames,PropertyValuesString) Cell,
                quser.GetProfileElement('Fax',PropertyNames,PropertyValuesString) Fax,
                quser.GetProfileElement('Website',PropertyNames,PropertyValuesString) Website, 
                quser.GetProfileElement('IM',PropertyNames,PropertyValuesString) IM,
                quser.GetProfileElement('PreferredLocale',PropertyNames,PropertyValuesString) PreferredLocale,
                quser.GetProfileElement('TimeZone',PropertyNames,PropertyValuesString) TimeZone,
                aspnet_profile.LastUpdatedDate

            FROM quser.Users
                inner join quser.userportals on quser.users.userid = quser.userportals.userid
                inner join aspnet_users on quser.users.username = aspnet_users.username
                inner join aspnet_profile on aspnet_profile.userid = aspnet_users.userid
            where quser.userportals.portalid = PortalID

        --Move to UserProfile Table
        EXECUTE quser.TransferUsersFromFlatProfile N'FirstName'
        EXECUTE quser.TransferUsersFromFlatProfile N'LastName'
        EXECUTE quser.TransferUsersFromFlatProfile N'Unit'
        EXECUTE quser.TransferUsersFromFlatProfile N'Street'
        EXECUTE quser.TransferUsersFromFlatProfile N'City'
        EXECUTE quser.TransferUsersFromFlatProfile N'Region'
        EXECUTE quser.TransferUsersFromFlatProfile N'PostalCode'
        EXECUTE quser.TransferUsersFromFlatProfile N'Country'
        EXECUTE quser.TransferUsersFromFlatProfile N'Telephone'
        EXECUTE quser.TransferUsersFromFlatProfile N'Fax'
        EXECUTE quser.TransferUsersFromFlatProfile N'Cell'
        EXECUTE quser.TransferUsersFromFlatProfile N'Website'
        EXECUTE quser.TransferUsersFromFlatProfile N'IM'
        EXECUTE quser.TransferUsersFromFlatProfile N'TimeZone'
        EXECUTE quser.TransferUsersFromFlatProfile N'PreferredLocale'

        --Drop temp objects
        DROP TABLE quser.FlatProfile
        DROP PROCEDURE quser.TransferUsersFromFlatProfile
    END

04.04.00.log
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Error: HelpURL

 
New Post
7/9/2007 4:04 PM
 

Now my editor is toast...

Every time I try to load something that uses the editor I get an error.

 
New Post
7/9/2007 4:46 PM
 

it looks like an issue with SQL server settings - please make sure, that it is not using a case sensitive collation.


Cheers from Germany,
Sebastian Leupold

dnnWerk - The DotNetNuke Experts   German Spoken DotNetNuke User Group

Speed up your DNN Websites with TurboDNN
 
New Post
7/9/2007 7:03 PM
 

I'll have to look up what collation means. New word for me.

My Editor is toast. Do you think it is related?

 
New Post
7/9/2007 7:22 PM
 

Well I ran a query that should tell me the collation:

SQL_Latin1_General_CP1_CI_AS

Not sure what it means. My real problem right now is that any page that I use that requires the editor fails to load.

Here is an example:

I choose to use a text/HTML and I get the following two errors.

Error: Edit Text/HTML is currently unavailable.
DotNetNuke.Services.Exceptions.ModuleLoadException: Object reference not set to an instance of an object. ---> System.NullReferenceException: Object reference not set to an instance of an object. at DotNetNuke.UI.UserControls.TextEditor.set_Text(String Value) at DotNetNuke.Modules.Html.EditHtml.Page_Load(Object sender, EventArgs e) --- End of inner exception stack trace ---

Then...

Unhandled error loading module.
DotNetNuke.Services.Exceptions.ModuleLoadException: Unhandled Error Adding Module to ContentPane ---> System.TypeInitializationException: The type initializer for 'DotNetNuke.Modules.HTMLEditorProvider.HtmlEditorProvider' threw an exception. ---> System.NullReferenceException: Object reference not set to an instance of an object. at DotNetNuke.Framework.Reflection.CreateObject(String ObjectProviderType, String ObjectProviderName, String ObjectNamespace, String ObjectAssemblyName, Boolean UseCache) at DotNetNuke.Modules.HTMLEditorProvider.HtmlEditorProvider.CreateProvider() at DotNetNuke.Modules.HTMLEditorProvider.HtmlEditorProvider..cctor() --- End of inner exception stack trace --- at DotNetNuke.UI.UserControls.TextEditor.Page_Init(Object sender, EventArgs e) at System.Web.UI.Control.OnInit(EventArgs e) at System.Web.UI.UserControl.OnInit(EventArgs e) at System.Web.UI.Control.InitRecursive(Control namingContainer) at System.Web.UI.Control.InitRecursive(Control namingContainer) at System.Web.UI.Control.InitRecursive(Control namingContainer) at System.Web.UI.Control.InitRecursive(Control namingContainer) at System.Web.UI.Control.InitRecursive(Control namingContainer) at System.Web.UI.Control.AddedControl(Control control, Int32 index) at System.Web.UI.ControlCollection.Add(Control child) at DotNetNuke.UI.Skins.Skin.InjectModule(Control objPane, ModuleInfo objModule, PortalSettings PortalSettings) --- End of inner exception stack trace ---

 
Previous
 
Next
HomeHomeGetting StartedGetting StartedInstalling DNN ...Installing DNN ...Upgrading DNN to 4.5.3 (Advice needed)Upgrading DNN to 4.5.3 (Advice needed)


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out