Search code examples
phpbb

Permalink to the last page of a thread in phpBB


A Question from the user side, rather then the admins.

Is there a way to bookmark or link to a thread and make phpBB always show the last page of the thread, regardless of how many pages long the thread actually is?


Solution

  • As of phpbb 3.0.12 I haven't found any officially documented way but the following might do the trick:

    xxx/viewtopic.php?f=yy&t=zzz&start=50000
    

    where only the start=50000 is important. the f and t parameters are to determine the subforum and the thread, the start parameter determines the post in the thread. Setting the value of the start parameter to a ridiculously high value seems to trigger phpbb to show the last page.