1
CBung
Re: XOOPS NewBB 4.33 RC-10 available for testing
  • 2016/2/13 19:09

  • CBung

  • Just popping in

  • Posts: 14

  • Since: 2009/3/4 5


How does one upgrade a module? I have CBB 3.08 is NewBB the same thing?

Edit 1: I see that the CBB 3.08 folder in my modules/ is "newbb/" so I guess it is indeed the same thing.

Edit 2: I found the readme in the zip on how to upgrade (which btw should be in the newhttps://mambax7.gitbooks.io/xoops-newbb-module-tutorial/content/en/book/1install.html ).... Here goes nothing...



2
CBung
Upgrading from 2.4.4 -> 2.5.4 Latest
  • 2012/1/3 5:21

  • CBung

  • Just popping in

  • Posts: 14

  • Since: 2009/3/4 5


Hey, thanks for looking,

Just curious if there's anything special anyone can say about doing an upgrade from 2.4.4 to the latest 2.5.4 EDIT: I just found the 2.4.5. to 2.5.5 upgrade, is there any significant differences between that and 2.4.4 ? other than what's listed in the install page about upgrading from versions below 2.5.0. Sorry if that's a bit vague, but I'm going to try and copy my site and try. If anyone's come from any 2.4.x's and has any tips, I'd appreciate the help.



Thanks again,
Bung



3
CBung
Re: Don't have Permission to Set User Profile Permissions!!
  • 2010/7/8 0:13

  • CBung

  • Just popping in

  • Posts: 14

  • Since: 2009/3/4 5


Yes everything on that webmasters group page is checked, and my users is in the list of users below as well. I am lost :(



4
CBung
Don't have Permission to Set User Profile Permissions!!
  • 2010/7/6 18:11

  • CBung

  • Just popping in

  • Posts: 14

  • Since: 2009/3/4 5


Hello, thanks for looking,

Preamble: Really need some help here, I have transferred a local site that was in development into an existing Xoops site and have been slowing going through permissions updates for the existing site groups etc.

My main issue is this:

When I am on /profile/admin/permissions.php trying to set what is and what is not editible by users on their profile pages, when I click submit, it says I don't have permission! I am logged in as Admin and don't know what's up.

After clicking submit it goes to /modules/system/admin/groupperm.php where it shows the error.

Anyone have any clue what might be going on here?

Thanks for any input, I'm happy to provide more information as well.

CB



5
CBung
Re: AMS 3.0 combine with News 1.64. Give your opinion.
  • 2010/6/30 3:44

  • CBung

  • Just popping in

  • Posts: 14

  • Since: 2009/3/4 5


I would like to suggest a minor update for AMS 3.0. I desire that center align is possible for the topic/avatar image with a story. From what I've seen it takes the following adjustments:

In xoopsstory.php

function topicalign($astext=true)

{

if ( $astext ) {

if ( $this->topicalign == "R" ) {

$ret = "right";

} else if ( $this->topicalign == "L" ) {

$ret = "left";

} else if ( $this->topicalign == "C" ) {
$ret = "center";
} else {
$ret = "";
}

return $ret;

}

return $this->topicalign;

}

In storyform.inc.php

Added to line 145:

$posselect->addOption('C', _AMS_AM_CENTER);

Added to english/admin.php
define("_AMS_AM_CENTER","Center");



6
CBung
Re: Manually (in DB) modify block viewing permissions
  • 2010/5/20 18:31

  • CBung

  • Just popping in

  • Posts: 14

  • Since: 2009/3/4 5


Thank you for the response.

This is the Recently Replied Topics block from CBB that is on my Top Page.

Updating the CBB persmissions fixed the issue, thanks.



7
CBung
Manually (in DB) modify block viewing permissions
  • 2010/5/19 1:53

  • CBung

  • Just popping in

  • Posts: 14

  • Since: 2009/3/4 5


Hello,

I have a block that has all groups (including anonymous) selected in the admin page for viewing. However when I am logged out, the block does not show. Where exactly in the database can I adjust this change or track down what's missing.

Thanks for your time.



8
CBung
Adminstration Quick Links
  • 2009/7/13 21:44

  • CBung

  • Just popping in

  • Posts: 14

  • Since: 2009/3/4 5


Hello,

I have a module that doesnt have any "quick links" in the adminstration pages. How can I add my own?

Thanks



9
CBung
XoopsForm attributes
  • 2009/5/14 2:18

  • CBung

  • Just popping in

  • Posts: 14

  • Since: 2009/3/4 5


I had to update my formtextarea.php to the following in order to include html attributes


<?php
// $Id: formtextarea.php 1953 2008-08-10 08:20:26Z phppp $
// ------------------------------------------------------------------------ //
// XOOPS - PHP Content Management System //
// Copyright (c) 2000 XOOPS.org //
// <https://xoops.org/> //
// ------------------------------------------------------------------------ //
// This program is free software; you can redistribute it and/or modify //
// it under the terms of the GNU General Public License as published by //
// the Free Software Foundation; either version 2 of the License, or //
// (at your option) any later version. //
// //
// You may not change or alter any portion of this comment or credits //
// of supporting developers from this source code or any supporting //
// source code which is considered copyrighted (c) material of the //
// original comment or credit authors. //
// //
// This program is distributed in the hope that it will be useful, //
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
// GNU General Public License for more details. //
// //
// You should have received a copy of the GNU General Public License //
// along with this program; if not, write to the Free Software //
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA //
// ------------------------------------------------------------------------ //
// Author: Kazumi Ono (AKA onokazu) //
// URL:http://www.myweb.ne.jp/,https://xoops.org/,http://www.xoopscube.jp/ //
// Project: The XOOPS Project //
// ------------------------------------------------------------------------- //
if (!defined('XOOPS_ROOT_PATH')) {
die("XOOPS root path not defined");
}
/**
*
*
* @package kernel
* @subpackage form
*
* @author Kazumi Ono <onokazu@xoops.org>
* @copyright copyright (c) 2000-2003 XOOPS.org
*/

xoops_load('xoopsformelement');
/**
* A textarea
*
* @author Kazumi Ono <onokazu@xoops.org>
* @copyright copyright (c) 2000-2003 XOOPS.org
*
* @package kernel
* @subpackage form
*/
class XoopsFormTextArea extends XoopsFormElement {
/**
* number of columns
* @var int
* @access private
*/
var $_cols;

/**
* number of rows
* @var int
* @access private
*/
var $_rows;

/**
* initial content
* @var string
* @access private
*/
var $_value;

/**
* initial attributes
* @var string
* @access private
*/
var $_attributes;

/**
* Constuctor
*
* @param string $caption caption
* @param string $name name
* @param string $value initial content
* @param string $attributes attributes
* @param int $rows number of rows
* @param int $cols number of columns
*/
function XoopsFormTextArea($caption, $name, $value = "", $rows = 5, $cols = 50, $attributes = "") {
$this->setCaption($caption);
$this->setName($name);
$this->_rows = intval($rows);
$this->_cols = intval($cols);
$this->setValue($value);
$this->_attributes = $attributes;
}

/**
* get number of rows
*
* @return int
*/
function getRows() {
return $this->_rows;
}

/**
* Get number of columns
*
* @return int
*/
function getCols() {
return $this->_cols;
}

/**
* Get initial content
*
* @param bool $encode To sanitizer the text? Default value should be "true"; however we have to set "false" for backward compat
* @return string
*/
function getValue($encode = false) {
return $encode ? htmlspecialchars($this->_value) : $this->_value;
}

/**
* Set initial content
*
* @param $value string
*/
function setValue($value){
$this->_value = $value;
}

/**
* Set attributes
*
* @param $value string
*/
function getAttributes($attributes){
return $this->_attributes;
}

/**
* prepare HTML for output
*
* @return sting HTML
*/
function render(){
return "<textarea name='".$this->getName()."' id='".$this->getName()."' rows='".$this->getRows()."' cols='".$this->getCols()."'".$this->getExtra()." ".$this->getAttributes().">".$this->getValue()."</textarea>";
}
}
?>



10
CBung
Re: newbb lastpost_icon problem
  • 2009/3/6 5:19

  • CBung

  • Just popping in

  • Posts: 14

  • Since: 2009/3/4 5


I know this is from 2006, but if anyone else finds this, heres what I did,

https://xoops.org/modules/newbb/viewtopic.php?topic_id=67817&post_id=307422#forumpost307422




TopTop
(1) 2 »



Login

Who's Online

175 user(s) are online (102 user(s) are browsing Support Forums)


Members: 0


Guests: 175


more...

Donat-O-Meter

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

Latest GitHub Commits