Closed (duplicate)
Project:
Video
Version:
6.x-4.x-dev
Component:
Miscellaneous
Priority:
Critical
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
21 Nov 2010 at 14:30 UTC
Updated:
5 Dec 2010 at 03:05 UTC
The module seems to be looking for the original video in files/videos when it's actually in the files/videos/original folder after upload. It then reports the video as being successfully converted, when it's not. Copying the file to the files/videos folder (for testing purposes) also fails, but this may be another issue - just dealing with the filefield error here. Hope this helps!
Errors:
Unknown column 'filepath' in 'field list' query: SELECT filepath FROM video_files WHERE fid=70 in /[site_root]/sites/all/modules/video/transcoders/video_ffmpeg.inc on line 408.
FileField was trying to display the file sites/default/files/videos/[video].mov, but it does not exist.
Comments
Comment #1
jm.federico commentedSeems to me the error you are reporting is related to a probelm with the SQL query.
The table 'video_files' does not have a column 'filepath', which gives you the error you are seeing.
I'm changing title to reflect this.
I'm guessing there must be a JOIN there to get the filepath, something like:
SELECT files.filepath FROM {video_files} LEFT JOIN {files} ON video_files.fid = files.fid WHERE video_files.fid=%dComment #2
hypertext200duplicate of #989258: Video files aren't deleted either when removed from node nor on node delete.