1 (edited by 2014-03-16 15:41:54)

Topic: @SYSLOG: INTERNAL ERROR[2]

I have installed Cutenews 2.0 on my homepage and when I want to display the news I always get this error message.  https://cutephp.com/forum/style_emoticons/default/huh.gif

@SYSLOG: INTERNAL ERROR[2]

After changing my old code into this, no news are showing up and the error message is gone

<div class='codetop'>CODE</div><div class='codemain' style='height:200px;white-space:pre;overflow:auto'><?php
    $number = "4";
$only_active = TRUE;
$static = TRUE;
      include("./Updates/show_news.php");
?></div>

Thank you in advance

Finally I got it to work. This is the code which is working

<div class='codetop'>CODE</div><div class='codemain' style='height:200px;white-space:pre;overflow:auto'><?php

$number = "4";
$only_active = TRUE;
$static = TRUE;
$template = "Oneokrock";
include("./News/show_news.php");

?></div>