The comments are owned by the author. We aren't responsible for their content.
Re: CBB 4.03 RC Released
Thanks! But what about release notes?
Re: CBB 4.03 RC Released
Changelog 4.03 beta3 August 8, 2010 =========================================== 1 Fix error and change templates 2 Fix BB-Code in description cat and forums 3 enabe/disable Toolbar in threads 4 fix problems width XOOPS 2.5 5 fix show attach only for users 6 fix edit message in postings 7 support for png icons (by bleekk) 8 fixed permissions for forums 9 add notificatin when topic deleted (optional) 10 deleted notification in forum when blocked user 11 add view prefix in forumslist 12 fixed bug in online 13 add pdf Support 14 add view waiting and deleted postings 15 add new Admin-Index (by voltan) 16 add integration Modul umfrage 17 fix seo in blocks 18 fix error moderation userbann 19 fix cache permissions
Changelog 4.02 beta2 February 1, 2010 =========================================== 1 Bugfix width PHP5.3 is installed (dhcst) 2 Bugfix width cache (dhcst) 3 Bugfix add new categorie (dhcst) 4 Bugfix color Moderators 5 Add language for groupmod 6 Bugfix report topic 7 Bugfix templates 8 Added seo-tools 9 Bugfix Block see no older Topic
Changelog 4.01 alpha December 25th, 2009 ============================================ 1 Remove dependence Frameworks (dhcst) 2 delete xoopslogger views (dhcst) 3 Adding Groupmoderation (dhcst) 4 Bugfix stats when user post new topic (dhcst) 5 Code refactored, not finished yet (dhcst)
Re: CBB 4.03 RC Released
great news,
Re: CBB 4.03 RC Released
Has anyone tried to use the poll function?
If so does the latest version of xoopspoll (1.3) work with it?
Trying to use it on my system with 2.4.5 and can't seem to get it to work. More or less trying to see if I can figure it out then anything else at this time.
Thanks!
Rodney
Re: CBB 4.03 RC Released
Cool!
For me CBB is one of the strongest reasons to use xoops.
Most if not all of the other CMSs have to bolt on third party forums.
Re: CBB 4.03 RC Released
There's an error in one of the poll php pages in CBB. Can't remember which one, but I believe there was a bracket missing in an if statement on line 31.
Edit: It was votepolls.php. Otherwise it works fine.
Re: CBB 4.03 RC Released
I update my newbb to version 4.03 and I don't have any problem yet :
Alfred wrote, the final version is comming in the next year.
The problem is, that a link to the SVN looks wrong - error 404
Re: CBB 4.xx, 3.xx to XForum
try xforum the upgrade script is llike so, it is a clone of newbb with multifielding.
I will be adding multisite and xlanguage to it soon.
# Will Run as a SQL Upgrade from newbb to xforum TRUNCATE prefix_xf_attachments; TRUNCATE prefix_xf_categories; TRUNCATE prefix_xf_digest; TRUNCATE prefix_xf_forums; TRUNCATE prefix_xf_moderates; TRUNCATE prefix_xf_online; TRUNCATE prefix_xf_posts; TRUNCATE prefix_xf_posts_text; TRUNCATE prefix_xf_reads_forum; TRUNCATE prefix_xf_reads_topic; TRUNCATE prefix_xf_report; TRUNCATE prefix_xf_topics; TRUNCATE prefix_xf_votedata; INSERT INTO prefix_xf_votedata SELECT * FROM prefix_bb_votedata; INSERT INTO prefix_xf_topics SELECT * FROM prefix_bb_topics; INSERT INTO prefix_xf_report SELECT * FROM prefix_bb_report; INSERT INTO prefix_xf_reads_topic SELECT * FROM prefix_bb_reads_topic; INSERT INTO prefix_xf_reads_forum SELECT * FROM prefix_bb_reads_forum; INSERT INTO prefix_xf_posts_text SELECT * FROM prefix_bb_posts_text; INSERT INTO prefix_xf_posts (post_id,pid,topic_id,forum_id,post_time,uid,poster_name,poster_ip,`subject`,dohtml,dosmiley,doxcode,dobr,doimage,icon,attachsig,approved,post_karma,attachment,require_reply,`subject`) SELECT (post_id,pid,topic_id,forum_id,post_time,uid,poster_name,poster_ip,`subject`,dohtml,dosmiley,doxcode,dobr,doimage,icon,attachsig,approved,post_karma,attachment,require_reply,`tags`) FROM prefix_bb_posts; INSERT INTO prefix_xf_online SELECT * FROM prefix_bb_online; INSERT INTO prefix_xf_moderates SELECT * FROM prefix_bb_moderates; INSERT INTO prefix_xf_forums SELECT * FROM prefix_bb_forums; INSERT INTO prefix_xf_digest SELECT * FROM prefix_bb_digest; INSERT INTO prefix_xf_categories SELECT * FROM prefix_bb_categories; INSERT INTO prefix_xf_attachments SELECT * FROM prefix_bb_attachments; INSERT INTO prefix_xf_archive SELECT * FROM prefix_bb_archive;