I noticed recent additions weren't pulling images so I went to check for an imdbphp update and found it's been restructured. It's easy to move from v2 to v3, though. Download and extract it into ./lib/site and symlink imdbphp2 to it, then change this in imdbphp.class.php:
//include_once("./lib/site/imdbphp2/imdb.class.php");
//include_once("./lib/site/imdbphp2/imdbsearch.class.php");
include_once("./lib/site/imdbphp2/bootstrap.php");
Then at line 118 change imdb to \Imdb\Title :
$imdb = new \Imdb\Title($search_attributes_r['imdb_id']);
I noticed recent additions weren't pulling images so I went to check for an imdbphp update and found it's been restructured. It's easy to move from v2 to v3, though. Download and extract it into ./lib/site and symlink imdbphp2 to it, then change this in imdbphp.class.php:
//include_once("./lib/site/imdbphp2/imdb.class.php");
//include_once("./lib/site/imdbphp2/imdbsearch.class.php");
include_once("./lib/site/imdbphp2/bootstrap.php");
Then at line 118 change imdb to \Imdb\Title :