| Author |
Message |
superjari
Joined: 07 Oct 2006 Posts: 35 Location: Netherlands |
|
Great script, just what I needed! |
|
Hi guys, just wanted to tell you I think this is a great script!
In the past two weeks I've been getting more depressed with every CMS/BLOG/Newsscript I turned down to use for my website for various reasons. Cutenews was always a nice script, but now with this edition it's absolutely what I needed!
I still don't understand every aspect of it, but I'm getting there slowly. While changing some stuff to blend nicely with my site I'll probably be having some questions about how to include the news with various templates, but for now all I want to say is:
THANK YOU!
|
|
| Sat Oct 07, 2006 9:53 pm |
|
 |
Guest
|
|
|
Please login to hide the ads.
|
|
|
|
 |
scottdallas

Joined: 04 May 2006 Posts: 1843 Location: US |
|
|
|
I felt the same way you did til I found this forum and script! Are you using cutenews.ru 2.5.4 or strawberry? Let us know what you need help with. I'm always eager to get people into this project. I can't imagine trying any other CMS for any website project I have or will have.
_________________ www.scottdizzle.com uses cnr
last update: 07-22-08: 8:30 pm |
|
| Sat Oct 07, 2006 10:04 pm |
|
 |
Ramon
Joined: 12 Oct 2005 Posts: 462 Location: Hoogeveen, NL |
|
|
|
Leuk om je hier te zien. Ben altijd wel veel op jouw websites met filmpjes van goals geweest. Vooral in de tijd dat Zlatan die geweldige goal bij Ajax maakte was ik er veel te vinden.
Naja als je hulp nodig hebt horen we dat wel.
_________________
 |
|
| Sat Oct 07, 2006 10:34 pm |
|
 |
superjari
Joined: 07 Oct 2006 Posts: 35 Location: Netherlands |
|
|
|
What a welcome
I'm using Cutenews.ru 2.5.4 for http://www.ajaxgoal.com
I've found one thing so far which isn't working the way I intended (I know my smileys don't work, I want to change them, but that's something for later); the categories. If I click on categories on the right hand navigation and than click one of the categories I want to view, suddenly all the 5 latest posts displayed per category on the right side turn into the same one.
Here's my code for including cutenews.ru;
 |  | <?PHP
if ($do == 'search'){
include $cutepath.'/search.php';
} elseif ($do == 'category' and !$category){
echo cn_category();
} elseif ($do == 'archives'){
echo cn_archives();
} else {
$template = "AjaxGoal";
$number = "1";
include $cutepath.'/show_news.php';
}
?> |
However I kind of have a strange way of including, I have this code in main.php and I have included main.php to index.php because I also want to have static pages. (http://www.ajaxgoal.com/index.php?nid=info for instance).
Does anyone know what the problem is?
THNX in advance!
|
|
| Sun Oct 08, 2006 3:02 pm |
|
 |
superjari
Joined: 07 Oct 2006 Posts: 35 Location: Netherlands |
|
|
|
Just found another problem and I forgot to mention some more;
I'm using the MySQL-version and these are my includes for the latest 5 headlines per category;
 |  | <?PHP
$static = TRUE;
$template = "Headlines";
$number = "5";
$category = "3";
include $cutepath.'/show_news.php';
?> |
It's added five times with a different category everytime.
Another problem I found is when I click on the prev/next under the news to go to a previous item no last five headlines are shown on the right.
THNX in advance!
|
|
| Sun Oct 08, 2006 4:19 pm |
|
 |
Ramon
Joined: 12 Oct 2005 Posts: 462 Location: Hoogeveen, NL |
|
|
|
In cutenews.ru if you want to make something static use it as below.
 |  |
<?PHP
$static['template'] = "Headlines";
$static['number'] = "5";
$static['category'] = "3";
include $cutepath.'/show_news.php';
?>
|
That should fix your problem in your other post aswell.
_________________
 |
|
| Sun Oct 08, 2006 10:47 pm |
|
 |
superjari
Joined: 07 Oct 2006 Posts: 35 Location: Netherlands |
|
|
| Mon Oct 09, 2006 5:08 am |
|
 |
superjari
Joined: 07 Oct 2006 Posts: 35 Location: Netherlands |
|
|
|
Still in love with this script, but have found some more problems, could someone help?
Problem 1: search messes up navigation.
Click here, it's a search for the word groningen. Now the search works well and finds the article, however, in the right nav, suddenly all the latest articles from previous categories don't show up anymore. Can this be changed?
Problem 2: search displays actual html-code.
Click here, it's a search for the word ajax. Now the search works well and finds the articles, however, all articles other than the last display the actual html-code instead of the links in the article.
THNX in advance!
|
|
| Sun Oct 15, 2006 10:26 am |
|
 |
|