activate forum (forum_id 30) watch for user_id 48

INSERT INTO `admin_mahnw_f`.`phpbb_forums_watch` (`forum_id`, `user_id`, `notify_status`) VALUES ('0', '0', '0'), ('30', '48', '1');

to speed things up… check out what user_ids are there and what forums they should watch.

generate the MySQL code on command line (linux terminal, not windows)

[cc lang=”bash” escaped=”true” width=”500″]

var=47;
while true;
do var=$((var+1));

var=47;
while true;
do var=$((var+1));
echo “INSERT INTO `admin_mahnw_f`.`phpbb_forums_watch` (`forum_id`, `user_id`, `notify_status`) VALUES (’58’, ‘$var’, ‘1’);”
echo “INSERT INTO `admin_mahnw_f`.`phpbb_forums_watch` (`forum_id`, `user_id`, `notify_status`) VALUES (’59’, ‘$var’, ‘1’);”
sleep 1;
done;

sleep 1;
done;

[/cc]

liked this article?

  • only together we can create a truly free world
  • plz support dwaves to keep it up & running!
  • (yes the info on the internet is (mostly) free but beer is still not free (still have to work on that))
  • really really hate advertisement
  • contribute: whenever a solution was found, blog about it for others to find!
  • talk about, recommend & link to this blog and articles
  • thanks to all who contribute!
admin