Active
Project:
Video Embed Field
Version:
7.x-2.0-beta5
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
21 Jun 2012 at 13:52 UTC
Updated:
16 Jan 2017 at 17:47 UTC
Jump to comment: Most recent
Comments
Comment #1
Botto commentedI had this same issue. It was my web server. You need to make sure your web server can communicate with the youtube servers.
Try it on a different server or local one.
Comment #2
bbinkovitz commentedThanks! Can you point me to which server settings affect this?
Comment #3
bbinkovitz commentedI got it to work by enabling the "description" field on the field in the content type, and then setting the input format of that field to PHP filter. That seems really bizarre so I'm going to try to look at whether there's something I could patch to make it not depend on those settings.
Comment #4
bbinkovitz commentedComment #5
Botto commentedI do not beleive it is connected to the description field at all.
What I have seen is that the module first tries to use the drupal api to get the image, if that fails it goes over to just using copy, however this would also fail considering the drupal api failed.
I think there just needs to be some improvement in the fallback or messaging of failure.
Comment #6
bbinkovitz commentedI encountered the same issue with the same module later, on a different project. I don't know what the server settings looked like because I was not privy to that information, but once again we had to enable the description field and allow it to evaluate PHP.
Comment #7
delioncomment withdrawn
Comment #7.0
delionAdded error message info
Comment #8
hkirsman commentedVimoe thumbnails are not generated either. Where do you get to set the evaluate PHP for description field?
Comment #9
candelas commentedI discovered that for previewing the thumbnail I had to re-save the content. Then the thumb was created in files/video_embed_field_thumbnails/youtube
I hope it helps someone :)
Comment #10
hugronaphor commentedIn my case that was the fix:
https://www.drupal.org/node/2145057#comment-11252795
Comment #11
jddh commentedFor me, the issue was that my host whitelists insecure remote file requests. For youtube embed thumbs, this module calls drupal_http_request() to http://i.ytimg.com and fails because of the whitelist. I forced the thumb URL to https before the file request is made and all is well.