Gettings errors like:
Fatal error: require_once() [function.require]: Failed opening required 'video_zencoder.inc' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/xxx/public_html/sites/all/modules/video/includes/transcoder.inc on line 124

Warning: require_once(video_s3.inc) [function.require-once]: failed to open stream: No such file or directory in video_filesystem::_filesystem() (line 85 of /home/xxx/public_html/sites/all/modules/video/includes/filesystem.inc).

CommentFileSizeAuthor
#2 require_once_bug-1028690-2.patch878 bytesrohnjeynolds

Comments

hypertext200’s picture

We are still developing the module and yet to release a stable version.Hope we can have a stable release by end on this month

rohnjeynolds’s picture

StatusFileSize
new878 bytes

Here's a patch for the require_once() error from /includes/filesystem.inc. This passes the uri property of the file object to require_once() instead of just the filename. It clears the error for me but it's a workaround. The require_once() gets called because module_load_include() fails to load video_s3.inc, but a better long-term fix would be to resolve that failure.

leeyuiwah’s picture

I hit a similar error, but with a different filename -- video_s3.admin.inc (the full error message is shown below).

I search the distributed zip file (video-6.x-4.2-beta2.zip). There is no such file in the distribution.

Has anyone got video-6.x-4.2-beta2 to work?

Fatal error: require_once() [function.require]: Failed opening required 'sites/all/modules/video/cdn/video_s3/video_s3.admin.inc' (include_path='.;C:\php5\pear') in C:\wamp\www\sjdev\includes\menu.inc on line 346

leeyuiwah’s picture

From a cached CVS check-in logged message page (http://bit.ly/hZdOQ1), I can saw that there used to be a directory called

video/cdn/video_s3 and in which we can find the missing video_s3.admin.inc

I could saw some check-in's related to this folder in May 16, 2010, in a commit #367634

But in the recent distribution files, I could no longer locate the said file nor the said directory. I looked at both 6.x-4.2-beta2 (Jan 27, 2011) as well as 6.x-4.x-dev (Mar 5, 2011).

Did I miss something here?

hypertext200’s picture

Status: Active » Closed (won't fix)