Small width layout Medium width layout Maximum width layout Small text Medium text Large text
     Search
Downloads Downloads Directory Directory Forums Forums Forge Forge Blogs Blogs        Marketplace Marketplace Careers Program Careers
Community › Forums Register  |  

telerik -- supercharge your DNN websites
  Ads  
Aspose - The .NET & Java component publisher
 


  Sponsors  

Meet Our Sponsors

Portal Webhosting - Hosting For Developers
Red-Gate Software
MaximumASP
SourceGear - Tools for Developers
.: CounterSoft :.
telerik
 


DotNetNuke Forums
 
  Forum  DotNetNuke® Pro...  FCKeditor Provi...  I upgraded the DNN installation from 4.0.2.1 to 4.5.3 and now my editor doesn't work.
Previous Previous
 
Next Next
New Post 7/9/2007 6:26 PM
User is offline TheVillager
30 posts
www.marek.qc.ca
10th Ranked


I upgraded the DNN installation from 4.0.2.1 to 4.5.3 and now my editor doesn't work. 

Two scripts failed during the upgrade and now my editor doesn't work. Is it possible to reinstall a 4.5.3 version of the editor? This might help me with my problem.

 
New Post 7/9/2007 8:51 PM
User is offline Mauricio Márquez
1044 posts
dnn.tiendaboliviana.com
6th Ranked






Re: I upgraded the DNN installation from 4.0.2.1 to 4.5.3 and now my editor doesn't work. 

Yes, you can install the provider manually. But..... the editor provider does not use any database script. It only uses normal core functions to accomplish its tasks. So any script error could not affect the editor provider directly. Maybe something in the DNN core was affected.

I suggest you to post more information about what those scripts errors were and the error text your are seeing after the upgrade.


Locopon
Free modules: E-commerce, Complete localization (Portal, page, module settings, skins, etc.), Secure Login, and more
http://dnn.tiendaboliviana.com
 
New Post 7/10/2007 7:08 AM
User is offline TheVillager
30 posts
www.marek.qc.ca
10th Ranked


Re: I upgraded the DNN installation from 4.0.2.1 to 4.5.3 and now my editor doesn't work. 

The upgrade went well except for two scripts. I included the log below. Is there a way to validate the schema? I also noticed the slashes in my original installation went the other way. The new web.config looked a little different (slashes other way). I also included the donnetnuke section of the webconfig maybe someone can see an error.

4.00.4

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

4.04.00

Error: HelpURL

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

Web.config (dotnetnuke section)

<dotnetnuke>
    <htmlEditor defaultProvider="Ftb3HtmlEditorProvider">
      <providers>
        <clear/>
                    <add name="FckHtmlEditorProvider"
                    type="DotNetNuke.HtmlEditor.FckHtmlEditorProvider.FckHtmlEditorProvider, DotNetNuke.FckHtmlEditorProvider"
                    providerPath="~/Providers/HtmlEditorProviders/Fck/"
                    CustomConfigurationPath="~/Providers/HtmlEditorProviders/Fck/custom/FCKConfig.js"
                    EnhancedSecurityDefault="false"
                    SecureConfigurationPath="~/Providers/HtmlEditorProviders/Fck/custom/FCKConfigSecure.js"
                    ImageGalleryPath="~/Providers/HtmlEditorProviders/Fck/fckimagegallery.aspx"
                    ImageUploadPath="~/Providers/HtmlEditorProviders/Fck/fckimagegallery.aspx"
                    ImageAllowedFileTypes="gif,png,bmp,jpg"
                    FlashGalleryPath="~/Providers/HtmlEditorProviders/Fck/fckimagegallery.aspx"
                    FlashUploadPath="~/Providers/HtmlEditorProviders/Fck/fckimagegallery.aspx"
                    FlashAllowedFileTypes="fla,swf"
                    LinksGalleryPath="~/Providers/HtmlEditorProviders/Fck/fcklinkgallery.aspx"
                    DynamicStylesGeneratorPath="~/Providers/HtmlEditorProviders/Fck/FCKStyles.aspx"
                    DynamicStylesCaseSensitive="true"
                    DynamicStylesGeneratorFilter="controlpanel|filemanager|mainmenu|wizard"
                    StaticStylesFile="~/Providers/HtmlEditorProviders/Fck/FCKeditor/fckstyles.xml"
                    StylesDefaultMode="Static"
                    DynamicCSSGeneratorPath="~/Providers/HtmlEditorProviders/Fck/FCKCSS.aspx"
                    StaticCSSFile="~/Providers/HtmlEditorProviders/Fck/FCKeditor/editor/css/fck_editorarea.css"
                    CSSDefaultMode="static"
                    spellCheck="ieSpell"
                    AvailableToolbarSkins="Office2003,Silver"
                    DefaultToolbarSkin="Office2003"
                    AvailableToolBarSets="DNNDefault,Default,NoGallery,Basic"
                    DefaultToolbarSet="DNNDefault"
                    DefaultImageGallerySkin="Default"
                    DefaultFlashGallerySkin="Default"
                    DefaultLinksGallerySkin="Default"
                    FCKDebugMode="false"
                    UseFCKSource="false"
                    OptionsOpenMode="ShowModalDialog"
                    CustomOptionsDialog="Admin" />
      </providers>
    </htmlEditor>
    <navigationControl
      defaultProvider="SolpartMenuNavigationProvider">
      <providers>
        <clear/>
        <add
          name="SolpartMenuNavigationProvider"
          type="DotNetNuke.NavigationControl.SolpartMenuNavigationProvider, DotNetNuke.SolpartMenuNavigationProvider"
          providerPath="~\Providers\NavigationProviders\SolpartMenuNavigationProvider\"/>
        <add
          name="DNNMenuNavigationProvider"
          type="DotNetNuke.NavigationControl.DNNMenuNavigationProvider, DotNetNuke.DNNMenuNavigationProvider"
          providerPath="~\Providers\NavigationProviders\DNNMenuNavigationProvider\"/>
        <add
          name="DNNTreeNavigationProvider"
          type="DotNetNuke.NavigationControl.DNNTreeNavigationProvider, DotNetNuke.DNNTreeNavigationProvider"
          providerPath="~\Providers\NavigationProviders\DNNTreeNavigationProvider\"/>
        <add
          name="DNNDropDownNavigationProvider"
          type="DotNetNuke.NavigationControl.DNNDropDownNavigationProvider, DotNetNuke.DNNDropDownNavigationProvider"
          providerPath="~\Providers\NavigationProviders\DNNDropDownNavigationProvider\"/>
        <add
          name="ASP2MenuNavigationProvider"
          type="DotNetNuke.NavigationControl.ASP2MenuNavigationProvider, DotNetNuke.ASP2MenuNavigationProvider"
          providerPath="~\Providers\NavigationProviders\ASP2MenuNavigationProvider\"/>
      </providers>
    </navigationControl>
    <searchIndex
      defaultProvider="ModuleIndexProvider">
      <providers>
        <clear/>
        <add
          name="ModuleIndexProvider"
          type="DotNetNuke.Services.Search.ModuleIndexer, DotNetNuke.Search.Index"
          providerPath="~\Providers\SearchProviders\ModuleIndexer\"/>
      </providers>
    </searchIndex>
    <searchDataStore
      defaultProvider="SearchDataStoreProvider">
      <providers>
        <clear/>
        <add
          name="SearchDataStoreProvider"
          type="DotNetNuke.Services.Search.SearchDataStore, DotNetNuke.Search.DataStore"
          providerPath="~\Providers\SearchProviders\SearchDataStore\"/>
      </providers>
    </searchDataStore>
    <data defaultProvider="SqlDataProvider">
      <providers>
        <clear/>
        <add
          name="SqlDataProvider"
          type="DotNetNuke.Data.SqlDataProvider, DotNetNuke.SqlDataProvider"
          connectionStringName="SiteSqlServer"
          upgradeConnectionString=""
          providerPath="~\Providers\DataProviders\SqlDataProvider\"
          objectQualifier=""
          databaseOwner="quser"/>
      </providers>
    </data>
    <logging defaultProvider="DBLoggingProvider">
      <providers>
        <clear/>
        <add
          name="XMLLoggingProvider"
          type="DotNetNuke.Services.Log.EventLog.XMLLoggingProvider, DotNetNuke.XMLLoggingProvider"
          configfilename="LogConfig.xml.resources"
          providerPath="~\Providers\LoggingProviders\XMLLoggingProvider\"/>
        <add
          name="DBLoggingProvider"
          type="DotNetNuke.Services.Log.EventLog.DBLoggingProvider.DBLoggingProvider, DotNetNuke.Provider.DBLoggingProvider"
          providerPath="~\Providers\LoggingProviders\Provider.DBLoggingProvider\"/>
      </providers>
    </logging>
    <scheduling defaultProvider="DNNScheduler">
      <providers>
        <clear/>
        <add
          name="DNNScheduler"
          type="DotNetNuke.Services.Scheduling.DNNScheduling.DNNScheduler, DotNetNuke.DNNScheduler"
          providerPath="~\Providers\SchedulingProviders\DNNScheduler\"
          debug="false"
          maxThreads="1"/>
      </providers>
    </scheduling>
    <friendlyUrl
      defaultProvider="DNNFriendlyUrl">
      <providers>
        <clear/>
        <add
          name="DNNFriendlyUrl"
          type="DotNetNuke.Services.Url.FriendlyUrl.DNNFriendlyUrlProvider, DotNetNuke.HttpModules.UrlRewrite"
                    includePageName="true"
                    regexMatch="[^a-zA-Z0-9 _-]" />
      </providers>
    </friendlyUrl>
    <caching
      defaultProvider="FileBasedCachingProvider">
      <providers>
        <clear/>
        <add
          name="FileBasedCachingProvider"
          type="DotNetNuke.Services.Cache.FileBasedCachingProvider.FBCachingProvider, DotNetNuke.Caching.FileBasedCachingProvider"
          providerPath="~\Providers\CachingProviders\FileBasedCachingProvider\"/>
        <add
          name="BroadcastPollingCachingProvider"
          type="DotNetNuke.Services.Cache.BroadcastPollingCachingProvider.BPCachingProvider, DotNetNuke.Caching.BroadcastPollingCachingProvider"
          providerPath="~\Providers\CachingProviders\BroadcastPollingCachingProvider\"/>
      </providers>
    </caching>
    <authentication
      defaultProvider="ADSIAuthenticationProvider">
      <providers>
        <clear />
        <add name="ADSIAuthenticationProvider"
                    type="DotNetNuke.Security.Authentication.ADSIProvider, DotNetNuke.Authentication.ADSIProvider"
                    providerPath="~\Providers\AuthenticationProviders\ADSIProvider\" />
      </providers>
    </authentication>
    <members defaultProvider="AspNetMembershipProvider">
      <providers>
        <clear/>
        <add name="AspNetMembershipProvider"
          type="DotNetNuke.Security.Membership.AspNetMembershipProvider, DotNetNuke.Provider.AspNetProvider"
          providerPath="~\Providers\MembershipProviders\AspNetMembershipProvider\"/>
      </providers>
    </members>
    <roles defaultProvider="DNNRoleProvider">
      <providers>
        <clear/>
        <add name="DNNRoleProvider"
          type="DotNetNuke.Security.Membership.DNNRoleProvider, DotNetNuke.Provider.DNNProvider"
          providerPath="~\Providers\MembershipProviders\DNNMembershipProvider\"/>
      </providers>
    </roles>
    <profiles defaultProvider="DNNProfileProvider">
      <providers>
        <clear/>
        <add name="DNNProfileProvider"
          type="DotNetNuke.Security.Profile.DNNProfileProvider, DotNetNuke.Provider.DNNProvider"
          providerPath="~\Providers\MembershipProviders\DNNMembershipProvider\"/>
      </providers>
    </profiles>
  </dotnetnuke>

 
New Post 7/10/2007 8:53 AM
User is offline TheVillager
30 posts
www.marek.qc.ca
10th Ranked


Re: I upgraded the DNN installation from 4.0.2.1 to 4.5.3 and now my editor doesn't work. 

I compared the Install version of the 4.5.3 software and the upgrade version of the same software and I noticed that the install version has some additional files in the C:\DonNetNuke453_Install\Install\Module directory.

Are these files important to running Dotnetnuke?

Announcements_03.04.00_Install.resources
Blog_3.02.00_Install.resources
Documents_03.01.06_Install.resources
Events_03.03.07_Install.resources
FAQs_04.04.00_Install.resources
Feedback_04.04.01_Install.resources
Forum_03.20.09_Install.resources
Help_03.00.01_Install.resources
HTML_04.05.00_Install.zip
IFrame_03.02.03_Install.resources
Links_03.03.07_Install.zip
Media_03.02.03_Install.resources
NewsFeeds_03.01.01_Install.resources
PlaceHolder.txt
Reports_04.05.02_Install.resources
Repository_03.01.10_Install.resources
Survey_04.00.85_Install.resources
UserDefinedTable_03.03.06_Install.resources
UsersOnline_03.01.00_Install.resources
Wiki_04.00.01_Install.resources
XML_04.03.04_Install.resources

 
New Post 7/10/2007 6:06 PM
User is offline Mauricio Márquez
1044 posts
dnn.tiendaboliviana.com
6th Ranked






Re: I upgraded the DNN installation from 4.0.2.1 to 4.5.3 and now my editor doesn't work. 

My first suggestion is to restore your database and DNN folder from your las backup and try the upgrade again. I saw problems when migrating data from your profile to the new schema.

If you don't have a backup, then post your script errors to some more general forums to get more help on those errors.

About the list of modules: You must upgrade your modules as your DNN core is also being upgraded. Some old modules could have problems with newer core. I suggest you to upgrade the modules your are currently using. To upgrade use the HOST/Module definitions page (At the bottom)


Locopon
Free modules: E-commerce, Complete localization (Portal, page, module settings, skins, etc.), Secure Login, and more
http://dnn.tiendaboliviana.com
 
Previous Previous
 
Next Next
  Forum  DotNetNuke® Pro...  FCKeditor Provi...  I upgraded the DNN installation from 4.0.2.1 to 4.5.3 and now my editor doesn't work.
 


Forum Policy

These Discussion Forums are dedicated to the discussion of the DotNetNuke Web Application Framework.

For the benefit of the community and to protect the integrity of the project, 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 DotNetNuke.
2. Discussion or promotion of DotNetNuke product releases under a different brand name are strictly prohibited.
3. No Flaming or Trolling.
4. No Profanity, Racism, or Prejudice.
5. Site Moderators have the final word on approving/removing a thread or post or comment.
6. English language posting only, please.

 


Customer Connect
Customer Connect provides cutting edge solutions that deliver sales, marketing and customer service results.
www.customer-connect.com
TechNexxus
Business process and technology sourcing solutions delivering superior people, process and value. We have used, and continue to use, DNN successfully in numerous client projects to deliver exceptional value. We are proud to support the DNN team and community.
www.technexxus.com
PartnerPoint | Community of Microsoft Partners
PartnerPoint is one of the largest and most active online communities of Microsoft Partners worlwide with over 8,000 members.
www.PartnerPoint.com

DotNetNuke Corporation   Terms Of Use  Privacy Statement
DotNetNuke®, DNN®, and the DotNetNuke logo are trademarks of DotNetNuke Corporation
Hosted by MaximumASP