Hello, I have a site that has a template that fails silently (and instantly) if I try and output more than 74 records. For example here is a dump of the first 74, alphabetically sorted records and here is the same template with the limit set at 75.
{exp:weblog:entries weblog="wcsfp_2009_schedule" limit="74" orderby="title" sort="asc" disable="categories|category_fields|member_data|pagination|trackbacks" dynamic="off" require_entry="no"}
<a href="http://www.wcsfp.com/index.php/2010/popup/event/{url_title}">{title}</a>
{/exp:weblog:entries}and
{exp:weblog:entries weblog="wcsfp_2009_schedule" limit="75" orderby="title" sort="asc" disable="categories|category_fields|member_data|pagination|trackbacks" dynamic="off" require_entry="no"}
<a href="http://www.wcsfp.com/index.php/2010/popup/event/{url_title}">{title}</a>
{/exp:weblog:entries}respectively.
The same server can output (slowly) nearly 300 records involving at least two sets of relationships per record, so I’m pretty sure it isn’t related to the hardware the site is running on.
Additionally in the 74 entry list the next entry displays correctly is I change the sorting to descending, indicating (to me) that it isn’t an issue with a corrupt record.
I’ve enabled all the error reporting I could and the 75 record output still dies without a peep, and always instantly. I’ve also tried it with the previous years (wcsfp_2008_schedule and wcsfp_2007_schedule) weblogs with the same result, although the specific number of returned records vary.
Any suggestions on what could be causing this behavior?