Search Results for 'test'
-
Search Results
-
I was making an edit in WP using the editor tool and now I’m getting this error
Warning: require(/hermes/waloraweb094/b316/moo.voyagingid/wordpressNew/wp-content/plugins/bbpress/bbp-admin/bbp-admin.php) [function.require]: failed to open stream: No such file or directory in /hermes/waloraweb094/b316/moo.voyagingid/wordpressNew/wp-content/plugins/bbpress/bbpress.php on line 311
Fatal error: require() [function.require]: Failed opening required '/hermes/waloraweb094/b316/moo.voyagingid/wordpressNew/wp-content/plugins/bbpress/bbp-admin/bbp-admin.php' (include_path='.:/usr/local/lib/php-5.2.17/lib/php') in /hermes/waloraweb094/b316/moo.voyagingid/wordpressNew/wp-content/plugins/bbpress/bbpress.php on line 311 I tried copying over the files it mentions as well as the header.php file I was editing but no luck. I can still see my site and everything seems to be functioning fine I just can't get to the backend WP version 4.2.1 (i think) bbpress - the latest retreadwerks.com/wordpressNew/I love the layout: http://bbpress.org/forums/ The forums on the left, and a big Latest Topics are on the right. Tags and such in the left too. I keep reinstalling my bbPress but no matter what I do, I cannot get my forums to show up like this. See here:
http://covenantvoice.com/forums/
I just want to fix the layout. Any idea on what I’m doing wrong? I’m using the very latest bbPress, 2.1.2.
Is there any shortcode that would allow me to display a forum from one of my other sites on a multisite installation?
I was hoping to display the latest topics of a forum from site “X” on site “Y” because they share interests. I am hoping to do that with shortcode and not a theme change because I am using the same theme across all of my sites.
Hello,
I have bbpress and buddypress installed in my site. I have “user groups” turned off in buddypress and “enable group forums” turned off too in bbpress.
Despite this I still have a Forums link (which belongs to group furum) in my user activity page menu (not the site-wide activity page), this page is showing links to my activity, my profile, my messages, my friends, my forums and my configuration.
Why is the forums link showing in this menu if I have group and group forums disabled? It should not exist.
Besides this, this Forums link is linking to a wrong url, it is linking to luchotv.com/forums and the group forums page I have set for this is luchotv.com/foro-grupos in the buddypress pages configuration.
In fact this page (http://www.luchotv.com/foro-grupos/) shows the group forums info and I think it shouldn’t even exist.
I am running the latest versions of everything.
Please tell me how can I fix this problem?
Thank you,
LucianoHello,
I have a dev version of my website so sorry but you have to enter the password and the username: dev/dev1234
My problem is with the profile page, if you check it you can see the header with the AMS name not fits perfectly. So I want to change. If I change it the header is change every post page.
If you check the css classes you can see the following: post-1693 post type-post status-publish format-standard hentry category-vice-city tag-evfordulo tag-focimdal
I don’t know why but the profile page get the latest posts css classes. Why?
The posts url: http://dev.codenamegta.hu/2012/majamihiroz-vice-city-focimdala/
The profile url: http://dev.codenamegta.hu/forumok/tagok/ams/
How can I disable the redirection after the registration? It’s very annoying if the user the a login registration form with different design.
Thank you very much!
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.
Chris