Hello Ola,
So your news is not updating only on three pages? That's a rather odd issue. Could you please share your include codes for those three pages as well as the include code of a page where everything works? (For comparison purposes.)
Also, do those pages have any other PHP scripts (which the others ones possibly don't have)? It could be that they're interfering with CuteNews. Pasting the identical include codes in an empty file would answer that for us.
The page are exactly the same.. just renamed the page and change the categ. number in the php code. And every new page I create - rename the page and change the number i php code.. the news in the colum isen´t update. Thats old news. Weird
This is from a working page.. This php include is in the same row.. but different colums..
<?PHP
$category = "4";
$number = "5";
include("cutenews/show_news.php");
?>
<?php include("svart_spalt.php"); ?>
<?php include("reklam_right.php"); ?>
This php code is in "svart_spalt.php".. And it's that who didn't update on some pages..
<?php
$PHP_SELF= 'show_nyheter.php';
$static = true;
$template = "Headlines";
$number = "15";
$category = "1,3,4,7,8";
include("cutenews/show_news.php");
?>
<?php
$static = true;
$template = "Headlines";
$number = "5";
$category = "6";
include("cutenews/show_news.php");
?>
This is from a not working pages.. Its the same. What is wrong.. why?
<?PHP
$category = "7";
$number = "5";
include("cutenews/show_news.php");
?>
<?php include("svart_spalt.php"); ?>
<?php include("reklam_right.php"); ?>