Copied to clipboard

Flag this post as spam?

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


  • Mark 49 posts 130 karma points
    Dec 15, 2011 @ 09:57
    Mark
    0

    database not updated.

    have attempted to install this several times, appears to go through without a problem, comes up to say 'would you like to process the final changes' which I go through with, but the database is not updated.

    All the other files are correctly placed.

    Could you please post the database insert statements so I can update the database, thanks.

    Cheers
    Mark

  • Nigel Wilson 944 posts 2076 karma points
    Dec 15, 2011 @ 19:19
    Nigel Wilson
    0

    Hi Mark 

    Sorry to hear you have experienced problems with the install.

    Just wondering, what type of database do you have with your site ? 

    I have added a txt file to the project with the sql insert statements.

    Cheers

    Nigel

     

  • Mark 49 posts 130 karma points
    Dec 15, 2011 @ 21:19
    Mark
    0

    Hey thanks, it's just an SQL Server v9.0.5000.

  • Mark 49 posts 130 karma points
    Dec 15, 2011 @ 21:32
    Mark
    0

    was getting the following error, updated sql which will work as follows.

    Subqueries are not allowed in this context. Only scalar expressions are allowed.

    declare @sort int
    set @sort = (SELECT MAX(sortOrder) + 1 FROM [umbracoApp])

    INSERT INTO [umbracoApp](sortOrder,appAlias,appIcon,appName,appInitWithTreeAlias)
    VALUES(@sort, 'tagMaint', 'tag.gif', 'Tag Maintenance', NULL)

    INSERT INTO [umbracoAppTree](treeSilent, treeInitialize, treeSortOrder, appAlias, treeAlias, treeTitle, treeIconClosed, treeIconOpen, treeHandlerAssembly, treeHandlerType, action)
    VALUES(0, 1, 0, 'tagMaint', 'tagMaintenance', 'Tag Maintenance', 'legacy', 'legacy', 'Yoyocms.Umbraco.TagManager', 'loadTagMaint', NULL)
  • Mark 49 posts 130 karma points
    Dec 15, 2011 @ 21:39
    Mark
    0

    So added the user to the section, looks good, only thing now is that when deleting a tag it appears to delete, but on reload nodes it is still there... :\

    It's a nice package though, good work!

    Cheers
    Mark

  • Nigel Wilson 944 posts 2076 karma points
    Dec 15, 2011 @ 23:17
    Nigel Wilson
    0

    Hi Mark

    Refer to my other post this morning - a confession about the deletion bug you have just identified !!! lol

    http://our.umbraco.org/projects/backoffice-extensions/tag-manager/tag-manager/26888-Tag-Deletion-Bug

    I have released an updated package this morning with that bug squashed !

    Also though I have uploaded just the dll file for people who have already installed the package - it is under documentation in the project. Download this file and replace it within your site - this should fix the deletion issue.

    It's been a nice learning curve putting together the package - it's not a complex piece of functionality but making sure you've covered all bases, done sufficient testing, etc has been an interesting experience.

    Cheers

    Nigel

Please Sign in or register to post replies

Write your reply to:

Draft