Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Bjarke Petersen 15 posts 113 karma points
    May 13, 2014 @ 15:25
    Bjarke Petersen
    6

    Umbraco 7.1.0

    Just FYI,

    In Umbraco 7.1.0 only the last control (import.ascx) is shown.

    Quickfix: change Dashboard.config to:

     <section alias="Futuristic.DictionaryDashboardSection">
        <areas>
          <area>default</area>
          <area>content</area>
        </areas>
        <tab caption="Dictionary edit">
          <control showOnce="false" addPanel="true" panelCaption="">/usercontrols/Futuristic/DictionaryDashboard/editor.ascx</control>
        </tab>
        <tab caption="Dictionary export">
          <control showOnce="false" addPanel="true" panelCaption="">/usercontrols/Futuristic/DictionaryDashboard/export.ascx</control>
        </tab>
        <tab caption="Dictionary import">
          <control showOnce="false" addPanel="true" panelCaption="">/usercontrols/Futuristic/DictionaryDashboard/import.ascx</control>
        </tab>
      </section>

     

    Instead of

    <section alias="Futuristic.DictionaryDashboardSection">
        <areas>
          <area>default</area>
          <area>content</area>
        </areas>
        <tab caption="Dictionary">
          <control showOnce="false" addPanel="true" panelCaption="">/usercontrols/Futuristic/DictionaryDashboard/editor.ascx</control>
          <control showOnce="false" addPanel="true" panelCaption="">/usercontrols/Futuristic/DictionaryDashboard/export.ascx</control>
          <control showOnce="false" addPanel="true" panelCaption="">/usercontrols/Futuristic/DictionaryDashboard/import.ascx</control>
        </tab>
      </section>

     

     

  • John Ligtenberg 53 posts 214 karma points
    Sep 03, 2014 @ 11:45
    John Ligtenberg
    0

    Thanks a lot! This worked for me in version 7.0.3.

  • Michael Nielsen 153 posts 810 karma points
    Sep 30, 2014 @ 15:21
    Michael Nielsen
    0

    Package also works fine in 7.1.4 and 7.1.6 with this little change. 

  • HC Saustrup 28 posts 79 karma points
    Nov 20, 2014 @ 15:08
    HC Saustrup
    0

    I'm getting this exception when trying to import sv-SE into Umbraco 7.1.6. XML validates.

    2014-11-20 15:03:04,056 [34] INFO  Umbraco.Core.Persistence.UmbracoDatabase - [Thread 29]    at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)    at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)    at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)    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, Int32 timeout, Task& task, Boolean asyncWrite, SqlDataReader ds)    at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean asyncWrite)    at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(TaskCompletionSource`1 completion, String methodName, Boolean sendToPipe, Int32 timeout, Boolean asyncWrite)    at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()    at StackExchange.Profiling.Data.ProfiledDbCommand.ExecuteNonQuery()    at Umbraco.Core.Persistence.PetaPocoCommandExtensions.<>c__DisplayClass1.<ExecuteNonQueryWithRetry>b__0() at Umbraco.Core.Persistence.FaultHandling.RetryPolicy.ExecuteAction[TResult](Func`1 func)    at Umbraco.Core.Persistence.Database.Execute(String sql, Object[] args)
    
  • Gísli Freyr Svavarsson 43 posts 126 karma points
    Jan 14, 2015 @ 11:02
    GĂ­sli Freyr Svavarsson
    0

    This fix works also for 7.2.1. 

    mvh

  • Simon 692 posts 1068 karma points
    Jul 27, 2015 @ 07:48
    Simon
    0

    Thanks.

    This Fix works also for 7.2.6 :)

    Cheers

  • David Podmore 16 posts 74 karma points
    Aug 07, 2015 @ 08:40
    David Podmore
    0

    This also works for 7.2.4. Thanks!!

  • Bendik Engebretsen 105 posts 202 karma points
    Sep 29, 2015 @ 14:38
    Bendik Engebretsen
    0

    Also works in 7.2.8, thanks!

  • Oluwole Kolawole 32 posts 53 karma points
    Oct 30, 2015 @ 18:35
    Oluwole Kolawole
    0

    In 7.2.8, had to implement Bjarke's quick fix.

    However, when exporting a large number of dictionary items with nested items, the exported xml file didn't put the parent dictionary items before the child ones. These meant that when importing the file, the tree structure was not restored properly because any item that specified a parent item (via the "parentKey" attribute) was created at root level if the parent hadn't already been created.

    The only solution was to manually edit the xml file to make sure that all parent items were placed before any child items; after this, the import then worked correctly.

  • Dmitry Artux 9 posts 29 karma points
    Jan 21, 2016 @ 10:01
    Dmitry Artux
    0

    Version 7.1.9 have the same issue as 7.1.0 - only the last control is shown, but if remove 2 controls, it looks good and works! Assume small changes can fix it, if it'll be necessary.

    Thanx.

    Helpfull feature!

    But....

    It crashed archetype...

Please Sign in or register to post replies

Write your reply to:

Draft