Hey guys,
This was a problem that existed on our previous 2.1.1 install. We are using the Structure module, and we had an older version of that as well, using the now deprecated structure:pagination tag.
We have since upgraded both EE(to 2.3.1) and Structure(to 3.1.3) which now uses EE’s native pagination. We figured this upgrade would be the answer to the issues we were having, but it does’t seem to be the case. The Next link is linking to the correct URL now, but it’s still just reloading the sites index page, rather than a second page of entries.
We’ve modified our templates to use the native pagination:
{exp:channel:entries channel="news" limit="3" dynamic="off" paginate="bottom"}
<div class="entry news">
<h4>{title}</h4>
<p> <br />
{news-article}</p>
<p></div></p>
<p>{paginate}<br />
{if previous_page}<br />
<a href="http://{auto_path}">Previous Page</a> <br />
{/if}<br />
{if next_page}<br />
<a href="http://{auto_path}">Next Page</a><br />
{/if}<br />
{/paginate}</p>
<p>{/exp:channel:entries}Does anything look out of place here?
We’ve also tried disabling the htaccess and putting the default index.php back in the url, but it doesn’t make a difference. The Next link is still just loading our root page.. So I can’t imagine it’s a redirect issue at this point.
Thanks