Published on July 10th, 2012 by Starejosel
I was using the bbP Topic Views plugin, and it was fine; I had some other issues (speed and memory) and asked the host to migrate the site from windows to linux–and started getting the following strange errors when I clicked on a topic–even though the counting of views was still working:
Warning: session_start() [function.session-start]: open(/var/chroot/home/content/82/8351782/tmp/sess_2aorcel9g0ujkp4lkmd61nde50, O_RDWR) failed: No such file or directory (2) in/home/content/82/8351782/html/whup/wp-content/plugins/bbp-topic-views/bbp-topic-views.php on line 76
Warning: session_start() [function.session-start]: Cannot send session cache limiter – headers already sent (output started at /home/content/82/8351782/html/whup/wp-content/plugins/bbp-topic-views/bbp-topic-views.php:76) in /home/content/82/8351782/html/whup/wp-content/plugins/bbp-topic-views/bbp-topic-views.php on line 76
Warning: Cannot modify header information – headers already sent by (output started at /home/content/82/8351782/html/whup/wp-content/plugins/bbp-topic-views/bbp-topic-views.php:76) in/home/content/82/8351782/html/whup/wp-includes/pluggable.php on line 881
Warning: Unknown: open(/var/chroot/home/content/82/8351782/tmp/sess_2aorcel9g0ujkp4lkmd61nde50, O_RDWR) failed: No such file or directory (2) in Unknown on line 0
Warning: Unknown: Failed to write session data (files). Please verify that the current setting of session.save_path is correct () in Unknown on line 0
Published on July 10th, 2012 by RobyXD
Hey guys, today I installed bbpress on my wordpress blog. But I suddenly face a problem. After i entered mydomain.com/forums i say all the categories. Then when i click on a category it opens a page with this write :
Catchable fatal error: Object of class WP_Error could not be converted to string in /home/mileyray/public_html/wp-content/themes/especial/libraries/breadcrumb.php on line 88
the line that it underlines is: echo get_category_parents($ID, TRUE, $markup, FALSE );
I’m using the latest version of wordpress 3.4.1
Please help me! Thx in advance.
Published on July 10th, 2012 by geertvdijk
Hello community,
I am doing some work for a client (www.autoedizione.nl), unrelated to bbpress, but all of a sudden, after updating bbPress, links to categories are very strange.
In the menu, there are links to category pages which are (simply put) site.domain/category, and these worked fine before update. After the update, they are redirected to site.domain/forums/forum/category.
The links in the menu are generated by WordPress, using get_category_link($id), with the correct $id.
Is there any way to fix this? It’s wreaking havoc for the site. By the way, links to pages that are formatted similarly (site.domain/page), still work.
Published on July 10th, 2012 by pimarts
Asking JJJ on Twitter is probably not the best way, so let’s open a topic here:
I installed 2.1 on swnk.org the other day, after styling it a bit in a beta environment I put it live today. I have 2 questions though:
-
Can anyone confirm that the “Topics Replied To” tab in the user profiles is supposed to be empty? Just displayed:none that tab for now 😉
-
The recent replies widget used to include new topics too. Not anymore. Is that a bug or a choice that was made? It was perfect for me the way it was, but if I should go for the recent topics widget (with the Topics with recent replies option), is it possible to get a layout like the recent replies widget? Any suggestions?
Aside from that 2.1 seems great so far. Thanks for including the bbp_get_user_topic_count_raw functions, got a request for that the other day 🙂
Published on July 10th, 2012 by thatposhgirl
I want to run a contest where a random topic created during a specified date range wins a prize. Is there a plugin that can pull a “random” topic out of the database?
Published on July 10th, 2012 by leew4jc
I am trying to find a way to create groups of users in WordPress and allow only certain groups access to certain forums.
Can anyone suggest a way of doing this using bbPress and other plugins only? I don’t want to use BuddyPress.
Published on July 10th, 2012 by markusbb
Hi guys
I am installing the bbpress plugin, deactivating all other plugins, go to Tools > Import but I cannot find the BBpress Standalone tool there. Any ideas ?
Thank You
Published on July 10th, 2012 by ryanburgeriowa
I want to show latest threads from our bbpress installation in the first forum on our homepage http://www.3xwrestling.com/new in a widget if possible and also on http://www.3xwrestling.com/new/3xw-interact/
Can someone please help me on how I do that integration between wordpress and bbpress.
Published on July 10th, 2012 by ericreynolds007
This might be a theme issue, not certain. I am using Rockettheme’s Tachyon Buddypress theme which requires the Gantry Buddypress plugin to work seamlessly. I am working in MAMP Pro and have the memory jacked up to 256MB.
With bbpress 2.0.3, my Buddypress pages are displaying correctly. But, with the 2.1 and 2.1-rc4 update installed, the Buddypress pages display without the theme’s CSS. Just basic hyperlinks on a white background.
I return to bbpress 2.0.3, and things work well. Any suggestions?
Eric
Published on July 9th, 2012 by vmodha
I’m trying to sort the display of the forums depending on the number of topics within the forum. Could somebody help me with a query for this? I’ve tried using a custom query but just cant seem to get it right.
I know there’s a PHP function bbp_forum_topic_count() but I need this all within one loop, not PHP.
Any help would be much appreciated.
This was how far I got with my custom query:
SELECT SQL_CALC_FOUND_ROWS wp_posts.*, topics.total FROM wp_posts, (SELECT COUNT(wp_posts.ID) as total FROM wp_posts) topics WHERE 1=1 AND wp_posts.post_type = ‘forum’ AND (wp_posts.post_status = ‘publish’ OR wp_posts.post_status = ‘hidden’ OR wp_posts.post_status = ‘private’)