Hello and i hope someone is still alive here and can help me.

My news have categories. On main site (index.php?page=news) i show all of them. On another page of my site i would like to show only news from category = "30" (index.php?page=2ndpage&category=2ndnews).
I use code:

elseif($_GET['page']=="2ndpage" && $_GET['category']=="2ndnews"){
$category = "30";
include('news/show_news.php');

Everything works fine, news form category 30 are displayed on that page, but when i click to show full article it does nothing - still only shorties are displayed, full article is not loaded. When i delete $category = "30" all news are displayed on page and it is possible to load full article.
Help please smile

Hello my friends.
I've installed the Cutenews v2.0.4 without any problems. Configured it, modified templates and now using cutenews with one big problem.
I have website http://ukstechnik.zsl.org.pl and want to use .htaccess rewrite mod to make links more friendly. When i want to load news page i use link http://ukstechnik.zsl.org.pl/aktualnosci instead of http://ukstechnik.zsl.org.pl/index.php?page=aktualnosci. I didt rewriting inside .htaccess file and it looks:

Options -Indexes
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?strona=$1 [L]

When i post a new story with full story option i have Read more... button which links to full article. Link to that is: http://ukstechnik.zsl.org.pl/index.php? … i&id=9 (1 = news id). What should i do to rewrite this link to look like http://ukstechnik.zsl.org.pl/aktualnosci/9 ?

Tried many ways and nothing is working (even builtin rewrite). Is it ever possible to rewrite full story link?