Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

Thread Tracking

Asked Modified Viewed 3,463 times
J
jglisson73
J
  • Member, joined since
  • Contributed 58 posts on the community forums.
  • Started 17 threads in the forums
  • Started this discussions
asked
Member

I have a question...is there a limit to the number of threads you can track? For some reason, there are threads that keep falling off of my tracking list. Why would that happen?
0 replies

14 posts

K
Ken
K
Ken 10
No Support by PM. Please use the forum.
  • Senior Member, joined since
  • Contributed 713 posts on the community forums.
  • Started 43 threads in the forums
answered
Senior Member

ahh, yes all thread-notification emails comes from Digi :)
0 replies
J
jglisson73
J
  • Member, joined since
  • Contributed 58 posts on the community forums.
  • Started 17 threads in the forums
  • Started this discussions
answered
Member

Oh yeah...I clicked the thread tracking link (lol) and they all come from Digitanium. Thanks Sveinungs!!! :)
0 replies
K
Ken
K
Ken 10
No Support by PM. Please use the forum.
  • Senior Member, joined since
  • Contributed 713 posts on the community forums.
  • Started 43 threads in the forums
answered
Senior Member

Quote

jglisson73 wrote:
Thanks a ton digi!!!

Sveinungs you mean :) - But Digi is a great man too! :D
0 replies
J
jglisson73
J
  • Member, joined since
  • Contributed 58 posts on the community forums.
  • Started 17 threads in the forums
  • Started this discussions
answered
Member

Thanks a ton digi!!!
0 replies
S
Sveinungs
S
  • Veteran Member, joined since
  • Contributed 935 posts on the community forums.
  • Started 3 threads in the forums
answered
Veteran Member

Quote

I haven't seen any update on this original question. I let it lie for quite a while here, but it's still an open question to me. It seems like after a period of time that all of my tracked threads disappear. Can anyone with insight into how the thread tracking code works comment?


It's a core-feature that deletes all tracked threads after a period of time (14 days).

If you look at ../themes/templates/footer.php you'll see this at the bottom:

echo "</body>\n</html>\n";

if (iADMIN) {
   $result = dbquery("DELETE FROM ".DB_FLOOD_CONTROL." WHERE flood_timestamp < '".(time()-360)."'");
   $result = dbquery("DELETE FROM ".DB_THREAD_NOTIFY." WHERE notify_datestamp < '".(time()-1209600)."'");
   $result = dbquery("DELETE FROM ".DB_CAPTCHA." WHERE captcha_datestamp < '".(time()-360)."'");
   $result = dbquery("DELETE FROM ".DB_NEW_USERS." WHERE user_datestamp < '".(time()-86400)."'");
}


This is the line responsible for this function:

$result = dbquery("DELETE FROM ".DB_THREAD_NOTIFY." WHERE notify_datestamp < '".(time()-1209600)."'");


You could modify so that the treads stays tracked longer by changing -1209600 to something bigger, like -2419200 (I.e 28 days).

I would not recommend removing this line all toghether, as the tracked threads table would grow very big on sites with an active forum.

Hope this clear things up a bit.
0 replies
J
jglisson73
J
  • Member, joined since
  • Contributed 58 posts on the community forums.
  • Started 17 threads in the forums
  • Started this discussions
answered
Member

Another quick observation: I was tracking this thread, but my thread tracking disappeared after a while. It is as if there is a time limit to a tracked thread and it falls of the list after a predetermined amount of time.
0 replies
J
jglisson73
J
  • Member, joined since
  • Contributed 58 posts on the community forums.
  • Started 17 threads in the forums
  • Started this discussions
answered
Member

Quote

jglisson73 wrote:
I have a question...is there a limit to the number of threads you can track? For some reason, there are threads that keep falling off of my tracking list. Why would that happen?


I haven't seen any update on this original question. I let it lie for quite a while here, but it's still an open question to me. It seems like after a period of time that all of my tracked threads disappear. Can anyone with insight into how the thread tracking code works comment?

Thanks!
John
0 replies
— 3 months earlier —
H
HobbyMan
H
Just some Guy
  • Veteran Member, joined since
  • Contributed 1,486 posts on the community forums.
  • Started 91 threads in the forums
answered
Veteran Member

It depends on the volume of forum traffic, on a big site you'd be drowned in emails.
But, I get your point. For some it would be a handy mod. B)
0 replies
J
jglisson73
J
  • Member, joined since
  • Contributed 58 posts on the community forums.
  • Started 17 threads in the forums
  • Started this discussions
answered
Member

I disagree with your disagreement. :P

I moderate on other another forum that has that feature and it makes it much easier to keep track of what is going on in one place.
0 replies
H
HobbyMan
H
Just some Guy
  • Veteran Member, joined since
  • Contributed 1,486 posts on the community forums.
  • Started 91 threads in the forums
answered
Veteran Member

Quote

That would be very nice for moderators.


I disagree, that would be a pain in the *ss for moderators :o

:D
0 replies
J
jglisson73
J
  • Member, joined since
  • Contributed 58 posts on the community forums.
  • Started 17 threads in the forums
  • Started this discussions
answered
Member

Has anyone seen an infusion that allows you to subscribe to an entire forum and not just individual threads? That would be very nice for moderators.
0 replies
B
Basti
B
Basti 10
[PHP-Fusion Crew Member & Admin from June 2008 - December 2010]

http://basti2web.de - Support Site for my infusions
  • Veteran Member, joined since
  • Contributed 1,099 posts on the community forums.
  • Started 32 threads in the forums
answered
Veteran Member

I agree, I have noticed this too.
0 replies
J
jglisson73
J
  • Member, joined since
  • Contributed 58 posts on the community forums.
  • Started 17 threads in the forums
  • Started this discussions
answered
Member

Exactly...I'm not sure how it would happen.

Digi? :)
0 replies
H
HobbyMan
H
Just some Guy
  • Veteran Member, joined since
  • Contributed 1,486 posts on the community forums.
  • Started 91 threads in the forums
answered
Veteran Member

I have noticed that before. Though, I can't explain why it would happen as each thread tracked is a separate entry in the thread_notify table. So, something must be deleting the entries.
There may be a glitch.
0 replies

Category Forum

General Discussion

Labels

None yet

Statistics

  • Views 0 views
  • Posts 14 posts
  • Votes 0 votes
  • Topic users 5 members

5 participants

K
K
Ken 10
No Support by PM. Please use the forum.
  • Senior Member, joined since
  • Contributed 713 posts on the community forums.
  • Started 43 threads in the forums
J
J
  • Member, joined since
  • Contributed 58 posts on the community forums.
  • Started 17 threads in the forums
  • Started this discussions
S
S
  • Veteran Member, joined since
  • Contributed 935 posts on the community forums.
  • Started 3 threads in the forums
H
H
Just some Guy
  • Veteran Member, joined since
  • Contributed 1,486 posts on the community forums.
  • Started 91 threads in the forums
B
B
Basti 10
[PHP-Fusion Crew Member & Admin from June 2008 - December 2010]

http://basti2web.de - Support Site for my infusions
  • Veteran Member, joined since
  • Contributed 1,099 posts on the community forums.
  • Started 32 threads in the forums

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet