[HELP] Rev CMS - PulseCMS Edit News Won't Show on /news

Fisher

New Member
Nov 13, 2012
17
2
When I create a news article it will show perfectly on the me page ( )

but when I go to Community > News (/news) its blank and has no links to the news articles ( )

Below is my news.php code

Code:
<?php include_once('includes/head.php'); ?>
<?php include_once('checktheban.php'); ?>
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta http-equiv="content-type" content="text/html; charset=utf-8">
        <title>{hotelName} - News</title>
     
        <link rel="stylesheet" href="{url}/app/tpl/skins/Custom-Habbo/styles/common.css" type="text/css">
        <script type="text/javascript" src="{url}/app/tpl/skins/Custom-Habbo/js/libs2.js"></script>
        <script type="text/javascript" src="{url}/app/tpl/skins/Custom-Habbo/js/visual.js"></script>
        <script type="text/javascript" src="{url}/app/tpl/skins/Custom-Habbo/js/libs.js"></script>
        <script type="text/javascript" src="{url}/app/tpl/skins/Custom-Habbo/js/common.js"></script>
        <script type="text/javascript" src="{url}/app/tpl/skins/Custom-Habbo/js/fullcontent.js"></script>
     
        <script type="text/javascript">
            document.habboLoggedIn = true;
            var habboName = "{username}";
            var habboId = {userid};
            var habboReqPath = "";
            var habboStaticFilePath = "{url}/app/tpl/skins/Custom-Habbo";
            var habboImagerUrl = "http://www.habbo.com/habbo-imaging/";
            var habboPartner = "";
            var habboDefaultClientPopupUrl = "{url}/client";
            window.name = "habboMain";
            if (typeof HabboClient != "undefined") {
                HabboClient.windowName = "eac955c8dbc88172421193892a3e98fc7402021a";
                HabboClient.maximizeWindow = true;
            }
        </script>
     
        <!--[if IE 8]>
            <link rel="stylesheet" href="{url}/app/tpl/skins/Custom-Habbo/styles/ie8.css" type="text/css">
        <![endif]-->
        <!--[if lt IE 8]>
            <link rel="stylesheet" href="{url}/app/tpl/skins/Custom-Habbo/styles/ie.css" type="text/css" />
        <![endif]-->
        <!--[if lt IE 7]>
            <link rel="stylesheet" href="{url}/app/tpl/skins/Custom-Habbo/styles/ie6.css" type="text/css" />
            <script type="text/javascript" src="{url}/app/tpl/skins/Custom-Habbo/js/pngfix.js"></script>
            <script type="text/javascript">
                try { document.execCommand('BackgroundImageCache', false, true); } catch(e) {}
            </script>
            <style type="text/css">
                body { behavior: url({url}/app/tpl/skins/Custom-Habbo/js/csshover.htc); }
            </style>
        <![endif]-->
    </head>
 
    <body id="news">
 
        <div id="overlay"></div>
        <div id="header-container">
            <div id="header" class="clearfix">
                <h1><a href="{url}/"></a></h1>
                <div id="subnavi">
                    <div id="subnavi-user">
                        <div style="margin-top:7px"><b>Fact:</b> You can now comment on news articles!</div>
                    </div>
                    <div id="subnavi-search">
                        <div id="subnavi-search-upper">
                            <ul id="subnavi-search-links">
                                <li><a href="{url}/logout" style="color:#000">Sign Out</a></li>
                            </ul>
                        </div>
                    </div>
                    <div id="to-hotel">
                        <a href="{url}/api.php" class="new-button green-button" target="eac955c8dbc88172421193892a3e98fc7402021a" onclick="HabboClient.openOrFocus(this); return false;"><b>Enter {hotelName} Hotel</b><i></i></a>
                    </div>
                </div>
                <ul id="navi">
                    <li class="metab"><a href="{url}/me">{username}</a><span></span></li>
                    <li class="selected"><strong>Community</strong><span></span></li>
                    <li><a href="{url}/vip">Shop</a><span></span></li>
                </ul>
                <div id="habbos-online"><div class="rounded"><span>{online} members online</span></div></div>
            </div>
        </div>
        <div id="content-container">
            <div id="navi2-container" class="pngbg">
                <div id="navi2" class="pngbg clearfix">
                    <ul>
                        <li class=""><a href="{url}/community">Community</a></li>
                        <li class="selected">News</li>
                        <li class=""><a href="{url}/staff">Staff</a></li>
                        <li class=" last"><a href="{url}/online">Online</a></li>
                    </ul>
                </div>
            </div>
            <div id="container">
                <div id="content" style="position: relative" class="clearfix">
                    <div id="column1" class="column">
                        <div class="habblet-container ">     
                            <div class="cbb clearfix default ">
                                <h2 class="title">News</h2>
                                <div id="article-archive">
                                    <ul>
                                        {newsTitle}
                                 
                                    </ul>
                                </div>
                            </div>
                        </div>
                        <script type="text/javascript">if (!$(document.body).hasClassName('process-template')) { Rounder.init(); }</script>
                    </div>
                    <div id="column2" class="column">
                        <div class="habblet-container ">     
                            <div class="cbb clearfix notitle ">
                                <div id="article-wrapper">
                                    <h2>{newsTitle}</h2>
                                    <div class="article-meta">Posted {newsDate}</div>
                                 
                                    <div class="article-body">
                                        {newsContent}
                                        <br><br>
                                        <p><font face="Verdana" size="1"><b>- {newsAuthor}</b></p>
                                        <script type="text/javascript" language="Javascript">
                                            document.observe("dom:loaded", function() {
                                                $$('.article-images a').each(function(a) {
                                                    Event.observe(a, 'click', function(e) {
                                                        Event.stop(e);
                                                        Overlay.lightbox(a.href, "Image is loading");
                                                    });
                                                });
                                             
                                                $$('a.article-2729').each(function(a) {
                                                    a.replace(a.innerHTML);
                                                });
                                            });
                                        </script>
                                    </div>
                                </div>
                            </div>
                        </div>
                        <script type="text/javascript">if (!$(document.body).hasClassName('process-template')) { Rounder.init(); }</script>               
<div class="habblet-container ">
<div class="cbb clearfix notitle ">
<div id="article-wrapper"><h2>Post a Comment</h2>
<div class="article-meta"></div>
<div class="article-body"> </div>
 
 
<form method="post">
                <textarea type="textarea" name="comment" rows="5" cols="40" class="styledinput floatleft" maxlength="500" wrap="physical" width="290" required/></textarea><br>
                <div class="settings-buttons"><br>
                                                <input type="submit" value="Post a comment" name="account" class="submit" style="float:left">
                                            </div>
            </form>
         
<br><br><br><div class="article-meta">One comment per article.</div>
            <?php
        $uids = $_SESSION['user']['id'];
        $id = preg_replace('/\D/', '', $_GET['id']);
        require_once('./app/tpl/skins/Custom-Habbo/newscomments.php');
        ?><br>
        </div>
   
        </div>
        </div>
 
</div>
                    </div>
                </div>
            </div>
        </div>
        <script type="text/javascript">if (!$(document.body).hasClassName('process-template')) { Rounder.init(); }</script>
        <script type="text/javascript">
            HabboView.run();
        </script>
 
        <!--[if lt IE 7]>
            <script type="text/javascript">
                Pngfix.doPngImageFix();
            </script>
        <![endif]-->
     
        <div id="footer" ><center>
    </body>
</html>
<?php include_once('includes/footer.php'); ?>

Anybody help me to get it working?
 

TechN

New Member
Feb 3, 2013
25
2
I cant seem to find the problem. But take you time and check the Cms I've got! Im editing it soon though :p

screenshot me page :

screenshot staff page :

Hope you Like it so far (More Updates Soon!)
 

Jezus

The one and only..
Aug 14, 2012
122
49
OFT: Why did u block out all of the hotel names when you can see it on fb eg: Vox hotel will be opening tomorrow?
ONT: Read what Queef said.
 

Users who are viewing this thread

Top