41
belia
Re: RSS plugin for Newbbex?
  • 2008/7/1 23:47

  • belia

  • Just popping in

  • Posts: 83

  • Since: 2007/12/18


bump...

i'm using d3pipes in one of my site but in this another site of mine i would like to stick to newbbex



42
belia
Re: Working on an AJAX validation registration form and other updates....
  • 2008/4/1 14:56

  • belia

  • Just popping in

  • Posts: 83

  • Since: 2007/12/18


the ajax registration is nice ...improve it more and i think it should be included in core 3.0



43
belia
Re: Xoops Modules (All Xoops Users Please Read)
  • 2008/1/19 14:47

  • belia

  • Just popping in

  • Posts: 83

  • Since: 2007/12/18


Quote:
and IMO we should just have "ONE LATEST STABLE" version from "ONE" module here in xoops.org.
for example dont need to have news 1.44, news 1.54, news 1.56,...


agree..this will confuse newbie as experienced by me when i first use xoops..i then since look for new release from the news section

currently this is the situation in the rep to many multiple module with different version a quick example is the forum category (cbb 1.16,cbb 2.32 <--this are dead modules right ? so there is no reason to let this modules stayed in the repository cause a stable version 3.08 is there)

Quote:

everybody want to see old versions, history, can click on the mirror link that redirect to sourceforge.net

that is better, a history/mirror link



44
belia
Re: Disable Attachments
  • 2008/1/19 13:48

  • belia

  • Just popping in

  • Posts: 83

  • Since: 2007/12/18


check admin

newbb > permission > can attach

i asked the same question yesterday

https://xoops.org/modules/newbb/viewtopic.php?topic_id=

edit: oops javessey is one minute faster



45
belia
Re: Xoops Modules (All Xoops Users Please Read)
  • 2008/1/19 12:41

  • belia

  • Just popping in

  • Posts: 83

  • Since: 2007/12/18


my suggestion

...if possible replace the old modules with the latest stable release (recommended release)...and in the description put a download link to previous module release/ or a beta release



46
belia
Re: how do i disable upload in certain forum (newbb)
  • 2008/1/19 6:46

  • belia

  • Just popping in

  • Posts: 83

  • Since: 2007/12/18


thank you i got it...silly me



47
belia
how do i disable upload in certain forum (newbb)
  • 2008/1/19 4:12

  • belia

  • Just popping in

  • Posts: 83

  • Since: 2007/12/18


- i'm using newbb 3.08

in the forum option there is these two options

Max Size in kb`s: & * Allowed Extensions:


i tried to put 0 in the max size....the upload form is still there

in the allowed extension in doestn't allow me to leave the field blank


regards,
bella farah



48
belia
Re: Add a new block
  • 2008/1/16 16:07

  • belia

  • Just popping in

  • Posts: 83

  • Since: 2007/12/18


check in admin > group settings



49
belia
Re: Add a new block
  • 2008/1/16 15:59

  • belia

  • Just popping in

  • Posts: 83

  • Since: 2007/12/18


try change the drop down menu option at top of the block admin

Resized Image



50
belia
Re: RSS plugin for Newbbex?
  • 2008/1/6 6:13

  • belia

  • Just popping in

  • Posts: 83

  • Since: 2007/12/18


bump again...I really need this

i tried this but not working


rssfit.newbbex.php
<?php
if( !defined('RSSFIT_ROOT_PATH') ){ exit(); }
class 
RssfitNewbbex{
var 
$dirname 'newbbex';
var 
$modname;
var 
$module;
var 
$grab;
function 
RssfitNewbbex(){
}
function 
loadModule(){
$mod =& $GLOBALS['module_handler']->getByDirname($this->dirname);
if( !
$mod || !$mod->getVar('isactive') ){
return 
false;
}
$this->modname $mod->getVar('name');
$this->module =& $mod;
return 
$mod;
}
function &
grabEntries(&$obj){
@include 
XOOPS_ROOT_PATH.'/modules/newbbex/include/functions.php';
global 
$xoopsDB;
$xoopsModule =& $this->module;
$myts =& MyTextSanitizer::getInstance();
$i 0;
$forum_handler =& xoops_getmodulehandler('forum''newbbex');
$topic_handler =& xoops_getmodulehandler('topic''newbbex');
$newbbConfig =& $GLOBALS['config_handler']->getConfigsByCat(0$this->module->getVar('mid'));
$access_forums $forum_handler->getForums(0'access');
$available_forums = array();
foreach(
$access_forums as $forum){
if(
$topic_handler->getPermission($forum)) {
$available_forums[$forum->getVar('forum_id')] = $forum;
}
}
unset(
$access_forums);
if( 
count($available_forums) > ){
ksort($available_forums);
$cond ' AND t.forum_id IN ('.implode(','array_keys($available_forums)).')';
unset(
$available_forums);
$cond .= $newbbexConfig['enable_karma'] ? ' AND p.post_karma = 0' '';
$cond .= $newbbexConfig['allow_require_reply'] ? ' AND p.require_reply = 0' '';
$query 'SELECT p.post_id, p.subject, p.post_time, p.forum_id, p.topic_id, p.dohtml, p.dosmiley,
p.doxcode, p.dobr, f.forum_name, pt.post_text FROM '
.$xoopsDB->prefix('xoops_bbex_posts').' p,
'
.$xoopsDB->prefix('xoops_bbex_forums').' f, '.$xoopsDB->prefix('xoops_bbex_topics').' t,
'
.$xoopsDB->prefix('xoops_bbex_text').' pt WHERE f.forum_id = p.forum_id AND p.post_id =
pt.post_id AND p.topic_id = t.topic_id AND t.approved = 1 AND p.approved = 1 AND f.forum_id =
t.forum_id '
.$cond.' ORDER BY p.post_time DESC';
$result $xoopsDB->query($query$this->grab);
while( 
$row $xoopsDB->fetchArray($result) ){
$link =
XOOPS_URL.'/modules/'.$this->dirname.'/viewtopic.php?topic_id='.$row['topic_id'].'&forum='.$row['fo
rum_id'
].'&post_id='.$row['post_id'].'#forumpost'.$row['post_id'];
$ret[$i]['title'] = $row['subject'];
$ret[$i]['link'] = $ret[$i]['guid'] = $link;
$ret[$i]['timestamp'] = $row['post_time'];
$ret[$i]['description'] = $myts->displayTarea($row['post_text'], $row['dohtml'], $row['dosmiley'],
$row['doxcode'], 1$row['dobr']);
$ret[$i]['category'] = $row['forum_name'];
$ret[$i]['domain'] =
XOOPS_URL.'/modules/'.$this->dirname.'/viewforum.php?forum='.$row['forum_id'];
$i++;
}
}
return 
$ret;
}
}
?>


error message
Quote:

This page cannot be displayed due to an internal error.

You can provide the following information to the administrators of this site to help them solve the problem:

Error: Handler does not exist
Module: newbbex
Name: forum



please help




TopTop
« 1 2 3 4 (5) 6 7 »



Login

Who's Online

189 user(s) are online (100 user(s) are browsing Support Forums)


Members: 0


Guests: 189


more...

Donat-O-Meter

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

Latest GitHub Commits