Permalink to last theme page in phpBB

The question is from the side of the user, not from the administrators.

Is there a way to bookmark or link to a stream and make phpBB always show the last page of a stream, no matter how many pages actually exist?

+2


a source to share


3 answers


As of phpbb 3.0.12, I haven't found an official documentary, but the following might do the trick:

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

      



where only start = 50000 is important . the parameters f and t must define a subforum and stream, the start parameter defines a column in the stream. Setting the start parameter to a ridiculously high value seems to cause phpbb to display the last page.

+1


a source


I was lucky enough to hover over an unread topic. I have seen:

xyz/viewtopic.php?t=123&view=newest

      



As mentioned earlier, the t parameter defines the theme. view=newest

is a necessary part

Edit
To clarify: I saw this on a phpbb 2.0 board.

+2


a source


Unfortunately no, you need to get how many pages were there first.

0


a source







All Articles