Thank you for this thread, it helped me so much:
originally I have got erorr on member.php
I found that the error was here:
fetch_userinfo plugin vBShout [Template Cache]
original
PHP Code:
if (VB_AREA == "Forum")
{
global $globaltemplates;
$globaltemplates = array_merge($globaltemplates, array('forumhome_vbshout'));
}
changed to
PHP Code:
if (VB_AREA == "Forum")
{
global $globaltemplates;
$globaltemplates = array_merge((array)$globaltemplates, array('forumhome_vbshout'));
}
Everything works fine now .-)