Search Results for '+.+default+.+'
-
Search Results
-
I recently noticed that when I try to start a topic or posting a reply, it’s taking about 30+ second before the topic/reply is show up. If you try to tell me there may be a “bad plugin” and try to disable all of it except bbPress, save it. I have tried the following:
1. Using different browser.
I find out that when I try to use Firefox 12.0 to post, it’s loading extremely slow. But this is not happening in Internet Explorer 9 or Google Chrome 18.
Try to start Firefox in safe mode? Yes I have tried to do that but it doesn’t make a difference.
2. Using different user/computer.
It’s still the same.
3. Try to post a comment in a normal post.
I was able to comment a post without any problems, so I think it may be a “bad plugin” problem.
4. Disable all plugin (except bbPress & BuddyPress)
But the same thing happen. FYI I don’t edit either the bbPress or BuddyPress files.
5. Using different theme.
I replace my modified custom community theme with BuddyPress Default theme and see if I putting bad codes in my theme. But this doesn’t solve problem even I tried other themes.
6. Change permalink structure.
It doesn’t make any changes, and I don’t think it will help.
7. Reinstall WordPress, bbPress & BuddyPress
Still doesn’t make any changes.
8. Create a new install in another domain.
I use http://scirefs.com/ as my main and http://www.scirefs.org as a sandbox (with the same configuration as in SCIREFs.com) with only bbPress and BuddyPress activated. But everything works fine in SCIREFs.org with either bbPress 2.02 or 2.1 and I have no issue with Firefox 12.
9. The Cloudflare……
Since I have Cloudflare as my CDN for SCIREfs.com but not SCIREFs.org, I tried to remove SCIREFs.com from Cloudflare and add SCIREfs.org to it and see what happens. The result: The issue with Firefox at SCIREFs.com disappear but SCIREfs.org is now facing the old issue.
Do anyone here have any ideas what’s wrong with it? Or someone here is facing the same problem? This seems to be the first and the only problem I can’t figure it myself.
You can login to SCIREFs.org using the following information:
Username: demo
Password: demo
URL of the forums: http://www.scirefs.org/test-forums
And try to start a topic or post a reply using Firefox and see if it’s happening to you.
Topic: How to contribute a bug fix?
Hello,
I installed bbpress and I really like it.
I found that there is an alignment issue that is caused by the return of the bbp_reply_class function for the default theme bbp-twentyten.
I noticed that others were having the same problem.
So I fixed it in my version and would like to submit my bug fix…
How do I go about doing that for this project. I have never contributed a patch to an open source project before but would like to submit this bug fix.
Thanks for your help.
Hi — I’m trying to add BBPress to my WordPress blog. I’m currently running Genesis, Prose theme (although that may change soon). My BBPress version is 2.21+, and I’m also trying to use Genesis Extend (I think successfully) and, at the author’s suggestion, I am trying to use the bbPress Custom CSS File. The immediate thing that I’m trying to do is to rearrange and remove some of the forum column headings. The default is:
Topic / Voices / Posts / Freshness
I’d like to change that to
Topic / Posts / Author
And include information in the Topic column about what category it’s in, as well as include Freshness data in the Author column.
Is there an easy way to do this, or is this all CSS Styling? (Or should I try to find a bbPress theme I like?)
The NEXT question then becomes, um… does anyone know where the bbPress Custom CSS File is? I poked around a bit in FTP and couldn’t find it. Do I have to generate it myself and upload it? Do I stick the file in the Prose theme folder, the Genesis theme folder, or the bbPress folder? Or the bbPress Custom CSS File plugin folder?
Many thanks in advance!
Hi, when I installed my Site Wide forum I saw this, “■Place the ‘bbpress’ folder in your ‘/wp-content/plugins/’ directory.”
But, have no idea how to ■Place the ‘bbpress’ folder in your ‘/wp-content/plugins/’ directory. Any advice?
I need someone who has created themes integrated with a WP site theme before – basically I want a cleaner theme than the default bbPress style, and that is integrated properly with my WP theme.
I am using the bbPress plugin for WP. Let me know how to contact you .THanks.
Hello friends,
I’m trying to import the BBPress theme into my main theme, Vithy. I’ve tried it once, it did not work at all. The only thing what occurred is that the whole website was blank except for the header.
I’ve followed the manual how to do it the right way but still having issues.
This is what i did:
1. Moved all of the files including folders from “bbp-twentyten” to “wp-content” -> “themes” -> “vithy” .
2. Added “add_theme_support( ‘bbpress’ );” to functions.php
No result. Am i missing something? I have already changed some looks of the default theme.
To view my website (its hidden, you need to log in with this normal user)
address: http://dutchlimitsstudio.com/wp-admin/
user: public
pass public@user
I’ve already put everything back to the default folders like it was! So it isn’t done yet!
I have spent countless hours trying to solves this but im still having no luck. I have trawled through google and the bbpress forum but can’t seem to find a solution.
While updating a website for a client they asked for buddpress to be removed as no one was using the social network side of the site, and a stand alone forum be put in place, hence bbpress.
I started off by removing the buddypress plugin and all it files, deleted the bb-config.php and dropped all the tables in the database with the prefix wp_bp.
I installed the latest bbpress plugin from within the wordpress admin and activated it, then created a few test forums and topics.
The forum displays fine when the default permalink structure is used however when I turn pretty permalinks on all the pages go to a 404 page not found.
I have tried adding Options +Multiview and Options -Multiview to the .htaccess. I have tried setting the bbpress mod_rewrite to true and false but still no luck.
I have also tried chmod 777 the .htaccess file.
Here is my .htaccess file:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
# BEGIN ANTISPAMBLOG REGISTRATION
RewriteCond %{REQUEST_METHOD} POST
RewriteCond %{REQUEST_URI} .join-hello*
RewriteCond %{HTTP_REFERER} !.*helloecoliving.com.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^$
RewriteRule (.*) http://helloecoliving.com/spam-prevention [R=301,L]
# END ANTISPAMBLOG REGISTRATION
#uploaded files
RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
RewriteRule ^(.*/)?files/(.*) wp-includes/ms-files.php?file=$2 [L]
# add a trailing slash to /wp-admin
RewriteCond %{REQUEST_URI} ^.*/wp-admin$
RewriteRule ^(.+)$ $1/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule . – [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*.php)$ $2 [L]
RewriteRule . index.php [L]
</IfModule>
<IfModule mod_security.c>
<Files async-upload.php>
SecFilterEngine Off
SecFilterScanPOST Off
</Files>
</IfModule>
<Files 403.shtml>
order allow,deny
allow from all
</Files>
deny from 93.182.137.19
This is driving me crazy all my other custom post types work!
Any help is appreciated!
hi~ bbPress is really great and I do love it. however, when i transferred my wordpress to a new server. something bad happen.
when I enable the bbPress, an error message shows up:”Warning: Creating default object from empty value in
webwp-contentpluginsbbpressbbp-includesbbp-core-compatibility.php on line 84″I guess it has something to do with this code ‘$bbp->theme_compat->theme = $theme;’
could anyone give me some instruction?
the theme i use is the default Twentyeleven Century.
thanks a lot in advance!
Hi everyone. I’ve seen this come up a lot after having googled these issues but didnt find a consistent answer (e.g. some were from like 2009-2010 dealing with older versions.
I’ve tried numerous things and I still get the common messages at the bottom of this post when going to Appearance/Themes from WP admin.
1. This was a clean bbPress plugin install, latest version, done just a few days ago.
2. Immediately after install, I saw the messages below when clicking the Themes link. I had not moved/changed anything. Seems this comes up, strange that the default bbpress plugin install creates these two error messages by default?
3. I’ve tried copying the files/subfolders from the bbp-twentyten theme to the root directory of my custom theme and adding **add_theme_support( ‘bbpress’ );** (minus asterisks) to the functions.php of my custom theme. That got rid of the first error message, but the forum appearance was screwed up and definitely not correct, and the second error message about a Broken Theme was still there.
4. I did not overwrite the style.css in my custom WP theme folder when I copied the bbp-twentyten files over. I assume I DO need to copy that stylesheet somehow, but how do I do it without overwriting my WP theme’s stylesheet?
5. I do have key master and file/directory permissions are fine.
6. Copying bbp-twentyten to the my-templates subfolder within the bbpress plugin directory (and of course bbp-twentyten was 755 I checked) still yielded nothing, the two messages at the end of the post still appeared.
Sorry if this is are common issues. I’ve tried some of the suggestions I saw in past posts and they are not working. Any help appreciated. Thanks.
ERROR MESSAGES BELOW:
“Your active theme does not include bbPress template files. Your forums are using the default styling included with bbPress.”
“Broken Themes
The following themes are installed but incomplete. Themes must have a stylesheet and a template.
Name Description
bbPress (Twenty Ten) The parent theme is missing. Please install the “twentyten” parent theme.”