Get XOOPS XOOPSXOOPS FAQFAQ ForumsForums NewsNews ThemesThemes ModulesModules
New Posts New Topics All Posts All Forums Index General Modules Themes Development International XOOPS.org

Search

Donat-O-Meter

Make donations with PayPal!
Stats
Goal: $100.00
Due Date: Jun 30
Gross Amount: $25.00
Net Balance: $23.57
Left to go: $76.43

Donations
Anonymous ($15)Jun-14
Anonymous ($10)Jun-10

Learn XOOPS Core

Local Support

Advertisement

XOOPS Code hosted on SourceForge

Cumulus Tag Cloud

2 2.5 2.6 3.0 2013 Abuse admin AntiHarvesting AntiMalUser AntiSpam API Balancing Banning Beats billige black Blocks blue Captcha cell Christmas chronolabs Cloud content Conversion demo docek download Dresses editor evden eve facebook familia floor free Friendica herre Honeypot Human inStyler Invoice IP IPLog jQuery JSON kantor lamps List log logger mobile module modules Monster mulberry MyAlbum-p newbb news online Outlet PageRank pandora Permissions PHP pink Plugin Plus portal Prevention profile project Protector publisher Rights rmcommon Room sale security Server site Smarty Spam stem Studio svn tag tags tdmcreate template Theme themes User userlog website Whitepaper Wishcraft xoops Xortify ZendFramework

New Users

Registering user

# 136105

niloy_raisul

Welcome to XOOPS!




Bottom   Previous Topic   Next Topic  Register To Post

« 1 2 (3) 4 5 6 ... 8 »


#21 Posted on: 2005/5/24 10:48 Re: CBB Team calling for members
Quote:

phppp wrote:

@Rhomal, thanks for reminding me. I remembered that I started a XOOPS karma project at dev.xoops.org and invited you as project coordinator. Did not know that Predator also had discussed with you
I did not find my karma project right now. However it is with no doubt that we still need the karma system, and you : )


Ahh yes so you did as well. My bad. :)

But in a nutshell, ill post the system I put togeather from my ideas and feedback here to open up the discussion.

Top

Rhomal
Quite a regular
Quite a regular
Joined:
2004/10/5 10:12
Group:
Registered Users
Posts: 269
(Show More) (Show Less)


#22 Posted on: 2005/5/24 15:05 Re: CBB Team calling for members
phppp!
Translating Spanish CBB.
by my account.

http://www.esxoops.com

Top

JulioNC
Quite a regular
Quite a regular
Joined:
2004/10/8 14:12
From Peru
Group:
Registered Users
Posts: 201
(Show More) (Show Less)


#23 Posted on: 2005/5/24 18:55 Re: CBB Team calling for members
@phppp

don't you think it would be usefull to open a board for the newbb project ? here it's a little confused between the news and different topics.

I made several changes on cbb 1.3 and would like to share my experience with other users but I don't know where. I've few ideas on how to speed the display of the forum. I noticed that cbb could be much more faster with a hard "cleaning" of templates. That what i've done on my test site and now the board is nearly as fast as newbb1.


sorry for my poor english

thx

Top

fdj
Just popping in
Just popping in
Joined:
2002/9/19 9:07
Group:
Registered Users
Posts: 48
(Show More) (Show Less)


#24 Posted on: 2005/5/24 20:36 Re: CBB Team calling for members
Well needless to say, I have not had too much free time available. I will, by using the latest version, keep up with the new features.

As soon as I get some time I will be adding to the Newbb/CBB tutorial section of my site. The upgrade, category creation and forum creation tutorials still apply to this version.

I would like to help in anyway I can, but do not at this time have the time to be a full time team member. But if anything in particular is needed please do not hesitate to email me phppp.

Good luck in your great project. CBB keeps getting better and better.

Top

jdseymour
Friend of XOOPS
Friend of XOOPS
Joined:
2004/11/11 16:35
From Gainesville, Florida, USA
Group:
Registered Users
Posts: 3713
(Show More) (Show Less)


#25 Posted on: 2005/5/30 13:33 Re: CBB Team calling for members
Dear all,

I am going to send out my first confirmation email. However, the email will only reach guys who have sent me email.

I wish all people having interest in CBB would be a support member. And I hope peolple, who would like to be a regular member of CBB but no receive my confirmation email, contact me via email ASAP.

Thank you
D.J.

Top

phppp
XOOPS Contributor
XOOPS Contributor
Joined:
2004/1/24 21:40
From Beijing
Group:
BANNED Users
Posts: 2175
(Show More) (Show Less)


#26 Posted on: 2005/6/2 6:43 Re: CBB Team calling for members
A quick fix for "inactive members can post"

newbb/post.php

around line #88
if(!is_object($xoopsUser)){
        
$uname = !isset($_POST['uname']) ? '' trim($_POST['uname']);
        
$pass = !isset($_POST['pass']) ? '' trim($_POST['pass']);
        
$member_handler =& xoops_gethandler('member');
        
$user =& $member_handler->loginUser(addslashes($myts->stripSlashesGPC($uname)), addslashes($myts->stripSlashesGPC($pass)));
        if(
is_object($user) && $user->isActive()){
            if(!empty(
$_POST["login"])){
                
$user->setVar('last_login'time());
                if (!
$member_handler->insertUser($user)) {
                }
                
$_SESSION = array();
                
$_SESSION['xoopsUserId'] = $user->getVar('uid');
                
$_SESSION['xoopsUserGroups'] = $user->getGroups();
                if (
$xoopsConfig['use_mysession'] && $xoopsConfig['session_name'] != '') {
                    
setcookie($xoopsConfig['session_name'], session_id(), time()+(60 $xoopsConfig['session_expire']), '/',  ''0);
                }
                
$user_theme $user->getVar('theme');
                if (
in_array($user_theme$xoopsConfig['theme_set_allowed'])) {
                    
$_SESSION['xoopsUserTheme'] = $user_theme;
                }
            }
            
$xoopsUser =& $user;
        }
    }

    
$isadmin newbb_isAdmin($forum);



We will have a quick bugfix version including:
Quote:

1 bugfix for inactive user posting (Reported by Aries @ xoops.org.cn)
2 bugfix for deleting topic with poll (Reported by gropius @ xoops.org.cn)
3 change default value for displaying forum topic time duration (Reported by Zjerre @ xoops.org)


If you have any minor feature request or bug report, leave a message in this thread ASAP.

Top

phppp
XOOPS Contributor
XOOPS Contributor
Joined:
2004/1/24 21:40
From Beijing
Group:
BANNED Users
Posts: 2175
(Show More) (Show Less)


#27 Posted on: 2005/6/2 13:08 Re: CBB Team calling for members
I certainly would like to get on board and help develop (non-code wise) the RPG and karma system.

Top

Rhomal
Quite a regular
Quite a regular
Joined:
2004/10/5 10:12
Group:
Registered Users
Posts: 269
(Show More) (Show Less)


#28 Posted on: 2005/6/2 13:26 Re: CBB Team calling for members
And I would like to assist where I can as well... although I am certainly not a programmer

Top

davidl2
XOOPS is my life!
XOOPS is my life!
Joined:
2003/5/25 20:19
Group:
BANNED Users
Posts: 4801
(Show More) (Show Less)


#29 Posted on: 2005/6/4 7:40 Re: CBB Team calling for members
Hi guys, I would like to invite davidl2 to be our coordinator so that he would help us establish the team soon.

davidl2, I would appreciate you if you are kind to accept it and begin to contact our friends that have interests in CBB Team.
Meanwhile, bug reports and feature requests should be collected also.

Top

phppp
XOOPS Contributor
XOOPS Contributor
Joined:
2004/1/24 21:40
From Beijing
Group:
BANNED Users
Posts: 2175
(Show More) (Show Less)


#30 Posted on: 2005/6/4 8:56 Re: CBB Team calling for members
I'll do my best for you phppp.

If anyone can PM me who has expressed an interest in helping, then I can start to get a full run down of whos involved.

Cheers

David

Top

davidl2
XOOPS is my life!
XOOPS is my life!
Joined:
2003/5/25 20:19
Group:
BANNED Users
Posts: 4801
(Show More) (Show Less)




« 1 2 (3) 4 5 6 ... 8 »



You can view topic.
You cannot start a new topic.
You cannot reply to posts.
You cannot edit your posts.
You cannot delete your posts.
You cannot add new polls.
You can vote in polls.
You cannot attach files to posts.
You can post without approval.
You cannot use topic type.
You cannot use HTML syntax.
You cannot use signature.

[Advanced Search]