• Resolved OzManic

    (@ozmanic)


    Message from server: Not Found. Check in YouTube if the id youtube belongs to a playlist.

    Here is the shortcode that I’m using. It’s the same as the code a friend of mine uses. I don’t know why I keep getting this error.

    [Youtube_Channel_Gallery feed=”playlist” user=”PLofjmZVp54foRAoQIluXkt3MvKbt8kSu3″ feedorder=”desc” videowidth=”500″ ratio=”16×9″ theme=”dark” color=”black” quality=”small” autoplay=”0″ rel=”1″ showinfo=”1″ maxitems=”5″ thumbwidth=”200″ thumbratio=”16×9″ thumbcolumns=”3″ title=”1″ description=”0″ thumbnail_alignment=”center” descriptionwordsnumber=”10″ link_window=”0″]

    https://www.ads-software.com/plugins/youtube-channel-gallery/

Viewing 15 replies - 1 through 15 (of 22 total)
  • Thread Starter OzManic

    (@ozmanic)

    Nevermind.

    It’s working now. I pasted the shortcode into the visual side, not the text side of the editor.

    Hello,
    I have same issue….
    I have added youtubegallery widgets but I found below error…

    Message from server: Gone. Check in YouTube if the id xxxxxx belongs to a playlist. To locate the id of your playlist check the FAQ of the plugin.

    Please resolve my issue…

    sorry for my english…

    regards,
    ud

    Hello, the same issue, how can this be resolved?

    https://company.softkey.ua/poleznosti/webinars/

    Hello admin,

    Please tell the solution of this issue…ASAP..

    same error here.

    please provide us a solution.

    same settings had been working for months until yesterday.

    Same issue here. This post https://www.ads-software.com/support/topic/pl-id-not-accepted?replies=2 seems more focus on the “Gone” error message.

    We’re having this problem on a website too. Does anyone have a fix for it? We’ve checked all the playlists, they exist and their IDs are correct…

    The same issue here, any help will be very appreciated

    Same here. Help! please.

    Also having this issue. Just started a few days ago. Please help! Love the plugin. Thanks for the help!

    You need to go to the YouTube Feed Types section of the youtube-channel-gallery.php file and make the following changes.

    Replace the old youtube_feed_url ($youtube_feed_url = ‘https://gdata.youtube.com/feeds/api’;) with the following line:
    $youtube_feed_url = ‘https://www.youtube.com/feeds/videos.xml?channel_id=’;

    and then a couple of lines down replace the line

    $ytchag_rss_url = $youtube_feed_url . ‘/users/’ . $ytchag_user . ‘/uploads?v=2&max-results=’. $ytchag_maxitems;

    with this one:

    $ytchag_rss_url = $youtube_feed_url . $ytchag_user . ‘&max-results=’. $ytchag_maxitems;

    LASTLY, the couple of line under that need the word user replace with channel

    That has me up and running again. I hope that makes sense to everyone.

    Hi techwiz.com.au
    Would appreaciate it if you could post the entire youtube-channel-gallery.php settings for us to copy paste,
    is it possible?

    I’m still working on the code right now. Channel or User videos are working apart from the first big video being BLACK, but PLAYLIST videos aren’t working yet. I’ve sniffed out the url for API V3 but I’m still getting simplexml_load_string errors..

    To make it easier for others to edit and update , I’ve created a GITHUB project for the primary PHP file until the author updates the plugin

    https://github.com/techwiz/Youtube-Channel-Gallery

    Let me know if anyone figures out the Playlist problem

    techwiz.com.au … great work.

    For the playlist, I’ve gotten it to work with some tweaking.

    On your GitHub file, change lines 556-559 from:
    if ( $ytchag_feed == ‘playlist’ ) {
    $ytchag_rss_url = $youtube_feed_url . ‘/playlist_id=’ . $ytchag_user . ‘&max-results=’. $ytchag_maxitems;
    $ytchag_link_url = $youtube_url . ‘/playlist?list=’ . $ytchag_user;
    }

    to this (removing the “/” before “playlist…”:

    if ( $ytchag_feed == ‘playlist’ ) {
    $ytchag_rss_url = $youtube_feed_url . ‘playlist_id=’ . $ytchag_user . ‘&max-results=’. $ytchag_maxitems;
    $ytchag_link_url = $youtube_url . ‘playlist?list=’ . $ytchag_user;
    }

    This allowed me to get my Playlist gallery to show up. But the videos wouldn’t load because it wasn’t getting the Video ID.

    I looked at the raw XML playlist from YouTube for one of my playlists … and matched up the XML to

    <entry>
    <id>yt:video:0ab6BalypQM</id>
    <yt:videoId>0ab6BalypQM</yt:videoId>

    On line 648 (of your GitHub file) you have:
    $youtubeid = $yt->videoid;

    I changed it to this (probably a better way … but it is late and this worked):
    $youtubeid = $entry->id;
    $youtubeid = str_replace(‘yt:video:’, ”, $youtubeid);

    Techwiz … I updated your file with my changes.

    This works if you are using a PLAYLIST for your videos.

    https://github.com/techwiz/Youtube-Channel-Gallery/blob/19fc4e73685d12663c0a4754289b5246844c0762/youtube-channel-gallery.php

    Working example here:
    https://mattjorgensen.com/videos/

Viewing 15 replies - 1 through 15 (of 22 total)
  • The topic ‘Message from server: Not Found.’ is closed to new replies.