You are not logged in.
- Topics: Active | Unanswered
#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.
#2 Re: General discussion » How can I upload French language pack for 1.5.0 » 2012-05-20 19:23:51
- Mark
Read what it says here
#3 Re: Feature requests » Add a Sub Catogory for Pramoting some good FluxBB forums! » 2012-05-09 18:10:25
- Mark
is this not what show off is for?
#4 Re: FluxBB discussion » Changed files in v1.5 » 2012-05-05 16:18:43
- Mark
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-32Thanks, but I need the change between 1.4.0 and 1.4.9.
#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
#7 Re: General support (1.4 / 1.5) » "Error: Unable to fetch guest information." » 2012-04-29 20:58:34
- Mark
as smarty says, you need to update your database.
#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
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
#11 Re: General support (1.4 / 1.5) » News system » 2012-04-19 22:09:41
- Mark
your right with that
#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
#20 Re: Modifications (1.4 / 1.5) » how do you install modinstaller? » 2012-04-09 19:43:46
- Mark
read the readme?
#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?
