Quote:
Originally Posted by ubblite
Hello Delphiprogrammi,
Love your hack, however I had to uninstall it for now because there's a conflict with Zachariah's Featured Photos mod which can be found here:
http://www.photopost.com/forum/showthread.php?t=121970
If both are installed you will get this error:
Fatal error: Cannot redeclare pp_get_ext() (previously declared in /home/xxxxxxx/public_html/photopost/ppp_block.php:64) in /home/xxxxxxx/public_html/member.php(651) : eval()'d code on line 65
Do you think you could fix this mod to work with his?
Thanks
|
yes this is because both hacks use the same function pp_get_ext() it's a PhotoPost function so if you want to use both hacks on the same board then open the plugin's php code find this code
PHP Code:
function pp_get_ext($filename)
{
return substr($filename,strpos($filename,"."));
}
and comment it out by doing
PHP Code:
/*function pp_get_ext($filename)
{
return substr($filename,strpos($filename,"."));
}*/
that's all it should work now