Search Results for 'test'
-
Search Results
-
Hello all. I am a complete newbie here so plz excuse me if I ask a totally naive question.
We have a test wordpress 3.4.2 multisite/subfolders:
http://multiroot.com, http://multiroot.com/site01, http://multiroot.com/site02, etc
The live site will also be using mapped domains: http://client01.com, http://client02.com etcThe multisite will be packed with plugins, themes and hopefully sites, 🙂
So, we want to have the bbpress v2.1.2 installed in a subdomain (separate single wordpress site) on a db of its own, handling all the bbpress plugins and themes. http://bbpress.multiroot.comThe question is this: Can we have users that log (in/out) to their sites be automatically logged (in/out) the bbpress forums as well and vice-versa?
If yes, how can we do it and what possible plugins (maybe) to use to synchronize this kind of behavior between the two databases?
Bonus question. After logging in could they create forum/s that can be linked to their sites -mapped or non mapped? (I don’t even know if this “sounds” right).
Thank you in advance,
marikamitsosHi, Can you help? In bbpress my favorites link returns page not found. http://www.thsotestsite.dev/members/admin/forums/favorites/ the rest of forum works fine.
The favorites in BuddyPress work fine http://www.thsotestsite.dev/members/admin/activity/favorites/
And Yes running both Group and site wide forums and are playing nice together for the most part:)
WordPress: Current version
BuddyPress: Current version
bbPress: Current version
Theme: Frisco and BuddyPress Default Both have same results
all running on my dev. server (DesktopServer)Is this a bug or config problem?
can anyone give clue how to fix this?
Thanks
JamesI have an older non-plugin version of bbpress and was wondering how I go about updating it? Is there only a plug-in now? If so how do I transfer from the standalone version to the plug-in version?
Any and all help is appreciated!
John.
Topic: Cache problem ?
Hi all,
I ask your help beacause I’ve already tried everything that I knew before to make a query work in few seconds
I’m on BP 1.5.5/
Before, everything was working well, but one day, access to our forum became very very long (170 s average).
After many tests, I think that it’s a cache problem.Here is two queries that make me think that :
SELECT t.*, g.id AS object_id, g.name AS object_name, g.slug AS object_slug
FROM wp_bb_topics AS t
INNER JOIN wp_bb_posts p ON p.topic_id=t.topic_id AND p.post_time=t.topic_start_time
JOIN wp_bp_groups AS g
LEFT JOIN wp_bp_groups_groupmeta AS gm ON g.id = gm.group_id
WHERE (gm.meta_key = 'forum_id' AND gm.meta_value = t.forum_id) AND g.STATUS = 'public' AND t.topic_status = '0'
ORDER BY t.topic_time
LIMIT 20And the same without the “LIMIT”
SELECT t.*, g.id AS object_id, g.name AS object_name, g.slug AS object_slug
FROM wp_bb_topics AS t
INNER JOIN wp_bb_posts p ON p.topic_id=t.topic_id AND p.post_time=t.topic_start_time
JOIN wp_bp_groups AS g
LEFT JOIN wp_bp_groups_groupmeta AS gm ON g.id = gm.group_id
WHERE (gm.meta_key = 'forum_id' AND gm.meta_value = t.forum_id) AND g.STATUS = 'public' AND t.topic_status = '0'
ORDER BY t.topic_timeThe first (with LIMIT) take 150 secondes (At the beginning, it was working well).
But the second (without LIMIT) takes 1.5 secones !!!!When I’m in PHPmyADMIN, the “show full processlist” tell “copy to tmp table” during the 150 secondes.
So my question is :
Is there a cache limit I’ve reache with my DB (20.000 topics) ?
Where I’ve to modified (I think in my.cnf), and what is the value to put (I’ve make a lot of test, without good results)?Thank you very much !
Bye
Topic: No bb-load in download
Hi,
I have installed BBPress from http://wordpress.org/extend/plugins/bbpress/
to the latest version.Ideally what I want to do is create custom pages which uses BBPress, an example of doing this I found is http://bbpress.org/forums/topic/heres-how-to-show-bbpress-info-inside-wordpress-without-full-integration/page/2/
If I create a custom template and page from WordPress BBPress functions do not work. Other forums have mentioned including bb-load.php but from the download link from above there is no bb-load.php in the zip file.
From looking at the second link there suggests that new tables for BBPress would be in the database, however I have no new tables just standard WordPress ones and BBPress posts stored in wp-Posts
Is this correct?
I am trying for example to create a page (customized page) where a user can enter their post and then choose what topic etc. they want to post from a drop down box. However I don’t know how to go about this.
Thanks in advance.
Topic: Creating a nice lay-out
We are using WordPress 3.4.2 and latest BBpress and Twenty eleven them and got it to look like this on our website: http://scotpcg.org/member-area/forums/
However, we would like it to look like this: http://www.polyclay.co.uk/
The different forums nicely displayed with different headers so there is a clear distinction.Our forum is for members only – so past the first page a member sign up will show up (which is not active as yet). If you can help us with the lay-out we can create a temporary access.
Many thanks.
ChrisI have a forum with the latest bbPress called “Windows 8” and then when I tried to create a page called “Windows 8” and WordPress saves it a duplicate page, because of the forum with the same name. Is there a way to keep forums slugs away from WordPress?
Thanks,
Hello! I’m helping a friend with his website. He’s trying to make a community for investors. We’re having trouble with the bbPress forums. You can see that http://investorswap.com/board/forum/general-stock-talk/ works, but if you go up a level to http://investorswap.com/board it is showing the category and boards, but they aren’t clickable. I’ve never used bbPress or BuddyPress before this, so I’m pretty lost. Any help would be very appreciated! This is intended to be a site-wide forum and not group specific.
Using the latest version of WordPress, bbPress, and BuddyPress!
Thanks!
I have a custom WP_Query outside the main loop, in my header.php, and also another one in footer.php. On my Forums List page (the top/base level of bbPress that lists all my Forums), the custom WP_Query in both header.php and footer.php, no longer works. It shows another instance of the bbPress Forums List, instead of showing the correct content (as it does on every other page of my site, including all other bbPress pages). My custom WP_Query is
$args = array(
'post_type' => 'page',
'page_id' => 218
);
$the_query = new WP_Query( $args );
while ( $the_query->have_posts() ) : $the_query->the_post();the_content();
endwhile;
wp_reset_postdata();I also tried get_page, which also didn’t work.
$page_id = 218;
$page_data = get_page( $page_id );
$page_content = apply_filters('the_content', $page_data->post_content);
echo $page_content;I tried using a bbPress ShortCode in a WP-Page called “Forums”, and then also without a page, just using bbPress Permalink “Forums”, without a wp-page and shortcode. Same problem either way.
Why would bbPress conflict with these core WP functions? And why would it happen ONLY on the Forums List page? I also tested this in TwentyEleven, and the problem is there too.
Hello… using pagelines, and have installed bbpress. Forum seems to be working fine, but the alignment of the header text for the columns… e.g., topic, posts, voices, freshness… is off…not aligned horizontally. If you can let me know how to edit the CSS for this particular piece, I’d really appreciate it. Also, possible to change the column header text? If so, how? THANKS http://www.powelltatewptest.com.php5-22.dfw1-1.websitetestlink.com/?forum=gear-swap Also, seems like the topic title is in the wrong place… should be left-aligned, then “started by” should go underneath.. just like this forum. Thoughts on how to fix?