Skip to content
d-matt edited this page Jan 31, 2012 · 2 revisions

Known bugs

Conflict with charlies content plugin

This plugin confict with charlies content as they both provide a copy of getid3. This result in a "Fatal error: Cannot redeclare class getID3" while trying to display a content handled by charlies plugin.

The version of getid3 shipped with charlies content is quite old ((1.7.9-20090308) so I'd rather patch the file charlies.inc.php so that line 42

require_once(CHARLIES_PATH.'getid3/getid3/getid3.php');

becomes

if( !class_exists('getID3')){
    require_once(CHARLIES_PATH.'getid3/getid3/getid3.php');
}

This is probably not the smartest way to handle it, so please let me know if you have a better solution.

Clone this wiki locally