Topic: Problem with pagination

I've CuteNews 1.5.3 and i've done 12 news. In the page i've used this code

<?php $number = "7"; 
include("meme/show_news.php"); 
?>


Now if in this page i press 2 or Next >> the page change but i don't see the other 5 news
http://walking-dead.pswnet.com/index.php?p=serie/meme

What's the problem?

Re: Problem with pagination

exact same issue here,
no solution sadly

Re: Problem with pagination

For now i've "solved" the problem making an index page exspecially for this folder.
http://walking-dead.pswnet.com/meme_index.php

So, i've created the index with this code

<?php if(isset($_GET['p']) && file_exists($_GET['p'].'.php')){
    include($_GET['p'].'.php');
}
else{
    include('serie/meme.php');
}
?>

The code in the page meme.php is this

<?php $number = "7"; 
include("meme/show_news.php"); 
?>

4 (edited by 2013-10-07 17:06:07)

Re: Problem with pagination

An Help for fix this problem?

Tried this, but not work
https://cutephp.com/forum/index.php?showtopic=42603

Re: Problem with pagination

An Help for fix this problem?

Tried this, but not work
https://cutephp.com/forum/index.php?showtopic=42603

I have this same problem too. Any help appreciated

Re: Problem with pagination

Where can I change the number of news per page?

It should be somewhere in the System Configurations right? I just cant find it

Re: Problem with pagination

exact same issue here.

Re: Problem with pagination

I've got the same issue with  CuteNews 1.5.3.
The pagination works when i'm on the index to go to page 2.
And then nothing works when i want to go to the previous page.

When i want to go to the previous page i've got this in the URL "start_from=5&ucat=1,3", it's the start_from who makes everything bug i think:x

Do you have any solution ?

Thanks in advance