Forums

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

You are not logged in.

#1 Re: General support (1.4 / 1.5) » Why FluxBB Does not have WYSIWYG or something like that? » 2012-05-20 19:35:54

Mark

quote from about page

FluxBB was conceived and designed to be fast and light with less of the "not so essential" features that some of the other forums have whilst not sacrificing essential functionality or usability.

#4 Re: FluxBB discussion » Changed files in v1.5 » 2012-05-05 16:18:43

Mark
Studio384 wrote:
arw wrote:

between 1.4.8 and 1.4.9 ( https://github.com/fluxbb/fluxbb/compar … uxbb-1.4.9 ) there only seems to be this change in language file :
https://github.com/fluxbb/fluxbb/compar … .9#diff-32

Thanks, but I need the change between 1.4.0 and 1.4.9.

https://fluxbb.org/download/releases/1. … 1.4.0.html

#5 Re: Feature requests » A Text Messageing system For FluXbb! » 2012-05-01 18:51:50

Mark

what kind of notifications would you want to send? wouldnt this cost some money to send the text messages in the first place?

#6 Re: FluxBB discussion » FluxBB 1.5 --> Worpdress integration » 2012-04-30 13:58:43

Mark

include/user is fluxbb not wordpress

#8 Re: General support (1.4 / 1.5) » "Error: Unable to fetch guest information." » 2012-04-29 20:18:18

Mark

go to phpmyadmin, and check your online table and see if last_post is there.
by looks of that, it doesnt appear to be

#9 Re: Announcements » FluxBB 1.5-beta released » 2012-04-28 14:24:16

Mark
heartcall wrote:

As some of you know... I was finally able to integrate my FluxBB into my site.  Will this upgrade affect my design/theme?

No, the style hasn't been changed.

#10 Re: General support (1.4 / 1.5) » Permission page » 2012-04-21 19:25:46

Mark

its in the lang files. lang/English/common.php i think

#12 Re: General support (1.4 / 1.5) » News system » 2012-04-19 17:56:58

Mark

You need to define pun_root properly. Info in the link I posted above.

#14 Re: General support (1.4 / 1.5) » News system » 2012-04-19 17:42:49

Mark

Does the error go when you put in $forum and $news?
If not, enable debug mode and paste the full message here (In English!!)

#15 Re: General support (1.4 / 1.5) » News system » 2012-04-19 17:29:20

Mark

i do not know what that message is, its nothing to do with the code i gave you.
to define $forum and $news put them before the code i gave you

$forum = 1; // Change to what ever the forum id is for your news
$news = 1; // Change for how ever many news items you want to display

#16 Re: General support (1.4 / 1.5) » News system » 2012-04-19 17:12:56

Mark

Make sure you have defined your pun_root and included common.php and it will output your news.

You will need to define $forum and $news too.

$forum is where your news is coming from
$news is how many news posts to display

#17 Re: General support (1.4 / 1.5) » News system » 2012-04-18 20:04:15

Mark

you just want like the first post from a specific category to display on the first page?
if so, check out this code. you may need to tweak it abit, its what i have on a site im doing atm.

<?php
// Retrieve News From Database
$db_news = $db->query('SELECT t.id, t.subject, t.forum_id,  p.topic_id, p.poster, p.poster_id, p.message, p.hide_smilies, p.posted FROM '.$db->prefix.'topics AS t INNER JOIN '.$db->prefix.'posts AS p ON t.id=p.topic_id AND p.posted=t.posted INNER JOIN '.$db->prefix.'users AS u ON u.id=p.poster_id INNER JOIN '.$db->prefix.'forums AS f ON f.id=t.forum_id WHERE t.forum_id='.$forum.' AND t.moved_to IS NULL AND f.redirect_url IS NULL ORDER BY t.posted DESC LIMIT '.$news) or error('Unable to fetch the news', __FILE__, __LINE__, $db->error());
                  
if ($db->num_rows($db_news))
{
    while($news = $db->fetch_assoc($db_news))
    {
        // Set Some Variables
        $message = parse_message($news['message'], $news['hide_smilies']);
        $subject = pun_htmlspecialchars($news['subject']);
        $poster = '<a href="profile.php?id='.$news['poster_id'].'">'.pun_htmlspecialchars($news['poster']).'</a>';
        $date_posted = format_time($news['posted'], true, 'jS M y');
        $news_id = intval($news['id']);
		
echo '<div id="content_main">
		<h3><span>'.$subject.'</span></h3>
		<p>'.$message.'</p>
		<p>Posted by '.$poster.' - '.$date_posted.'</p>
		<p><a href="forum/viewtopic.php?id='.$news_id.'">Comment</a></p>
	  </div>';

    }
}

#18 Re: General support (1.4 / 1.5) » Adding New Fields To The User Registration » 2012-04-17 10:12:27

Mark

what kind of field do you want? i'll help you out

#19 Re: Modifications (1.4 / 1.5) » I need help with the Warning mod » 2012-04-10 17:34:27

Mark

Enable debug mode and paste the full message

#21 Re: Modifications (1.4 / 1.5) » How can I change lengths of topic subject and how many topics per page » 2012-04-09 18:19:58

Mark

why would you want to raise it so much? it will take a while to load then

#22 Re: Modifications (1.4 / 1.5) » Mods which do not work with FluxBB 1.4.8 » 2012-04-09 03:07:16

Mark

if you downloaded some of these mods and look at the code, they actually will work with 1.4.8, just not with the mod installer.

#23 Re: Modifications (1.4 / 1.5) » Mods which do not work with FluxBB 1.4.8 » 2012-04-08 19:03:12

Mark

Can you  not put all of them in 1 post instead of making a new post for them all?

#24 Re: General support (1.4 / 1.5) » Forum help » 2012-03-17 11:23:54

Mark

Sure send me an email using the email link and i'll help you.

#25 Re: General support (1.4 / 1.5) » Cant get topic counter to work » 2012-03-17 11:23:18

Mark

What is var_dump($tracked_topics['topics']); showing?

Board footer

Powered by FluxBB 1.5.0