forum/my-plugins/topic-icons/icons/bbpress.png
it’s in the folder but all I get is “Error 403 – Forbidden You tried to access a document for which you don’t have privileges.”
What should the permission be for:
my-plugins?
topic-icons?
icons?
individual files?
Someone integrated wordpress with bbpress. Now admin panel for the bbpress shows only users, topics and posts. Is it possible to fix it ? Is there a way to manually (by the phpmyadmin) activate new plugins ?
To go deeper into that code a code that does “forumS” for more than one and “forum” for just one?
$tf = get_total_forums();
printf(__ngettext('Viewing %d forum', 'Viewing %d forums', $tf), $tf);
functions.bb-statistics.php isn’t automatically included. The statistics.php file (https://trac.bbpress.org/browser/tags/1.0.2/statistics.php#L5) does include that file as well.
Okay I will have on my header the Forum Names as “Pages”
Installation – Troubleshooting – Themes – Plugins – etc
When I’m on the Troubleshooting page (https://bbpress.org/forums/forum/troubleshooting) the class of trouble shooting will be “selected”.
<li><a href="https://bbpress.org/forums/forum/installation">Installation</a></li>
<li><a href="https://bbpress.org/forums/forum/troubleshooting" class="selected">Trouble Shooting</a></li>
make sense?
You’re right. I had a different experience though:
I didn’t even know there was an “undelete topic” function. I deleted this topic, with your one post. Then I undeleted the topic in the admin, and while it was undeleted, there were no posts in it. So i was able to view a topic with no posts in it. When viewing that as moderator, I was able to undelete the post and then it was visible.
I’d say this is worth opening a ticket at trac.bbpress.org but I would like to see if we have two different problems here.
Might maybe be related to this as well:
https://trac.bbpress.org/ticket/1150
Derek, it’s not a common problem that happens with all installations, so it’s something specific to your setup. Can you upload the bbPress files again to overwrite the ones you have there now, to ensure that they were all transferred properly?
What version did you install? Was it installed over FTP or svn or something else? Anything interesting about your hosting setup (Windows, localhost, etc?) What is the PHP version?
Also, it’s just a warning, not an error. PHP warnings should not be displayed in the browser. Maybe that warning is masking what the true problem is? You can turn off PHP warnings and maybe then see if the forums work correctly? Eliminating the warning might just require a ticket at trac.bbpress.org to address, once we have more information about your hosting setup.
Is this a WAMP server with PHP 5.3.x?
There was a plugin called Read Only forums too, which would do what you want I think:
https://bbpress.org/plugins/topic/read-only-forums/
That was good for up to 0.9 as well. Might need modification to work with 1.0.
bbPress and WordPress just add a digit to the end of the permalink to ensure the new one is unique.
if I delete a topic, then go back to the topic via the admin panel in order to ‘undelete’ the topic, it doesn’t work.
On clicking ‘undelete entire topic’ I am forwarded to a blank screen at a url in this format (had to break it up to fit on the page):
/bbpress/bb-admin/delete-topic.php?
id=2090&view=all&_wp_http_referer=/bbpress/topic.php
%3Fid%3D2090%26view%3Dall&_wpnonce=be30703be1
this is the case with no plugins installed and default template. Any ideas? I couldn’t find this issue anywhere on the forums already.
Hi, I’m making a navigation and was looking for help with highlighting the links, depending what page/forum you are on.
I have a homepage nav link like:
<a href="/forum">Mainpage</a>
how can I add class=”current” and highlight the link when on the mainpage?
I also run a list of the forums in a similar style
<?php foreach ( $forums as $forum ) : ?>
<a class="forum-link" href="<?php forum_link( $forum->forum_id ); ?>"><?php forum_name( $forum->forum_id ); ?></a>
<?php endforeach; ?>
Is there a way to add class=”current” depending on what forum the user is browsing?
I know this can be done on wordpress, but I dont know the functions for bbpress yet, and good info is far and wide.
based on http://bbpress.org/plugins/topic/improved-spoiler/
instead only using css my mod using javascript based on spoiler plugin vbulletin
here is the php mod http://pastebin.com/ReTD7eJE
and this is the final look
http://i40.tinypic.com/2h5qlg8.png
you need to add this in your css template file
.spoilerbg {width:auto;height:auto;background:#e1e4f2;border:1px inset;padding:5px;}
the problem now, the Improved Spoiler Plugin doesnt build for nested spoiler like
the first spoiler will be broken, diffrent from vbulletin spoiler plugin
I installed a fresh version of bbpress 1.0 at http://forums.moochyschwag.com/
I made a new post. Then I replied to the post. Then the reply form disappeared and the reply I made isn’t showing. It’s showing in the ADMIN area, but not on the forum. Thoughts?
Two part question
1. Is there a code to imitate wp_list_pages(‘title_li=’) with the forum names?
result in…
<li><a href="http://bbpress.org/forums/forum/installation">Installation</a></li>
<li><a href="http://bbpress.org/forums/forum/troubleshooting">Trouble Shooting</a></li>
etc etc…
2. How do you add class=selected to current forum page?
Is there a way to limit the amount of latest discussion shown on the front page? There are currently 30 of them and I want to cut that number down to 10-15.
http://gmauthority.com/forum/
Long live bbPress!
So I was just browsing around WordPress.org support forums and noticed the way they have their text entry box set up.
It contains the standard markup as we have on bbPress (installable) but it’s clickable by the user, with the resulting clicks being reflected in the text entry box. Here’s what I mean http://wordpress.org/support/topic/384052?replies=5
I’m talking about the b i link buttons at the top of the text entry box.
My question is whether we have and/or can do something similar with our own bbPress installs. I know we have TinyMCE and – most recently – WYSIWYG editor, but this is a bit different as it outputs the markup for you.
can you show me your bbpress web?
in .htaccess add
RewriteRule ^attachments/([^/]+)/download/([0-9]+)/inline/?$ /?bb_attachments=$1&bbat=$2&inline [L,QSA]
RewriteRule ^attachments/([^/]+)/download/([0-9]+)/?$ /?bb_attachments=$1&bbat=$2 [L,QSA]
in bb-attachments.php line 234 edit like this
if ($attachment->status==0) {
$output.=" "."<a href='".$uri."attachments/$attachment->post_id/download/$attachment->id/'>".$attachment->filename."</a> "." ";
}
in bb-attachments.php line 289
if (file_exists($fullpath)) { // it's been resized, so it's likely on AWS, show directly
$aws=$bb_attachments['aws']['url'].$file->id.'.'.$file->filename;
$replace="<a class='bb_attachments_link' href='".$uri."attachments/".$match[1]."/download/".$match[2]."'><img src='$aws' /></a>";
if (is_bb_feed()) {$replace=wp_specialchars($replace);}
$text=str_replace($match[0],$replace,$text);
}
in bb-attachments.php line 298
http://pastebin.com/gDG523R2
so now your attachments have permalink like this
example.com/attachments/*postid*/download/*attachmentid*/
and embed image url
example.com/attachments/*postid*/download/*attachmentid*/inline/
Related thread : http://bbpress.org/forums/topic/on-attachment-file-permalink