Quote:
Originally Posted by BirdOPrey5
MySQL Has Gone Away Error probably means the query is overloading your database... How many users and how many posts do you have? You could try lowering the number of days back to look for each report.
That would be a problem with the permissions on your forum, not this mod- this mod uses standard code to create a new thread- it is up to the VB 4.2.0 code to decide what goes in the activity stream and what doesn't.
|
Thank you
but i found it rather strange that the forum was visible to me only "set as admin view only" but activity stream showed the threads to all users
i found a solution posted in vbulletin.com
using example in a template hook
postdata_presave
Code:
if ($this->info['forum']['forumid'] == '2'){
$this->set_info('skip_activitystream', true);
}