I have setup cutephp on a webserver. The registration, adding and editing news etc were successful. But, whenever I click on a news link, it stays in the home page. It doesn't redirect to the full story. I want to know how to fix it. For setting up cutephp, I referred to https://websiteforstudents.com/install- … h-apache2/ . I made certain modifications to the configuration files like changing the root directory. I followed all of the steps and registration wasn't much of a problem. Now, when I click on <website>/index.php?id=6, it stays at <website>/index.php and doesn't open the full story. No changes were made to show_news.php . The include lines were:
```<?php
        $number = 10;
    $only_active = TRUE;
    $static = TRUE;
        include("cutenews/show_news.php");
?>
```
Now I need to know how to open the full story.