Forums

Unfortunately no one can be told what FluxBB is - you have to see it for yourself.

You are not logged in.

#1 2009-05-15 16:29:51

hcgtv
Member
From: Charlotte, NC
Registered: 2008-05-07
Posts: 419
Website

FluxBB 1.4

Browsing Trac, there doesn't seem to be many tickets keeping 1.4 from final status. What's holding up the release?

Also, what new features are in store for those upgrading from 1.2.xx? I lost track of SVN a few months ago.


Bert Garcia - When all you have is a keyboard

Offline

#2 2009-05-15 16:39:12

elbekko
Former Developer
From: Leuven, Belgium
Registered: 2008-04-30
Posts: 1,131
Website

Re: FluxBB 1.4

Indeed, 1.4 isn't far away, what's actually holding up is the mess of a release script that we had. I rewrote it, so one of these days you should be seeing 1.4 beta 1 smile

As for new features (that I can think of):
* UTF-8
* Better post unread tracking
* Split/merge of topics
* ...


Ben
SVN repository for my extensions - The thread
Quickmarks 0.5
“Question: How does a large software project get to be one year late? Answer: One day at a time!” - Fred Brooks

Offline

#3 2009-05-15 23:47:42

Aikimaniac
Member
From: Slovakia
Registered: 2008-05-15
Posts: 52

Re: FluxBB 1.4

Do you think its possible to have this mod inside maybe ? http://fluxbb.org/forums/topic/2526/pro … ad-113mod/


Im not sorry for my english and dont forget: Dolphins are gay sharks !

Offline

#4 2009-05-16 00:58:54

x3dt
Member
Registered: 2008-05-12
Posts: 36

Re: FluxBB 1.4

Aikimaniac wrote:

Do you think its possible to have this mod inside maybe ? http://fluxbb.org/forums/topic/2526/pro … ad-113mod/

elbekko wrote:

Indeed, 1.4 isn't far away, what's actually holding up is the mess of a release script that we had. I rewrote it, so one of these days you should be seeing 1.4 beta 1 smile

As for new features (that I can think of):
* UTF-8
* Better post unread tracking
* Split/merge of topics
* ...

Offline

#5 2009-05-16 01:02:58

x3dt
Member
Registered: 2008-05-12
Posts: 36

Re: FluxBB 1.4

elbekko wrote:

Indeed, 1.4 isn't far away, what's actually holding up is the mess of a release script that we had. I rewrote it, so one of these days you should be seeing 1.4 beta 1 smile

As for new features (that I can think of):
* UTF-8
* Better post unread tracking
* Split/merge of topics
* ...

I have this error with this fonction


An error was encountered
Error: Unable to create new topic.

i don't have idea why

Offline

#6 2009-05-16 07:18:51

FSX
Developer
From: NL
Registered: 2008-05-09
Posts: 805
Website

Re: FluxBB 1.4

@x3dt:
Could you describe exactly what you were doing when the error appeared? I'll look into it.

Last edited by FSX (2009-05-16 07:20:52)

Offline

#7 2009-05-16 17:56:44

hcgtv
Member
From: Charlotte, NC
Registered: 2008-05-07
Posts: 419
Website

Re: FluxBB 1.4

elbekko wrote:

Indeed, 1.4 isn't far away, what's actually holding up is the mess of a release script that we had. I rewrote it, so one of these days you should be seeing 1.4 beta 1 smile

Ok, will wait for the beta to test it out.


Bert Garcia - When all you have is a keyboard

Offline

#8 2009-05-16 20:04:57

x3dt
Member
Registered: 2008-05-12
Posts: 36

Re: FluxBB 1.4

FSX wrote:

@x3dt:
Could you describe exactly what you were doing when the error appeared? I'll look into it.

1- press moderate
http://i42.tinypic.com/2n1gwtt.jpg
2 - Select 2 message and press split
http://i39.tinypic.com/2vl49cy.jpg
3 -  Choose a name for new topic
http://i40.tinypic.com/ac5yrl.jpg
4 - error
http://i41.tinypic.com/vsj9zb.jpg

Offline

#9 2009-05-16 20:10:18

Franz
Lead developer
From: Germany
Registered: 2008-05-13
Posts: 4,070
Website

Re: FluxBB 1.4

Could you please enable debug mode and post the full error? You should also enable PUN_SHOW_QUERIES so that we can see what's wrong with the database query...


fluxbb.de | develoPHP

"As code is more often read than written it's really important to write clean code."

Offline

#10 2009-05-16 20:23:38

x3dt
Member
Registered: 2008-05-12
Posts: 36

Re: FluxBB 1.4

Maybe change in 1.4 a don't have this line for debug inside common.php sorry

Offline

#11 2009-05-16 20:31:10

x3dt
Member
Registered: 2008-05-12
Posts: 36

Re: FluxBB 1.4

but a put the line  in config.php and that work the complet error is:


An error was encountered
File: /homepages/14/d235647063/htdocs/dev.x3dt.info/fluxbb14/moderate.php
Line: 197

FluxBB reported: Unable to create new topic

Database reported: Table 'db250787559.topics' doesn't exist (Errno: 1146)

Offline

#12 2009-05-16 20:40:01

x3dt
Member
Registered: 2008-05-12
Posts: 36

Re: FluxBB 1.4

i fix this problem but i have new problem lol

i change the line 197 for
            // Create the new topic
            $db->query('INSERT INTO '.$db->prefix.'topics (poster, subject, posted, first_post_id, forum_id) VALUES (\''.$db->escape($first_post_data['poster']).'\', \''.$db->escape($new_subject).'\', '.$first_post_data['posted'].', '.$first_post_data['id'].', '.$fid.')') or error('Unable to create new topic', __FILE__, __LINE__, $db->error());

but now i have this message

File: /homepages/14/d235647063/htdocs/dev.x3dt.info/fluxbb14/moderate.php
Line: 201

FluxBB reported: Unable to move posts into new topic

Database reported: Table 'db250787559.posts' doesn't exist (Errno: 1146) 

Offline

#13 2009-05-16 20:55:51

x3dt
Member
Registered: 2008-05-12
Posts: 36

Re: FluxBB 1.4

finally the line 201 is the same problem

for fix everything change the line 196 to 201 for that ('.$db->prefix.' problem)

            // Create the new topic
            $db->query('INSERT INTO '.$db->prefix.'topics (poster, subject, posted, first_post_id, forum_id) VALUES (\''.$db->escape($first_post_data['poster']).'\', \''.$db->escape($new_subject).'\', '.$first_post_data['posted'].', '.$first_post_data['id'].', '.$fid.')') or error('Unable to create new topic', __FILE__, __LINE__, $db->error());
            $new_tid = $db->insert_id();

            // Move the posts to the new topic
            $db->query('UPDATE '.$db->prefix.'posts SET topic_id='.$new_tid.' WHERE id IN('.$posts.')') or error('Unable to move posts into new topic', __FILE__, __LINE__, $db->error());

thank you for your help i'm so happy

i fix the problem myself lol it's very good the DEBUG_MODE smile

Offline

#14 2009-05-18 00:45:15

x3dt
Member
Registered: 2008-05-12
Posts: 36

Re: FluxBB 1.4

There http://i39.tinypic.com/2vl49cy.jpg
it's possible have "merge message" too ??

Offline

#15 2009-05-18 04:43:27

Smartys
Former Developer
Registered: 2008-04-27
Posts: 3,135
Website

Re: FluxBB 1.4

You can merge multiple topics. I'm not sure whether having a "merge message" option would provide any advantages over just editing posts together as necessary.

Offline

#16 2009-05-18 12:12:00

x3dt
Member
Registered: 2008-05-12
Posts: 36

Re: FluxBB 1.4

the normal user don't edit and make 3-4 message on follow
if the modo have a possibility merge message it's awesome

anyway if you see the avantage

Offline

#17 2009-05-18 12:14:45

Smartys
Former Developer
Registered: 2008-04-27
Posts: 3,135
Website

Re: FluxBB 1.4

To be perfectly honest, I don't see users making multiple posts in a row as a problem. It provides a convenient way to split up thoughts. If people are using it to bump (or making other low-content posts), their later posts can just be deleted rather than merged. It's also not very difficult for moderators to merge when necessary. This seems more like something for a modification.

Offline

#18 2009-05-18 12:15:33

FSX
Developer
From: NL
Registered: 2008-05-09
Posts: 805
Website

Re: FluxBB 1.4

@x3dt:
That's done to bump a post and if not you warn the user and remove his posts.

That's what I see on other forums.

Last edited by FSX (2009-05-18 12:16:22)

Offline

#19 2009-05-18 12:28:39

x3dt
Member
Registered: 2008-05-12
Posts: 36

Re: FluxBB 1.4

it's ok anyway .. just a sugjestion not very important and i don't like MOD that broke the forum when you update .. and you need to make MOD everytime when i update ..

Offline

#20 2009-05-18 16:03:41

hcgtv
Member
From: Charlotte, NC
Registered: 2008-05-07
Posts: 419
Website

Re: FluxBB 1.4

Since 1.4 will be the stable branch, will this forum move to it when it becomes stable?


Bert Garcia - When all you have is a keyboard

Offline

#21 2009-05-18 16:22:11

Franz
Lead developer
From: Germany
Registered: 2008-05-13
Posts: 4,070
Website

Re: FluxBB 1.4

Most likely.


fluxbb.de | develoPHP

"As code is more often read than written it's really important to write clean code."

Offline

#22 2009-05-18 16:46:57

MattF
Member
From: South Yorkshire, England
Registered: 2008-05-06
Posts: 1,230
Website

Re: FluxBB 1.4

What's going to happen with mods for 1.4*? Will they be hosted/submitted on here, or will people still be pointed over to Punres?


Screw the chavs and God save the Queen!

Offline

#23 2009-05-18 17:59:28

hcgtv
Member
From: Charlotte, NC
Registered: 2008-05-07
Posts: 419
Website

Re: FluxBB 1.4

MattF wrote:

What's going to happen with mods for 1.4*? Will they be hosted/submitted on here, or will people still be pointed over to Punres?

I contacted Jansson last year about Punres and he's willing to sell the site, since he lacks the time to keep it up. If nobody takes it over, there's no reason that some of the better/popular mods can't be brought over.


Bert Garcia - When all you have is a keyboard

Offline

#24 2009-05-18 19:32:13

Gil
Member
From: France
Registered: 2008-05-10
Posts: 133
Website

Re: FluxBB 1.4

Smartys wrote:

You can merge multiple topics. I'm not sure whether having a "merge message" option would provide any advantages over just editing posts together as necessary.

Just a question: is it possible or planned to be able to move a single post?
With just a single operation; because I think it should be possible with 2 steps, first splitting this message in a temporary topic, then merging the topic with the destination one.

Except if merging and splitting are the same operation: i.e. clicking a single "split/merge" button, then selecting one, several or all posts, then "sending" them in a topic, an existing one (= merge or move) or a new one (= split).

Offline

#25 2009-05-18 20:01:36

Smartys
Former Developer
Registered: 2008-04-27
Posts: 3,135
Website

Re: FluxBB 1.4

It's possible in two operations, not one.

Offline

Board footer

Powered by FluxBB 1.5.0