[size="3"]Okay I got it.<img src='http://www.india-forum.com/forums/public/style_emoticons/<#EMO_DIR#>/smile.gif' class='bbc_emoticon' alt='
' />
There is this file "[/size][color="#ff0000"][size="3"]printtopic.php[/size][/color][size="3"]" in IP Board software located thus: /admin/applications/forums/modules_public/forums/printtopic.php
In this file is a function "[color="#ff0000"]getPosts()[/color]" defined as "protected function getPosts()" [within the class public_forums_forums_printtopic]. It is around line 204, in the version of the source code file I saw.
Here's the relevant code snippet:[/size]
[size="3"]Notice the value of variable [color="#ff0000"]$max_posts[/color]. No wonder it prints 300 posts.<img src='http://www.india-forum.com/forums/public/style_emoticons/<#EMO_DIR#>/angry.gif' class='bbc_emoticon' alt=':angry:' />
So, as an approximation, 300 posts corresponds to 15 pages.
If the value is increased to 1000, we are good for about 50 pages.
-----added later-------
Admins, can the above value be changed, please?
[/size]

There is this file "[/size][color="#ff0000"][size="3"]printtopic.php[/size][/color][size="3"]" in IP Board software located thus: /admin/applications/forums/modules_public/forums/printtopic.php
In this file is a function "[color="#ff0000"]getPosts()[/color]" defined as "protected function getPosts()" [within the class public_forums_forums_printtopic]. It is around line 204, in the version of the source code file I saw.
Here's the relevant code snippet:[/size]
Code:
protected function getPosts()
{
//-----------------------------------------
// Render the page top
//-----------------------------------------
$posts_html = $this->registry->getClass('output')->getTemplate('printpage')->pp_header( $this->forum['name'], $this->topic['title'],
$this->topic['starter_name'] , $this->forum['id'], $this->topic['tid'] );
$max_posts = 300;
$attach_pids = array();
......................
......................
[size="3"]Notice the value of variable [color="#ff0000"]$max_posts[/color]. No wonder it prints 300 posts.<img src='http://www.india-forum.com/forums/public/style_emoticons/<#EMO_DIR#>/angry.gif' class='bbc_emoticon' alt=':angry:' />
So, as an approximation, 300 posts corresponds to 15 pages.
If the value is increased to 1000, we are good for about 50 pages.
-----added later-------
Admins, can the above value be changed, please?
[/size]