Copied to clipboard

Flag this post as spam?

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


  • Ben 91 posts 111 karma points
    Sep 22, 2011 @ 16:12
    Ben
    0

    can't insert embedded media in umbraco 4.7

    Hi,

    I use 4.7.0 and I try to add a video from youtube to the richtext editor, via the "insert\edit embedded media" button.

    What actually happens is that the insert windows opens and in the source tab, I place youtube's iframe tag, then I click on insert and it seems like it's all ok and the video is inserted, but when I publish the document, the video disappears...

    Is it a known bug of the 4.7 version? Is there any known solution?

  • Jorn 1 post 21 karma points
    Sep 30, 2011 @ 15:12
    Jorn
    0

    Hi,

    I have the same behaviour in 4.7.1.

  • Jason N 55 posts 79 karma points
    Oct 13, 2011 @ 16:44
    Jason N
    0

    Same problem here.

  • Dan Diplo 1554 posts 6205 karma points MVP 5x c-trib
    Oct 13, 2011 @ 17:45
    Dan Diplo
    0

    You're probably better off using a Macro to do this - there are plenty of packages such as Insert Video that do this.

  • Ben 91 posts 111 karma points
    Oct 14, 2011 @ 17:34
    Ben
    0

    right, I have also used a package in order to solve the bug...

  • Richard Han 19 posts 41 karma points
    Nov 28, 2011 @ 09:14
    Richard Han
    0

    I've same issue on 4.7.1 , Does someone can help with this ?

  • Steven Horler 11 posts 57 karma points
    Mar 20, 2012 @ 16:35
    Steven Horler
    0

    We've had this problem and discovered that by adding ID text through the Insert/Edit Embedded Media advanced tab solves this problem. Umbraco 4.7.1

  • Paul Stewart 50 posts 71 karma points
    Jun 21, 2012 @ 17:25
    Paul Stewart
    0

    Sorry Steven, I have tried that theory, and no success for umbraco 4.7.1 :( 

  • Steven Horler 11 posts 57 karma points
    Jun 25, 2012 @ 11:33
    Steven Horler
    0

    Hi, I appreciate my comment wasn't very scentific, and just something we found worked for us in certain circumstances, but maybe greater detail was required. On the other hand using a macro as suggested above is probably your best solution. We also did this with razor:

    @inherits umbraco.MacroEngines.DynamicNodeContext
    @
        var src Parameter.src;
        var height String.IsNullOrEmpty(Parameter.height? 480 int.Parse(Parameter.height);
        var width String.IsNullOrEmpty(Parameter.width? 640 int.Parse(Parameter.width);
     }

    <p><iframe width="@width" height="@height" src="@src" frameborder="0" allowfullscreen></iframe></p>

    Hope this helps

Please Sign in or register to post replies

Write your reply to:

Draft