1
McJagger
backend.php showing nothing?!?
  • 2005/4/13 14:55

  • McJagger

  • Just popping in

  • Posts: 20

  • Since: 2004/12/11


Hey... i'd like to enable rss feeds for my page (i use wfsection). I edited the backend.php


... 
header ...

include 
'mainfile.php';
include_once 
XOOPS_ROOT_PATH.'/class/template.php';
//include_once XOOPS_ROOT_PATH.'/modules/news/class/class.newsstory.php';
include_once XOOPS_ROOT_PATH.'/modules/vijesti/class/common.php';
include_once 
XOOPS_ROOT_PATH.'/modules/vijesti/class/wfsarticle.php';
if (
function_exists('mb_http_output')) {
    
mb_http_output('pass');
}
header ('Content-Type:text/xml; charset=utf-8');
$tpl = new XoopsTpl();
$tpl->xoops_setCaching(2);
$tpl->xoops_setCacheTime(3600);
if (!
$tpl->is_cached('db:system_rss.html')) {
    
$sarray NewsStory::getAllPublished(100);
    if (
is_array($sarray)) {
        
$tpl->assign('channel_title'xoops_utf8_encode(htmlspecialchars($xoopsConfig['sitename'], ENT_QUOTES)));
        
$tpl->assign('channel_link'XOOPS_URL.'/');
        
$tpl->assign('channel_desc'xoops_utf8_encode(htmlspecialchars($xoopsConfig['slogan'], ENT_QUOTES)));
        
$tpl->assign('channel_lastbuild'formatTimestamp(time(), 'rss'));
        
$tpl->assign('channel_webmaster'$xoopsConfig['adminmail']);
        
$tpl->assign('channel_editor'$xoopsConfig['adminmail']);
        
$tpl->assign('channel_category''News');
        
$tpl->assign('channel_generator''XOOPS');
        
$tpl->assign('channel_language'_LANGCODE);
        
$tpl->assign('image_url'XOOPS_URL.'/images/logo.gif');
        
$dimention getimagesize(XOOPS_ROOT_PATH.'/images/logo.gif');
        if (empty(
$dimention[0])) {
            
$width 88;
        } else {
            
$width = ($dimention[0] > 144) ? 144 $dimention[0];
        }
        if (empty(
$dimention[1])) {
            
$height 31;
        } else {
            
$height = ($dimention[1] > 400) ? 400 $dimention[1];
        }
        
$tpl->assign('image_width'$width);
        
$tpl->assign('image_height'$height);
        
$count $sarray;
        foreach (
$sarray as $story) {
            
$tpl->append('items', array('title' => xoops_utf8_encode(htmlspecialchars($story->title(), ENT_QUOTES)), 'link' => XOOPS_URL.'/modules/news/article.php?storyid='.$story->storyid(), 'guid' => XOOPS_URL.'/modules/news/article.php?storyid='.$story->storyid(), 'pubdate' => formatTimestamp($story->published(), 'rss'), 'description' => xoops_utf8_encode(htmlspecialchars($story->hometext(), ENT_QUOTES))));
        }
    }
}
$tpl->display('db:system_rss.html');
?>


but http://www.stportal.com/backend.php shows nothing ;(

2
Mithrandir
Re: backend.php showing nothing?!?

Better ask at http://www.wf-projects.com if they have a modified backend.php for wf-sections. It takes more than including class files to make them appear.

Login

Who's Online

474 user(s) are online (61 user(s) are browsing Support Forums)


Members: 0


Guests: 474


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Sep 30
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits