Hi there,
i have tried to install Image Handler 2 on my Shop system. Have not found this problem anywhere so I post a new thread. I was overwriting the existing files an get the following Error Messages:
Warning: main() [function.main]: Unable to access bmz_gif_info.class.php in /home/www/htdocs/tightfun.de/shop/includes/classes/bmz_image_handler.class.php on line 12
Warning: main(bmz_gif_info.class.php) [function.main]: failed to create stream: No such file or directory in /home/www/htdocs/tightfun.de/shop/includes/classes/bmz_image_handler.class.php on line 12
Fatal error: main() [function.main]: Failed opening required 'bmz_gif_info.class.php' (include_path='') in /home/www/htdocs/tightfun.de/shop/includes/classes/bmz_image_handler.class.php on line 12
Anybody who can help me, please do it
Da Chilla



Literally. I mean, you might need to prepend a "." to your php include path. If you don't know how to do that, you could change the require line in bmz_image_handler.class.php (line 12) from something like require('bmz_gif_info.class.php'); to require(dirname(__FILE__).'/bmz_gif_info.class.php');. Oh, and you could try and delete the line completely. If I am not mistaken the class file is not yet used at all. If you encounter the error with other files, too, make sure the required file is where it is supposed to be. and if it is, replace the require statements like the one above (prepending the dirname thingy)
