Search Results for 'questions'
-
AuthorSearch Results
-
December 11, 2017 at 6:09 pm #269519
In reply to: Kindly help! Buddypress plugin leads to error 508
Boone Gorges
Keymaster508 usually means that the hosting provider has put a limit on the resources available to your account. See https://stackoverflow.com/questions/20040307/how-to-fix-the-508-resource-limit-is-reached-error-in-wordpress. BuddyPress does generally require more resources (RAM, MySQL I/O) than a standard WP installation. I’d suggest reaching out to your hosting provider to ask about the potential of upgrading your service to support the use of BP.
November 28, 2017 at 2:29 am #269182Boone Gorges
KeymasterWhat theme are you using? It’s possible that this problem is specific to the theme. Try on a default WordPress theme like Twenty Sixteen to be sure.
Can you share a screenshot of the “comment box” and the “reply box”? It’s unclear from your questions whether you’re talking about textareas or about buttons. Also, BP doesn’t have separate Comment and Reply functionality for activity items, which makes me think that this may be a conflict with another plugin.
November 28, 2017 at 1:41 am #269175In reply to: Pagination for Custom Loop in New BuddyPress Tab
Boone Gorges
KeymasterI’m not sure that
previous_posts_link()andnext_posts_link()will work in the context of a customWP_Queryloop. See https://wordpress.stackexchange.com/questions/20424/wp-query-and-next-posts-link for a pointer.November 28, 2017 at 1:30 am #269172In reply to: Blink my avatar
Boone Gorges
KeymasterHi @autox420 – The first answer to this question https://stackoverflow.com/questions/21203526/hide-unhide-div-with-button shows a technique that you can use to add a button like this to your theme.
November 19, 2017 at 9:15 pm #269065In reply to: Groups not displaying properly
Boone Gorges
KeymasterCSS changes must go in a CSS file; putting them into a header.php file won’t do anything, unless you use some specific syntax.
It’s possible that the style.css sheet that you are referencing is not actually being loaded, due to an improperly built child theme. You can tell by viewing the source of the page and looking for a file being loaded in a
<link>tag, with a URL along the lines of:example.com/wp-content/themes/my-theme/style.css. If you don’t see this anywhere, then you need to figure out why before you can debug anything else.If the stylesheet is indeed loading, but the change is not taking effect, there may be a problem with the selector I’ve suggested. The best way to figure this out is by right-clicking the element, selecting “Inspect Element” (or similar, depending on browser) from the context menu, and then using your browser tools to experiment with different CSS selectors until you find the right level of specificity. Here is one tutorial on how to do this, and you can find thousands of others on Google (“how to use browser developer tools” or something like that). https://developer.mozilla.org/en-US/docs/Learn/Common_questions/What_are_browser_developer_tools
My CSS also assumes that the diagnosis of the theme author is correct. I can’t verify that without actually being able to see a live copy of the site. If in doubt, you may consider reaching out to the theme author, who may be able to confirm some of the advice on this thread.
October 24, 2017 at 2:07 pm #268647In reply to: get_permalink() returns false for every post listing
shanebp
ModeratorYou should send these questions to BuddyBoss and / or LearnDash.
October 18, 2017 at 7:21 am #268552In reply to: BuddyPress still going strong?
roamingteacher
ParticipantThere were also comments about coming on to forums (not necessarily this one, but probably including it) and being attacked for asking questions. I was warned to say ‘be nice’ but I assume that people will be nice, or else won’t take the time to reply – after all, why bother if just going to be impatient and irritated.
Anyway, I wonder how users find it – do you often run into compatibility issues, or do these seem to resolve themselves with new updates? Do you often find you do have to work with code to resolve issues or you can normally figure it out with a Google Search. I’ve no intention of using any lesser-known plugins with it, so I’m thinking the most popular ones are probably compatible – or is this a false assumption?
In terms of support, I could pay the odd fiverr.com person to sort it for me, but not if it was a huge programming issue (as I imagine it would be expensive, and as I said – it’s a small (educational) business). It’s really important the forums are up more or less always (although everyone knows any software can fail at any time of course).
Thank you for sharing your experiences.
September 23, 2017 at 6:55 pm #268183In reply to: BuddyPress conditions
shanebp
ModeratorYour questions are about WP and WooCommerce, not BuddyPress.
All three are free, so set up a test site and start using other plugins or custom code to handle your desired user roles.September 23, 2017 at 6:55 pm #268182In reply to: BuddyPress conditions
shanebp
ModeratorYour questions are about WP and WooCommerce, not BuddyPress.
All three are free, so set up a test site and start using other plugins or custom code to handle your desired user roles.September 23, 2017 at 3:43 am #268176livingflame
ParticipantI understand you now.
You can try this: Link
August 30, 2017 at 9:09 pm #267797r-a-y
KeymasterYou mention forums specifically.
If that is the case, you should use bbPress conditional functions.
See this page for more details:
If you have more questions, post on the bbPress forums as BuddyPress is not bbPress:
– BuddyPress = community
– bbPress = forumsAugust 30, 2017 at 9:06 pm #267796darrylmit
ParticipantThank you for replying. I have 7,800 members on the active site. Are there pre-existing import script that parse my old database tables to match the BuddyPress DB schema? I am thinking of simply importing the (1)user name, (2)password, (3)associated email address and (4) profile photos and then asking each user to answer the slightly different questions on their profiles on the new BP site. Is there a plugin or some script that could help with that?
August 13, 2017 at 9:18 am #267526In reply to: Forum posts creating google crawl errors
Henry Wright
ModeratorHi @tel-wright
Try asking over at bbPress. They handle forum-related questions.
July 26, 2017 at 11:58 am #267221In reply to: Allow Underscores in Username
livingflame
ParticipantTry with this:
function tubs_sanitize_user($username, $raw_username, $strict) { $new_username = strip_tags($raw_username); // Kill octets $new_username = preg_replace('|%([a-fA-F0-9][a-fA-F0-9])|', '', $new_username); $new_username = preg_replace('/&.?;/', '', $new_username); // Kill entities // If strict, reduce to ASCII for max portability. if ( $strict ) $new_username = preg_replace('|[^a-z0-9 _.\-@+]|i', '', $new_username); return $new_username; } add_filter( 'sanitize_user', 'tubs_sanitize_user', 10, 3);Or try with this:
// Force Strong Username function strong_username() { global $bp; if ( !empty( $_POST['signup_username'] ) ) if ( !valid_username( $_POST['signup_username'] ) ){ $bp->signup->errors['signup_username'] = __( 'Your username is not strong enough. Use uppercase, lowercase, numbers and special chars like - _', 'bp-strong-username-password', 'buddypress' ); } } add_action( 'bp_signup_validate', 'strong_username'); function valid_username($candidate) { $r1='/[A-Z]/'; //Uppercase $r2='/[a-z]/'; //lowercase $r3='/[0-9]/'; //numbers $r4='/[-_]/'; //Special chars, underscore... if(preg_match_all($r1,$candidate, $o)<1) return FALSE; if(preg_match_all($r2,$candidate, $o)<1) return FALSE; if(preg_match_all($r3,$candidate, $o)<1) return FALSE; if(preg_match_all($r4,$candidate, $o)<1) return FALSE; if(strlen($candidate)<6) return FALSE; return TRUE; }July 12, 2017 at 11:19 am #266961In reply to: Cropping profile image broken
enacta2
ParticipantSo I tried to post this last night:
Please try to supply answers to the following questions.
1. Which version of WordPress are you running?
4.82. Did you install WordPress as a directory or subdomain install?
Directory3. If a directory install, is it in root or in a subdirectory?
Root4. Did you upgrade from a previous version of WordPress? If so, from which version?
Upgrade, but upgrading isn’t linked to this issue5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting.
Yes6. Which version of BP are you running?
2.8.27. Did you upgraded from a previous version of BP? If so, from which version?
No8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
Yes, many. But they don’t seem to be linked to this issue9. Are you using the standard WordPress theme or customized theme?
Customized theme10. Which theme do you use ?
WeChange by Curly Themes11. Have you modified the core files in any way?
Yes. Functions.php for WYSIWYG editor for bbPress12. Do you have any custom functions in bp-custom.php?
No13. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
2.6-rc-3 because I have PHP 7.1.6 running14. Please provide a list of any errors in your server’s log files.
There are no errors15. Which company provides your hosting?
SiteGround16. Is your server running Windows, or if Linux; Apache, nginx or something else?
nginixJuly 6, 2017 at 12:28 pm #266866In reply to: Show the name only
Elia
ParticipantHi webdesignseo!
The new woocommerce changed the first and last name to nicknames. So it didn’t help
I’m looking for solution that will change the “Display name publicly as” by default. Not after the login as I found here https://stackoverflow.com/questions/9326315/wordpress-change-default-display-name-publicy-as-for-all-existing-users
Do you have any thoughts on this?
July 2, 2017 at 11:55 am #266817Henry Wright
ModeratorLet me know how you get on on Monday and feel free to post questions if you get stuck.
June 29, 2017 at 3:36 pm #266778In reply to: Adding Buddypress to an existing Site
shanebp
Moderator> if that makes sense.
Not really. You can adjust the WP and BP navigation if you have developer skills.
> does someone know how i can contact buddy press directly
This is the support forum for BuddyPress.
It is run by volunteers and there is no guarantee that all questions will be answered to the satisfaction of the poster.
You could also try asking your question on stackoverflow or the WP forums.June 28, 2017 at 9:21 am #266646wci
ParticipantHi Buddypress support,
I am still waiting to get my problem to solve.
While using bbpress search forum then the search result is not displayed, but instead get forward to homepage.
Please find this screen video helpful to solve my issue
> https://www.screencast.com/t/eMZEAnn9X2Please also find this info helpful as you stated you need those info too:
Please try to supply answers to the following questions.
1. Which version of WordPress are you running?
WP ver. 4.82. Did you install WordPress as a directory or subdomain install?
directory but as multisite3. If a directory install, is it in root or in a subdirectory?
subdirectory /public_html/wci4. Did you upgrade from a previous version of WordPress? If so, from which version?
no – Version 2.8.2 is in use5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting.
not sure but I guess it was working6. Which version of BP are you running?
Version 2.8.2 is in use7. Did you upgraded from a previous version of BP? If so, from which version?
no8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
(but the problem occur even, if I deactiavete all plugins just using buddypress and bbpress together)
Name Version Plugin URL
WP Easy Updates 1.1.1 http://ayecode.io/
AffiliateWP – Lifetime Commissions 1.2.4 http://affiliatewp.com/addons/lifetime-commissions/
AffiliateWP – PayPal Payouts 1.1.7 http://affiliatewp.com/addons/paypal-payouts/
AffiliateWP – Recurring Referrals 1.6.2 http://affiliatewp.com/addons/recurring-referrals/
AffiliateWP 2.0.10 https://affiliatewp.com
AffiliateWP – Affiliate Area Tabs 1.1.5 https://affiliatewp.com/
AffiliateWP – Affiliate Dashboard Sharing 1.1.3 http://affiliatewp.com/addons/affiliate-dashboard-sharing/
AffiliateWP BuddyPress Pro 1.0.1 http://propluginmarketplace.com/plugins/affiliatewp-buddypress-pro
AffiliateWP – Direct Link Tracking 1.1.1 https://affiliatewp.com/add-ons/pro/direct-link-tracking/
AffiliateWP MLM 1.1.2 http://theperfectplugin.com/downloads/affiliatewp-mlm
AffiliateWP – Order Details For Affiliates 1.1.3 https://affiliatewp.com/addons/order-details-affiliates/
AffiliateWP Performance Bonuses 1.0.3.1 http://propluginmarketplace.com/plugins/affiliatewp-performance-bonuses
AffiliateWP Ranks 1.0.2 http://propluginmarketplace.com/plugins/affiliatewp-ranks
AffiliateWP Variable Rates 1.3 http://propluginmarketplace.com/plugins/affiliatewp-variable-rates
Akismet Anti-Spam 3.3.2 https://akismet.com/
All In One WP Security 4.2.8 https://www.tipsandtricks-hq.com/wordpress-security-and-firewall-plugin
Autoptimize 2.2.0 http://autoptimize.com/
bbPress 2.5.12 https://bbpress.org
BuddyPress Instant Chat 1.6 http://iamrichardphelps.com/
BuddyPress 2.8.2 https://buddypress.org/
Contact Form 7 Datepicker 2.6.0 https://github.com/relu/contact-form-7-datepicker/
Contact Form 7 Honeypot 1.10 http://www.nocean.ca/plugins/honeypot-module-for-contact-form-7-wordpress-plugin/
Contact Form 7 4.8 https://contactform7.com/
Cookie Notice 1.2.38 http://www.dfactory.eu/plugins/cookie-notice/
Delightful Downloads 1.6.6 https://delightfuldownloads.com
Google Tag Manager for WordPress 1.6.1 https://duracelltomi.com/google-tag-manager-for-wordpress/
Email Log 1.9.1 http://sudarmuthu.com/wordpress/email-log
EWWW Image Optimizer 3.4.1 https://wordpress.org/plugins/ewww-image-optimizer/
Featured Image Generator 1.1.5 https://designilcode.com
FooTable 0.3.1 http://fooplugins.com/plugins/footable-lite/
GD Business Hours 1.3.8.2 http://www.solarflarecomputing.com
GeoDirectory Advance Search Filters 1.4.9 http://wpgeodirectory.com/
GeoDirectory AffiliateWP Integration 1.0.8 http://wpgeodirectory.com
GeoDirectory Ajax Duplicate Alert 1.1.8 http://wpgeodirectory.com
GeoDirectory BuddyPress Integration 1.1.9 http://wpgeodirectory.com/
GeoDirectory Claim Manager 1.3.21 http://wpgeodirectory.com
GeoDirectory Custom Post Types 1.3.5 http://wpgeodirectory.com
GeoDirectory Dashboard 0.0.1 https://wpgeodirectory.com
GeoDirectory Events 1.4.6 https://wpgeodirectory.com
GeoDirectory Franchise Manager 1.0.6 http://wpgeodirectory.com/
GeoDirectory Invoice 1.0 http://www.worldcheckin.com
GeoDirectory Location Manager 1.5.50 http://wpgeodirectory.com
GeoDirectory Marker Cluster 1.3.0 http://wpgeodirectory.com
GeoDirectory Payment Manager 1.4.4 http://wpgeodirectory.com
GeoDirectory Re-Captcha 1.1.5 http://wpgeodirectory.com/
GeoDirectory Review Rating Manager 1.3.8 http://wpgeodirectory.com
GeoDirectory Social Importer 1.3.1 http://wpgeodirectory.com
GeoDirectory 1.6.21 http://wpgeodirectory.com/
GT-Vouchers – GeoDirectory Version 1.5.7.8 http://www.gt-vouchers.com/
Icegram – Popups, Optins, CTAs & lot more… 1.10.5 http://www.icegram.com/
Idea Factory 1.2 http://wpideafactory.com
If Modified Since Header 1.2.5 https://www.isaumya.com/portfolio-item/if-modified-since-header-for-wordpress/
Inbound Extension – MailPoet Integration 1.0.9 http://www.inboundnow.com/
Insert HTML Snippet 1.2.2 http://xyzscripts.com/wordpress-plugins/insert-html-snippet/
Collapse-O-Matic 1.7.5 https://plugins.twinpictures.de/plugins/collapse-o-matic/
Leads 3.1.1 http://www.inboundnow.com/leads/
MailPoet – Contact Form 7 Integration 1.0.7.5 https://github.com/jessepearson/mailpoet-contact-form-7
Master Slider Pro 3.1.3 http://codecanyon.net/item/masterslider-pro/7467925?ref=averta
Multilingual Tools 1.2 https://wpml.org/download/multilingual-tools/
ProfitBuilder 2.2.7 http://www.imsuccesscenter.com/
AffiliateWP – Pushover Notifications 1.0.2 http://affiliatewp.com/addons/pushover-notifications
SendGrid 1.11.3 https://wordpress.org/plugins/sendgrid-email-delivery-simplified/
WPML Multilingual CMS 3.7.1 https://wpml.org/
Social Content Locker 1.1 http://web-settler.com/wordpress-social-locker/
Standout CSS3 Buttons 0.3.0 http://www.jimmyscode.com/wordpress/standout-css3-buttons/
TablePress Extension: Responsive Tables 1.4 https://tablepress.org/extensions/responsive-tables/
TablePress 1.8 https://tablepress.org/
TinyMCE Advanced 4.6.3 http://www.laptoptips.ca/projects/tinymce-advanced/
UberMenu 3 – The Ultimate WordPress Mega Menu 3.2.5 http://wpmegamenu.com
UpdraftPlus – Backup/Restore 2.13.4.21 https://updraftplus.com
Use Google Libraries 1.6.2.3 http://jasonpenney.net/wordpress-plugins/use-google-libraries/
Widget Logic 5.8.2 https://wordpress.org/extend/plugins/widget-logic/
Yoast SEO 4.9 https://yoast.com/wordpress/plugins/seo/#utm_source=wpadmin&utm_medium=plugin&utm_campaign=wpseoplugin
Clean Up Optimizer 4.0.10 http://beta.tech-banker.com
Wordpress Social Invitations – Lite 2.1.1 http://wp.timersys.com/wordpress-social-invitations/
WP Super Cache – Clear all cache 1.4 http://ocaoimh.ie/wp-super-cache/
WP Super Cache 1.4.9 https://wordpress.org/plugins/wp-super-cache/
WP Support Plus 8.0.7 https://wordpress.org/plugins/wp-support-plus-responsive-ticket-system-ticket-system/
WPML CMS Nav 1.4.20 https://wpml.org/
WPML Media 2.2.0 https://wpml.org/
WPML Page Builders 1.1.3 https://wpml.org/
WPML Sticky Links 1.4.1 https://wpml.org/
WPML String Translation 2.5.4 https://wpml.org/
WPML Translation Management 2.3.1 https://wpml.org/
WPML Widgets 1.0.6 http://jeroensormani.com
MailPoet Newsletters 2.7.10 http://www.mailpoet.com/9. Are you using the standard WordPress theme or customized theme?
customized theme10. Which theme do you use ?
GDF_child is from geodirectory (but the problem occur even, if I switch the theme to twenty fourteen)11. Have you modified the core files in any way?
No12. Do you have any custom functions in bp-custom.php?
Not as I know, but maybe the geodirectory addon “GeoDirectory BuddyPress Integration 1.1.9″13. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
no build in. version in use is bbPress 2.5.1214. Please provide a list of any errors in your server’s log files.
[23-Jun-2017 03:41:33 UTC] WordPress database error Table ‘worldche_wcimsgd.wp_term_relationships’ doesn’t exist for query SELECT tt.term_id, MAX(p.post_modified_gmt) AS date_gmt, l.country_slug AS country, l.region_slug AS region, l.city_slug AS city FROM ms_1_geodir_post_locations l LEFT JOIN ms_1_geodir_gd_video_detail pd ON pd.post_location_id = l.location_id LEFT JOIN ms_1_posts p ON p.ID = pd.post_id LEFT JOIN wp_term_relationships AS tr ON tr.object_id = p.ID LEFT JOIN wp_term_taxonomy AS tt ON ( tt.term_taxonomy_id = tr.term_taxonomy_id AND tt.taxonomy = ‘gd_videocategory’ ) WHERE pd.post_locations LIKE CONCAT( ‘[‘, l.city_slug, ‘],[‘, l.region_slug , ‘],[‘, l.country_slug , ‘]’ ) AND p.post_type = ‘gd_video’ AND p.post_status = ‘publish’ AND l.location_id IS NOT NULL AND tt.term_id IS NOT NULL GROUP BY CONCAT(tt.term_id, ‘-‘, l.country_slug, ‘-‘, l.region_slug, ‘-‘, l.city_slug) ORDER BY date_gmt DESC made by require(‘wp-blog-header.php’), wp, WP->main, WP->query_posts, WP_Query->query, WP_Query->get_posts, do_action_ref_array, WP_Hook->do_action, WP_Hook->apply_filters, call_user_func_array, WPSEO_Sitemaps->redirect, WPSEO_Sitemaps->build_sitemap, WPSEO_Sitemaps->build_root_map, WPSEO_Sitemaps_Renderer->get_index, apply_filters(‘wpseo_sitemap_index’), WP_Hook->apply_filters, call_user_func_array, geodir_sitemap_index, geodir_sitemap_taxonomies_sitemap_index, geodir_sitemap_get_locations_taxonomies
[23-Jun-2017 03:41:33 UTC] WordPress database error Table ‘worldche_wcimsgd.wp_term_relationships’ doesn’t exist for query SELECT tt.term_id, MAX(p.post_modified_gmt) AS date_gmt, l.country_slug AS country, l.region_slug AS region, l.city_slug AS city FROM ms_1_geodir_post_locations l LEFT JOIN ms_1_geodir_gd_video_detail pd ON pd.post_location_id = l.location_id LEFT JOIN ms_1_posts p ON p.ID = pd.post_id LEFT JOIN wp_term_relationships AS tr ON tr.object_id = p.ID LEFT JOIN wp_term_taxonomy AS tt ON ( tt.term_taxonomy_id = tr.term_taxonomy_id AND tt.taxonomy = ‘gd_video_tags’ ) WHERE pd.post_locations LIKE CONCAT( ‘[‘, l.city_slug, ‘],[‘, l.region_slug , ‘],[‘, l.country_slug , ‘]’ ) AND p.post_type = ‘gd_video’ AND p.post_status = ‘publish’ AND l.location_id IS NOT NULL AND tt.term_id IS NOT NULL GROUP BY CONCAT(tt.term_id, ‘-‘, l.country_slug, ‘-‘, l.region_slug, ‘-‘, l.city_slug) ORDER BY date_gmt DESC made by require(‘wp-blog-header.php’), wp, WP->main, WP->query_posts, WP_Query->query, WP_Query->get_posts, do_action_ref_array, WP_Hook->do_action, WP_Hook->apply_filters, call_user_func_array, WPSEO_Sitemaps->redirect, WPSEO_Sitemaps->build_sitemap, WPSEO_Sitemaps->build_root_map, WPSEO_Sitemaps_Renderer->get_index, apply_filters(‘wpseo_sitemap_index’), WP_Hook->apply_filters, call_user_func_array, geodir_sitemap_index, geodir_sitemap_taxonomies_sitemap_index, geodir_sitemap_get_locations_taxonomies
[23-Jun-2017 04:40:47 UTC] WordPress-Datenbank-Fehler You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ” at line 1 für Abfrage SELECT * FROMms_1_geodir_invoiceWHEREpost_id= von require(‘wp-blog-header.php’), require_once(‘wp-includes/template-loader.php’), include(‘/themes/GDF_child/geodirectory/listing-success.php’), my_project_updated_email
[23-Jun-2017 04:40:47 UTC] WordPress-Datenbank-Fehler You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘WHERE post_author = 0’ at line 1 für Abfrage UPDATE ms_1_posts SET vat_id = WHERE post_author = 0 von require(‘wp-blog-header.php’), require_once(‘wp-includes/template-loader.php’), include(‘/themes/GDF_child/geodirectory/listing-success.php’), my_project_updated_email
[23-Jun-2017 06:43:08 UTC] PHP Fatal error: Call to undefined function is_bbpress() in /home/worldcheckin/public_html/wci/wp-content/plugins/widget-logic/widget_logic.php(463) : eval()’d code on line 215. Which company provides your hosting?
hetzner – I am using a own dedicated server16. Is your server running Windows, or if Linux; Apache, nginx or something else?
LinuxJune 28, 2017 at 9:21 am #266640wci
ParticipantHi Buddypress support,
I am still waiting to get my problem to solve.
While using bbpress search forum then the search result is not displayed, but instead get forward to homepage.
Please find this screen video helpful to solve my issue
> https://www.screencast.com/t/eMZEAnn9X2Please also find this info helpful as you stated you need those info too:
Please try to supply answers to the following questions.
1. Which version of WordPress are you running?
WP ver. 4.82. Did you install WordPress as a directory or subdomain install?
directory but as multisite3. If a directory install, is it in root or in a subdirectory?
subdirectory /public_html/wci4. Did you upgrade from a previous version of WordPress? If so, from which version?
no – Version 2.8.2 is in use5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting.
not sure but I guess it was working6. Which version of BP are you running?
Version 2.8.2 is in use7. Did you upgraded from a previous version of BP? If so, from which version?
no8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
(but the problem occur even, if I deactiavete all plugins just using buddypress and bbpress together)
Name Version Plugin URL
WP Easy Updates 1.1.1 http://ayecode.io/
AffiliateWP – Lifetime Commissions 1.2.4 http://affiliatewp.com/addons/lifetime-commissions/
AffiliateWP – PayPal Payouts 1.1.7 http://affiliatewp.com/addons/paypal-payouts/
AffiliateWP – Recurring Referrals 1.6.2 http://affiliatewp.com/addons/recurring-referrals/
AffiliateWP 2.0.10 https://affiliatewp.com
AffiliateWP – Affiliate Area Tabs 1.1.5 https://affiliatewp.com/
AffiliateWP – Affiliate Dashboard Sharing 1.1.3 http://affiliatewp.com/addons/affiliate-dashboard-sharing/
AffiliateWP BuddyPress Pro 1.0.1 http://propluginmarketplace.com/plugins/affiliatewp-buddypress-pro
AffiliateWP – Direct Link Tracking 1.1.1 https://affiliatewp.com/add-ons/pro/direct-link-tracking/
AffiliateWP MLM 1.1.2 http://theperfectplugin.com/downloads/affiliatewp-mlm
AffiliateWP – Order Details For Affiliates 1.1.3 https://affiliatewp.com/addons/order-details-affiliates/
AffiliateWP Performance Bonuses 1.0.3.1 http://propluginmarketplace.com/plugins/affiliatewp-performance-bonuses
AffiliateWP Ranks 1.0.2 http://propluginmarketplace.com/plugins/affiliatewp-ranks
AffiliateWP Variable Rates 1.3 http://propluginmarketplace.com/plugins/affiliatewp-variable-rates
Akismet Anti-Spam 3.3.2 https://akismet.com/
All In One WP Security 4.2.8 https://www.tipsandtricks-hq.com/wordpress-security-and-firewall-plugin
Autoptimize 2.2.0 http://autoptimize.com/
bbPress 2.5.12 https://bbpress.org
BuddyPress Instant Chat 1.6 http://iamrichardphelps.com/
BuddyPress 2.8.2 https://buddypress.org/
Contact Form 7 Datepicker 2.6.0 https://github.com/relu/contact-form-7-datepicker/
Contact Form 7 Honeypot 1.10 http://www.nocean.ca/plugins/honeypot-module-for-contact-form-7-wordpress-plugin/
Contact Form 7 4.8 https://contactform7.com/
Cookie Notice 1.2.38 http://www.dfactory.eu/plugins/cookie-notice/
Delightful Downloads 1.6.6 https://delightfuldownloads.com
Google Tag Manager for WordPress 1.6.1 https://duracelltomi.com/google-tag-manager-for-wordpress/
Email Log 1.9.1 http://sudarmuthu.com/wordpress/email-log
EWWW Image Optimizer 3.4.1 https://wordpress.org/plugins/ewww-image-optimizer/
Featured Image Generator 1.1.5 https://designilcode.com
FooTable 0.3.1 http://fooplugins.com/plugins/footable-lite/
GD Business Hours 1.3.8.2 http://www.solarflarecomputing.com
GeoDirectory Advance Search Filters 1.4.9 http://wpgeodirectory.com/
GeoDirectory AffiliateWP Integration 1.0.8 http://wpgeodirectory.com
GeoDirectory Ajax Duplicate Alert 1.1.8 http://wpgeodirectory.com
GeoDirectory BuddyPress Integration 1.1.9 http://wpgeodirectory.com/
GeoDirectory Claim Manager 1.3.21 http://wpgeodirectory.com
GeoDirectory Custom Post Types 1.3.5 http://wpgeodirectory.com
GeoDirectory Dashboard 0.0.1 https://wpgeodirectory.com
GeoDirectory Events 1.4.6 https://wpgeodirectory.com
GeoDirectory Franchise Manager 1.0.6 http://wpgeodirectory.com/
GeoDirectory Invoice 1.0 http://www.worldcheckin.com
GeoDirectory Location Manager 1.5.50 http://wpgeodirectory.com
GeoDirectory Marker Cluster 1.3.0 http://wpgeodirectory.com
GeoDirectory Payment Manager 1.4.4 http://wpgeodirectory.com
GeoDirectory Re-Captcha 1.1.5 http://wpgeodirectory.com/
GeoDirectory Review Rating Manager 1.3.8 http://wpgeodirectory.com
GeoDirectory Social Importer 1.3.1 http://wpgeodirectory.com
GeoDirectory 1.6.21 http://wpgeodirectory.com/
GT-Vouchers – GeoDirectory Version 1.5.7.8 http://www.gt-vouchers.com/
Icegram – Popups, Optins, CTAs & lot more… 1.10.5 http://www.icegram.com/
Idea Factory 1.2 http://wpideafactory.com
If Modified Since Header 1.2.5 https://www.isaumya.com/portfolio-item/if-modified-since-header-for-wordpress/
Inbound Extension – MailPoet Integration 1.0.9 http://www.inboundnow.com/
Insert HTML Snippet 1.2.2 http://xyzscripts.com/wordpress-plugins/insert-html-snippet/
Collapse-O-Matic 1.7.5 https://plugins.twinpictures.de/plugins/collapse-o-matic/
Leads 3.1.1 http://www.inboundnow.com/leads/
MailPoet – Contact Form 7 Integration 1.0.7.5 https://github.com/jessepearson/mailpoet-contact-form-7
Master Slider Pro 3.1.3 http://codecanyon.net/item/masterslider-pro/7467925?ref=averta
Multilingual Tools 1.2 https://wpml.org/download/multilingual-tools/
ProfitBuilder 2.2.7 http://www.imsuccesscenter.com/
AffiliateWP – Pushover Notifications 1.0.2 http://affiliatewp.com/addons/pushover-notifications
SendGrid 1.11.3 https://wordpress.org/plugins/sendgrid-email-delivery-simplified/
WPML Multilingual CMS 3.7.1 https://wpml.org/
Social Content Locker 1.1 http://web-settler.com/wordpress-social-locker/
Standout CSS3 Buttons 0.3.0 http://www.jimmyscode.com/wordpress/standout-css3-buttons/
TablePress Extension: Responsive Tables 1.4 https://tablepress.org/extensions/responsive-tables/
TablePress 1.8 https://tablepress.org/
TinyMCE Advanced 4.6.3 http://www.laptoptips.ca/projects/tinymce-advanced/
UberMenu 3 – The Ultimate WordPress Mega Menu 3.2.5 http://wpmegamenu.com
UpdraftPlus – Backup/Restore 2.13.4.21 https://updraftplus.com
Use Google Libraries 1.6.2.3 http://jasonpenney.net/wordpress-plugins/use-google-libraries/
Widget Logic 5.8.2 https://wordpress.org/extend/plugins/widget-logic/
Yoast SEO 4.9 https://yoast.com/wordpress/plugins/seo/#utm_source=wpadmin&utm_medium=plugin&utm_campaign=wpseoplugin
Clean Up Optimizer 4.0.10 http://beta.tech-banker.com
Wordpress Social Invitations – Lite 2.1.1 http://wp.timersys.com/wordpress-social-invitations/
WP Super Cache – Clear all cache 1.4 http://ocaoimh.ie/wp-super-cache/
WP Super Cache 1.4.9 https://wordpress.org/plugins/wp-super-cache/
WP Support Plus 8.0.7 https://wordpress.org/plugins/wp-support-plus-responsive-ticket-system-ticket-system/
WPML CMS Nav 1.4.20 https://wpml.org/
WPML Media 2.2.0 https://wpml.org/
WPML Page Builders 1.1.3 https://wpml.org/
WPML Sticky Links 1.4.1 https://wpml.org/
WPML String Translation 2.5.4 https://wpml.org/
WPML Translation Management 2.3.1 https://wpml.org/
WPML Widgets 1.0.6 http://jeroensormani.com
MailPoet Newsletters 2.7.10 http://www.mailpoet.com/9. Are you using the standard WordPress theme or customized theme?
customized theme10. Which theme do you use ?
GDF_child is from geodirectory (but the problem occur even, if I switch the theme to twenty fourteen)11. Have you modified the core files in any way?
No12. Do you have any custom functions in bp-custom.php?
Not as I know, but maybe the geodirectory addon “GeoDirectory BuddyPress Integration 1.1.9″13. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
no build in. version in use is bbPress 2.5.1214. Please provide a list of any errors in your server’s log files.
[23-Jun-2017 03:41:33 UTC] WordPress database error Table ‘worldche_wcimsgd.wp_term_relationships’ doesn’t exist for query SELECT tt.term_id, MAX(p.post_modified_gmt) AS date_gmt, l.country_slug AS country, l.region_slug AS region, l.city_slug AS city FROM ms_1_geodir_post_locations l LEFT JOIN ms_1_geodir_gd_video_detail pd ON pd.post_location_id = l.location_id LEFT JOIN ms_1_posts p ON p.ID = pd.post_id LEFT JOIN wp_term_relationships AS tr ON tr.object_id = p.ID LEFT JOIN wp_term_taxonomy AS tt ON ( tt.term_taxonomy_id = tr.term_taxonomy_id AND tt.taxonomy = ‘gd_videocategory’ ) WHERE pd.post_locations LIKE CONCAT( ‘[‘, l.city_slug, ‘],[‘, l.region_slug , ‘],[‘, l.country_slug , ‘]’ ) AND p.post_type = ‘gd_video’ AND p.post_status = ‘publish’ AND l.location_id IS NOT NULL AND tt.term_id IS NOT NULL GROUP BY CONCAT(tt.term_id, ‘-‘, l.country_slug, ‘-‘, l.region_slug, ‘-‘, l.city_slug) ORDER BY date_gmt DESC made by require(‘wp-blog-header.php’), wp, WP->main, WP->query_posts, WP_Query->query, WP_Query->get_posts, do_action_ref_array, WP_Hook->do_action, WP_Hook->apply_filters, call_user_func_array, WPSEO_Sitemaps->redirect, WPSEO_Sitemaps->build_sitemap, WPSEO_Sitemaps->build_root_map, WPSEO_Sitemaps_Renderer->get_index, apply_filters(‘wpseo_sitemap_index’), WP_Hook->apply_filters, call_user_func_array, geodir_sitemap_index, geodir_sitemap_taxonomies_sitemap_index, geodir_sitemap_get_locations_taxonomies
[23-Jun-2017 03:41:33 UTC] WordPress database error Table ‘worldche_wcimsgd.wp_term_relationships’ doesn’t exist for query SELECT tt.term_id, MAX(p.post_modified_gmt) AS date_gmt, l.country_slug AS country, l.region_slug AS region, l.city_slug AS city FROM ms_1_geodir_post_locations l LEFT JOIN ms_1_geodir_gd_video_detail pd ON pd.post_location_id = l.location_id LEFT JOIN ms_1_posts p ON p.ID = pd.post_id LEFT JOIN wp_term_relationships AS tr ON tr.object_id = p.ID LEFT JOIN wp_term_taxonomy AS tt ON ( tt.term_taxonomy_id = tr.term_taxonomy_id AND tt.taxonomy = ‘gd_video_tags’ ) WHERE pd.post_locations LIKE CONCAT( ‘[‘, l.city_slug, ‘],[‘, l.region_slug , ‘],[‘, l.country_slug , ‘]’ ) AND p.post_type = ‘gd_video’ AND p.post_status = ‘publish’ AND l.location_id IS NOT NULL AND tt.term_id IS NOT NULL GROUP BY CONCAT(tt.term_id, ‘-‘, l.country_slug, ‘-‘, l.region_slug, ‘-‘, l.city_slug) ORDER BY date_gmt DESC made by require(‘wp-blog-header.php’), wp, WP->main, WP->query_posts, WP_Query->query, WP_Query->get_posts, do_action_ref_array, WP_Hook->do_action, WP_Hook->apply_filters, call_user_func_array, WPSEO_Sitemaps->redirect, WPSEO_Sitemaps->build_sitemap, WPSEO_Sitemaps->build_root_map, WPSEO_Sitemaps_Renderer->get_index, apply_filters(‘wpseo_sitemap_index’), WP_Hook->apply_filters, call_user_func_array, geodir_sitemap_index, geodir_sitemap_taxonomies_sitemap_index, geodir_sitemap_get_locations_taxonomies
[23-Jun-2017 04:40:47 UTC] WordPress-Datenbank-Fehler You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ” at line 1 für Abfrage SELECT * FROMms_1_geodir_invoiceWHEREpost_id= von require(‘wp-blog-header.php’), require_once(‘wp-includes/template-loader.php’), include(‘/themes/GDF_child/geodirectory/listing-success.php’), my_project_updated_email
[23-Jun-2017 04:40:47 UTC] WordPress-Datenbank-Fehler You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘WHERE post_author = 0’ at line 1 für Abfrage UPDATE ms_1_posts SET vat_id = WHERE post_author = 0 von require(‘wp-blog-header.php’), require_once(‘wp-includes/template-loader.php’), include(‘/themes/GDF_child/geodirectory/listing-success.php’), my_project_updated_email
[23-Jun-2017 06:43:08 UTC] PHP Fatal error: Call to undefined function is_bbpress() in /home/worldcheckin/public_html/wci/wp-content/plugins/widget-logic/widget_logic.php(463) : eval()’d code on line 215. Which company provides your hosting?
hetzner – I am using a own dedicated server16. Is your server running Windows, or if Linux; Apache, nginx or something else?
LinuxFebruary 26, 2017 at 10:37 pm #264195In reply to: BP profile data added to a custom post type
cbloom1919
ParticipantThank you for the response. I am trying to piece this together and am wondering- on the page that you linked me to, do I use the “Usage” code, paste it in my theme’s function.php file and use it each time I define a profile field that I need to call? If I use user_id = -1, will it just return data for the currently logged in user? Also, once the query returns the profile fields, how do I get it attached to my post? Where do I give it a parameter name?
(I’m new to php, so apologies if my questions are unclear/not using the correct terminology).
Thanks again.
February 21, 2017 at 6:07 pm #264006In reply to: whats-new-textarea – size
danbp
ParticipantThis field is visible by default.

If not, so the problem might be with your theme.
For other what’s new form questions, search the forum.Some answers here:
https://buddypress.org/support/topic/how-do-i-remove-textarea-resize-without-editing-the-js-script/February 18, 2017 at 3:20 pm #263920In reply to: Registration form => 404 not found
Bradley Ross
ParticipantIt may be that you don’t have mod_rewrite activated in httpd.conf. Make sure that the LoadModule statement for mod_rewrite is uncommented. (Remove # sign at beginning.) Also look for a statement <Directory /xxx> where /xxx is the directory containing the files for the web site. If you see AllowOverride None in that section, change it to AllowOverride FileInfo or add FileInfo to the current set of options.
Back up httpd.conf before making changes
See http://askubuntu.com/questions/48362/how-to-enable-mod-rewrite-in-apachePlease let me know if this works.
February 18, 2017 at 3:32 am #263906In reply to: Cannot Sign up
Bradley Ross
ParticipantFrom my previous post, changing AllowOverride None to AllowOverride FileInfo seems to have made the member, groups, and other pages operational.
The following is a diff of the httpd.conf from the Yosemite version of macOS and my current version. Remember that there are three configuration files: httpd.conf, my.cnf, php.ini
https://bradleyaross.wordpress.com/2017/02/04/wordpress-installation-problems/BradleyRossMacBook:apache2 bradleyross$ diff httpd.conf httpd.conf-YosemiteDefault
22,25d21
< #
< # History:
< # Starting with httpd.conf.pre.update which was dated July 1, 2015
< #
107,109d102
< #
< # The line for mod_include.so was uncommented 17-February-2017
< # to allow the use of server side includes
164,167c157
< #
< # The line for mod_cgi.so was uncommented on 17-Feb-2017
< #
< LoadModule cgi_module libexec/apache2/mod_cgi.so
—
> #LoadModule cgi_module libexec/apache2/mod_cgi.so
178,186c168,170
< # See http://askubuntu.com/questions/48362/how-to-enable-mod-rewrite-in-apache
< LoadModule rewrite_module libexec/apache2/mod_rewrite.so
< #
< # The two following lines had been commented out as part of the
< # update July, 2015. They are now being uncommented to
< # put them back in
< #
< LoadModule php5_module libexec/apache2/libphp5.so
< LoadModule hfs_apple_module libexec/apache2/mod_hfs_apple.so
—
> #LoadModule rewrite_module libexec/apache2/mod_rewrite.so
> #LoadModule php5_module libexec/apache2/libphp5.so
> #LoadModule hfs_apple_module libexec/apache2/mod_hfs_apple.so
235,237d218
< # Apparently the slash at the end of the Directory open tag
< # refers to the root of the file system rather than /> indicating
< # an empty tag
269,270c250
< # The attribute Includes was added 17-Feb-2017
< Options FollowSymLinks Multiviews Includes
—
> Options FollowSymLinks Multiviews
278,281c258
< # The attribute None was changed to FileInfo 17-Feb-2017:wq
<
< #AllowOverride None
< AllowOverride FileInfo
—
> AllowOverride None
453,455c430,431
< # The following two lines were uncommented on 17-Feb-2017
< AddType text/html .shtml
< AddOutputFilter INCLUDES .shtml
—
> #AddType text/html .shtml
> #AddOutputFilter INCLUDES .shtml
BradleyRossMacBook:apache2 bradleyross$February 14, 2017 at 11:45 pm #263778shanebp
ModeratorTry using
bp_get_group_id().
If you can get the group id, then usegroups_get_group_admins( $group_id )to get the group admins.
Pull out the user ids of the group admins and use the ids to get the user data that you want.NOTE: you should be asking LearnDash these questions.
By asking them here, you are asking volunteers to answer questions about a third-party premium plugin.
Therefore, you most likely won’t get much assistance here. -
AuthorSearch Results