Closed (duplicate)
Project:
Vimeo
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
30 May 2010 at 16:00 UTC
Updated:
7 Dec 2010 at 20:01 UTC
I can browse for a video, it grabs the thumbnail, but when the node is saved, all I get are the "no video" vimeo logo things.
I have checked CCK display and changed it between default, custom and videoID. It would appear that even though a video is being selected the parameter is not being carried across into the content.
Help would be greatly appreciated.
Comments
Comment #1
jobs@tidal.ca commentedI'm having this same problem.
Comment #2
ashjeyes commentedIs anyone able to help with this issue?
Comment #3
sridharpandu commentedSame problem. Only the title is displayed. Is this got anything to do with the memory requirements of ImageAPI GD? It recommends 96M of PHP memory and I have 32M on my host.
Comment #4
ashjeyes commentedI dont think that is is the issue, because I have 256M set in my php.ini file, also it shouldn't require too much php memory on your server (I think)
Comment #5
smallfoambirds commentedI'm having trouble with this too. The clip ID is not saved, either in the CCK field or in the content when I attempt to edit it. All I get are empty "browse" links again.
Comment #6
butler360 commentedSame issue here.
Comment #7
sean-pro commentedI have the same issue too.
Comment #8
fildawg commentedI have the same issue. I've traced the activity to find that this module is linking to
http://vimeo.com/moogaloop/load/clip:/embed/?
However, Vimeo reports that the resource is no longer available.
Gone
The requested resource
/moogaloop/load/clip:/embed/
is no longer available on this server and there is no forwarding address. Please remove all references to this resource.
Comment #9
fildawg commentedI've traced this issue. In vimeo.module on line 532 the function vimeo_cache_video_get is returning a null value to the embed string found around line 897. I'm still tracing to find out why this function is not returning a value. Hope this helps others debug.
Comment #10
fildawg commentedDoh! If I'd read all the comments, I'd have seen comment 5 - which I can now confirm - the Vimeo ID is not being saved.
Comment #11
enzo de simone commentedI have the same issue too.
Comment #12
cirlot commentedI'm having the same issue.
Comment #13
capsicumpie commentedSame issue here - no clip ID
Edit:
It appears that the problem may be associated with the field name in the content type. Changing my field name to field_video allowed the clip ID to be stored in the content table...
Edit2:
I think my problem is with line 1007 of vimeo.module:
$field_name = explode('_', $element['#field_name']);Removing all underscores from the field name makes sure the field name is passed to $field_name correctly.
Editing line 1007 to read:
$field_name = explode('_', $element['#field_name'], 2);also appears to fix the issue.
Comment #14
kaw3939 commentedI have the same problem and the posted fix did not work for me.
Comment #15
andreas-emer commenteddito as Post #14
Comment #16
mysliwy commentedthe current theme_vimeo_formatter_default() function won't return any output if $video_vid variable is set. I've managed to get it working by replacing it with this :
Comment #17
hughcrawford commented#16 by mysliwy worked for me , thanks!
Comment #18
cirlot commented#13 Removing the underscores worked for me.
Comment #19
dextair commented#16 corrected sucessfully !
Comment #20
jdwfly commentedDuplicate of #777158: Video not shown when Displayed as Default. There was already a fix on there too.