Copied to clipboard

Flag this post as spam?

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


  • Topic author was deleted

    Mar 04, 2014 @ 16:31

    v7.0.4 Creating phantom nodes

    I'm trying to pin this down to DateFolders or the core.

    But when creating a new item, it works but it's also creating phantom nodes that go unpublished.

    They have no name so umbraco simply keeps incrementing the name (i.e. blank, (1), (2), (3))

    The first file it creates has no name (blank) and it makes it undeleteable (500 server error).  To fix you have to give it a name; attempt to publish (which fails), but then it becomes deleteable.

    Any ideas?

  • Comment author was deleted

    Mar 04, 2014 @ 16:42

    It puts the blank items in the current month/year.

    I don't think it's directly a core issue anymore.

  • Janae Cram 63 posts 439 karma points MVP 7x c-trib
    Mar 08, 2014 @ 00:16
    Janae Cram
    0

    I'm running into this same problem, too!

  • billiblu 37 posts 62 karma points
    Mar 19, 2014 @ 19:24
    billiblu
    0

    I had the same problem.

    I downloaded the source code to debug it.

    I don't understand why when I create a new node (ItemDocType) on event Document_New the new node is moved to the current date tree folder.

    I removed completely the code on Document_New event and everything seems to work fine.

    kipusoep, why are you moving the node on Document_New  event?

  • Jan Skovgaard 11280 posts 23678 karma points MVP 10x admin c-trib
    Mar 19, 2014 @ 19:52
    Jan Skovgaard
    0

    Hi Kevin and others

    Has this been reported on the issue tracker?

    /Jan

  • Comment author was deleted

    Mar 19, 2014 @ 21:26

    @Jan, I think it's possibly a package issue and not a core issue.

    Not entirely sure.

  • Jan Skovgaard 11280 posts 23678 karma points MVP 10x admin c-trib
    Mar 19, 2014 @ 21:27
    Jan Skovgaard
    0

    Ok, fair enough then :)

    Have fun at the uWestFest mate - I'm having the blues for not going. But perhaps I'll be able to make it next year.

    /Jan

  • Janae Cram 63 posts 439 karma points MVP 7x c-trib
    Apr 30, 2014 @ 00:33
    Janae Cram
    0

    Has anything ever happened with this? I really want to keep using this package ;)

  • Kieron McIntyre 116 posts 359 karma points
    Sep 26, 2014 @ 18:29
    Kieron McIntyre
    0

    Heya, it may well be a problem (or at least an idiosyncrasy) with the core. I've just installed DateFolders in 7.1.6 and I've downloaded the DateFolders source.

    Stepping through the code it seems that selecting a DocumentType after clicking "Create" in the content tree triggers the ContentService.Created event. At this point the Entity has no name etc but is still processed by the DateFolder code.

    A simple fix is just to check for the presence of a name on the Entity:

    if (itemDocType.Contains(newEventArgs.Alias)) {
        if (String.IsNullOrEmpty(newEventArgs.Entity.Name)) {
            return;
    
  • Nathan Zhang 3 posts 73 karma points
    Jan 14, 2016 @ 02:37
    Nathan Zhang
    0

    I am actually having the same issue with umbraco 7.3 and I have removed this package.

  • Matthew Wise 271 posts 1373 karma points MVP 4x c-trib
    Mar 08, 2016 @ 10:37
    Matthew Wise
    1

    Hi,

    I have finally had time, to look at this within business hours, I have pushed a new version (2.1.2) with Document_New removed and also fixed a sort issues raised in another post. Hopefully this also fixes this issue

  • Kieron McIntyre 116 posts 359 karma points
    Mar 08, 2016 @ 10:38
    Kieron McIntyre
    0

    Sweet, thanks Matthew. I'll check it out later.

Please Sign in or register to post replies

Write your reply to:

Draft