Permalink to the last page of a thread in phpBB [closed]
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
开发者_开发百科Closed 3 years ago.
Improve this questionA 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?
I found it helpful to hover an unread-topic-icon. I saw:
xyz/viewtopic.php?t=123&view=newest
As Trilarion mentioned before, parameter t determines the topic. view=newest
is the necessary part
Edit
For clarification: I saw it on a phpbb 2.0 board.
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.
Unfortunately not, you have to retrieve how many pages there are first.
instead of... phpBB2/index.php?threads/very-interesting-thread-you-cant-stop-looking-at/page-58
do... phpBB2/index.php?threads/very-interesting-thread-you-cant-stop-looking-at/latest
精彩评论