Search Results for 'updated'
-
Search Results
-
Hello together,
i’ve just updated my installation of bbpress 1.0.2 to the trunk version 1.1-alpha. In the trunk version there is an new option called “Login-less Posting”.
Has anyone tested these function? Is it possible the change without problems from the plugin “Anonymous Posting” to the new core function?
Markus
Topic: New theme: American Bones
A while ago I brought up the idea to make a “Sandbox” theme for bbPress:
http://bbpress.org/forums/topic/sandbox-theme
I ended up doing that and a bit more. I updated Sandbox for WordPress and built a bbPress theme at the same time, so they work well together and if you skin one you can import the styles to the other quite easily.
http://selfevidenthotdogs.com/bones
It’s not as spare as Sandbox, but the colors are easy to remove and the semantics are there. Here’s the bbPress demo
http://selfevidenthotdogs.com/forum/
Let me know what you think.
Topic: Paging not updated
Sometimes, the paging is not updated, after a user posts. This seems to happen only on topics that have one or more deleted messages.
For example, if a topic is supposed to display 20 posts per page, and a user creates the 21st post, the topic will not show “Page 1, 2”.
If I go to ?view=all, there’s no problem.
To trigger the paging update, it’s usually enough to create a new post and then delete it.
Any ideas of why this might be happening?
I’ve updated my bbPress to 1.0.2 and I’ve noticed I can’t update my user profile anymore. On default theme, there there’s no problems, but on my custom theme problems do exists. More than that, I can’t see administration section in profile edit, but on default theme I do see it.
What have changed since 1.0.0 that might caused such problem? I can’t see any different things in default theme that would be missing in my custom theme…
I’d like to remove “forums” and “topics” from bbPress permalinks.
This looks ugly:
http://domain.com/forums/forum/name-of-forum/
http://domain.com/forums/topic/title-of-topic/
Therefore I want this:
http://domain.com/forum/name-of-forum/title-of-topic
Therefore I downloaded a plugin and followed the steps described on this website:
Unfortunately I don’t get it work. I think there are some mod rewrites missing. Unfortunately I am not a mod rewrite expert. Is there anybody who could help me?
Thats the htaccess code which works with the ugly url:
# BEGIN bbPress
Options -MultiViews
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /forum/
RewriteRule ^page/([0-9]+)/?$ /forum/index.php?page=$1 [L,QSA]
RewriteRule ^forum/([^/]+)/page/([0-9]+)/?$ /forum/forum.php?id=$1&page=$2 [L,QSA]
RewriteRule ^forum/([^/]+)/?$ /forum/forum.php?id=$1 [L,QSA]
RewriteRule ^forum/?$ /forum/ [R=302,L,QSA]
RewriteRule ^topic/([^/]+)/page/([0-9]+)/?$ /forum/topic.php?id=$1&page=$2 [L,QSA]
RewriteRule ^topic/([^/]+)/?$ /forum/topic.php?id=$1 [L,QSA]
RewriteRule ^topic/?$ /forum/ [R=302,L,QSA]
RewriteRule ^tags/([^/]+)/page/([0-9]+)/?$ /forum/tags.php?tag=$1&page=$2 [L,QSA]
RewriteRule ^tags/([^/]+)/?$ /forum/tags.php?tag=$1 [L,QSA]
RewriteRule ^tags/?$ /forum/tags.php [L,QSA]
RewriteRule ^profile/([^/]+)/page/([0-9]+)/?$ /forum/profile.php?id=$1&page=$2 [L,QSA]
RewriteRule ^profile/([^/]+)/([^/]+)/?$ /forum/profile.php?id=$1&tab=$2 [L,QSA]
RewriteRule ^profile/([^/]+)/([^/]+)/page/([0-9]+)/?$ /forum/profile.php?id=$1&tab=$2&page=$3 [L,QSA]
RewriteRule ^profile/([^/]+)/?$ /forum/profile.php?id=$1 [L,QSA]
RewriteRule ^profile/?$ /forum/profile.php [L,QSA]
RewriteRule ^view/([^/]+)/page/([0-9]+)/?$ /forum/view.php?view=$1&page=$2 [L,QSA]
RewriteRule ^view/([^/]+)/?$ /forum/view.php?view=$1 [L,QSA]
RewriteRule ^rss/?$ /forum/rss.php [L,QSA]
RewriteRule ^rss/topics/?$ /forum/rss.php?topics=1 [L,QSA]
RewriteRule ^rss/forum/([^/]+)/?$ /forum/rss.php?forum=$1 [L,QSA]
RewriteRule ^rss/forum/([^/]+)/topics/?$ /forum/rss.php?forum=$1&topics=1 [L,QSA]
RewriteRule ^rss/topic/([^/]+)/?$ /forum/rss.php?topic=$1 [L,QSA]
RewriteRule ^rss/tags/([^/]+)/?$ /forum/rss.php?tag=$1 [L,QSA]
RewriteRule ^rss/tags/([^/]+)/topics/?$ /forum/rss.php?tag=$1&topics=1 [L,QSA]
RewriteRule ^rss/profile/([^/]+)/?$ /forum/rss.php?profile=$1 [L,QSA]
RewriteRule ^rss/view/([^/]+)/?$ /forum/rss.php?view=$1 [L,QSA]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^.*$ /forum/index.php [L]
</IfModule>
# END bbPress
Thats the htaccess code which should make pretty urls:
# BEGIN bbPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /forum/
Options +FollowSymlinks
RewriteRule ^tags/([^/]+)/page/([0-9]+)/?$ tags.php?tag=$1&page=$2 [L,QSA]
RewriteRule ^tags/([^/]+)/?$ tags.php?tag=$1 [L,QSA]
RewriteRule ^tags/?$ tags.php [L,QSA]
RewriteRule ^profile/([^/]+)/page/([0-9]+)/?$ profile.php?id=$1&page=$2 [L,QSA]
RewriteRule ^profile/([^/]+)/([^/]+)/?$ profile.php?id=$1&tab=$2 [L,QSA]
RewriteRule ^profile/([^/]+)/([^/]+)/page/([0-9]+)/?$ profile.php?id=$1&tab=$2&page=$3 [L,QSA]
RewriteRule ^profile/([^/]+)/?$ profile.php?id=$1 [L,QSA]
RewriteRule ^view/([^/]+)/page/([0-9]+)/?$ view.php?view=$1&page=$2 [L,QSA]
RewriteRule ^view/([^/]+)/?$ view.php?view=$1 [L,QSA]
RewriteRule ^rss/?$ rss.php [L,QSA]
RewriteRule ^rss/forum/([^/]+)/?$ rss.php?forum=$1 [L,QSA]
RewriteRule ^rss/topic/([^/]+)/?$ rss.php?topic=$1 [L,QSA]
RewriteRule ^rss/tags/([^/]+)/?$ rss.php?tag=$1 [L,QSA]
RewriteRule ^rss/profile/([^/]+)/?$ rss.php?profile=$1 [L,QSA]
RewriteRule ^page/([0-9]+)/?$ ?page=$1 [L,QSA]
RewriteRule ^([^/]+)/([^/]+)/page/([0-9]+)/?$ topic.php?id=$2&page=$3 [L,QSA]
RewriteRule ^([^/]+)/([^/]+)/?$ topic.php?id=$2 [L,QSA]
RewriteRule ^([^/]+)/page/([0-9]+)/?$ forum.php?id=$1&page=$2 [L,QSA]
RewriteRule ^([^/]+)/?$ forum.php?id=$1 [L,QSA]
</IfModule>
# END bbPress
Whats missing in the second htaccess code? It must be something with “page”, “forum” or “topic”.
I apologise in advance if I come across as a newb – in a lot of ways, I am!!
This morning I tried to install (and integrate) BBpress at http://www.serenespirit.com.au, which is running WordPress 2.9. The WordPress side of things was working perfectly until this, so I am lead to believe that BBPress is the most obvious culprit of my problems now, but I have also posted an urgent HELP to the good people on the WordPress forum.
Anyway, long story fairly short, I went through the BBPress install / integration following the instructions at http://bbpress.org/forums/topic/wp-integration-coockie-does-not-work#post-61969. I got to the end of it, tried it out, and it didn’t work. I figured I have missed something, so instead of going back over it step by step I deleted BBPress from the server, updated the cookies on WP using the wp.config file, and reset the cache in my browser.
Here’s where the panic sets in – suddenly, I couldn’t view any of the PUBLIC pages and posts in wordpress (including the home page!) unless I was logged in, either as Admin or another user. EVERY page and post results in a 404. To add insult to injury, I now can not delete or change the status of ANY post or page (I.e from public – private), although I can edit the content.
I have been through the WP forums with a fine comb, tried deleting the WP .htaccess file, resetting permalinks to Default, deactivated all my plugins and reset the AUTH keys in wpconfig a half dozen times, nothing is working.
The only thing I can think of is that something very screwy is going on with the DB, but not knowing enough about it I am really hesitant to start playing with it any more. I understand this really needs to be fixed within WP, but I thought since this only started after my attempt to install BB SOMEONE here might have an idea of even something else I could TRY. I am at a loss, and this is a client’s live website!!
PLEASE HELP!!
Hello folks,
It’s my hope that this thread can help move bbPress Plugin development forward. I’m not a programmer but I use bbPress for two different sites. One site is running v0.9.0.6 and the other is running v1.0.2.
I am considering upgrading my 0.9 forum to 1.0.2, since development is beginning to move forward, and some plugins are getting updated. Before making that decision, I decided to go through all the plugins I currently use in 0.9 and see if they have been updated, or in the very least, tweaked by current users. My method for checking this was to read through all the plugin threads for comments or tweaks, and to test some in my 1.0.2 forum.
I broke my list down to five separate lists:
1) Plugins that work
2) Plugins that work, with some bugs (according to some users)
3) Plugins that don’t work
4) Plugins that work with tweaks/changes
5) Plugins that may or may not work (conflicting info in threads, no comments since v1.x was released, etc)
I will only post lists 2-5.
I welcome your comments. If you have specific comments or tweaks, please post them in the that plugin’s thread (see links below).
Not working:
Move It
http://bbpress.org/plugins/topic/48
Works with bugs:
bbVideo
http://bbpress.org/plugins/topic/bbvideo/
Members Online
http://bbpress.org/plugins/topic/members-online/
Not sure if it works:
BBcode Lite for bbPress
http://bbpress.org/plugins/topic/bbcode-lite/
bb Topic Views
http://bbpress.org/plugins/topic/bb-topic-views/
BBcode Buttons Toolbar
http://bbpress.org/plugins/topic/bbcode-buttons/
Topics Per Page (a.k.a. Front Page Topics)
http://bbpress.org/plugins/topic/front-page-topics/
New User Notification
http://bbpress.org/plugins/topic/new-user-notification/
Post Count Plus
http://bbpress.org/plugins/topic/post-count-plus
Unread Posts
http://bbpress.org/plugins/topic/unread-posts/
Works with additional fixes in plugin thread:
Admin add user
http://bbpress.org/plugins/topic/admin-add-user/
Approve User Registration
http://bbpress.org/plugins/topic/approve-user-registration/
bbPress Attachments
http://bbpress.org/plugins/topic/bb-attachments
Plugin Browser for bbPress:
http://bbpress.org/plugins/topic/plugin-browser-for-bbpress/
Topic: "Sandbox" theme
What bbpress really needs is it’s “SANDBOX” theme. This was the groundbreaking wordpress theme that really took the platform to another level by giving themers a “clean slate” on which to work.
I recently updated Sandbox for wp 2.9 (http://selfevidenthotdogs.com/sandbox/) and have a mind to create something similar for bbpress. This will take some time, I’m no genius.
If someone else is working on this already, please let me know, we can work together on it.
Hi,
So far from browsing the forums, there is a somewhat minor issue regarding WordPress and bbPress when it comes to shared cookies and logins. Here is what happens:
WordPress Login = WordPress Dashboard
bbPress Login = WordPress Dashboard
Wordpress Login != bbPress Dashboard <– Problem
bbPress Login = bbPress Dashboard
So basically whenever I login via WordPress (there is a main site login form in the header), I can access the forums and it even shows I am logged in however when I click “Admin”, I am redirected to the forum index.
Other forum posts which didn’t have a solution (in my case atleast):
http://bbpress.org/forums/topic/cant-access-admin-dashboard
http://bbpress.org/forums/topic/forumbb-admin-redirects-me-to-forum
http://bbpress.org/forums/topic/forumsbb-admin-just-redirects-me-to-forums
http://bbpress.org/forums/topic/admin-link-redirects-to-front-page
http://bbpress.org/forums/topic/admin-link-doesnt-take-me-to-dashboard
Things I’ve tried:
Going directly to the mysite.com/forums/bb-admin/index.php
Checked all hash keys and other wp/bb-config.php stuff
Updated to the latest WordPress and bbPress
Deactivated all plugins (I only had Akismet and reCAPTCHA bbPress anyway)
Clearing cache (Firefox)
Trying in another browser (Internet Explorer)
Does anyone have a clear cut solution? Most people are happy with just using bbPress to get to the admin panel but it would be nice if it worked.