Search Results for 'wordpress'
-
Search Results
-
Topic: Cannot create groups
Using buddypress 2.6/Wordpress 4.5.3
Since i updated my version of buddypress i can no longer create groups. After finishing the group and clicking ‘create’ group, it redirects to me a page stating this:
“Fatal error: Call to a member function add_nav() on a non-object in /home1/newsigan/public_html/wp-content/plugins/buddypress/bp-core/bp-core-buddybar.php on line 155”
This appears to be an issue within the Buddypress core?
BuddyPress 2.6.0 “Espejo” is now available! https://buddypress.org/2016/06/buddypress-2-6-0/
Check out the changelog for more information.
—
Issues with BuddyPress 2.6.0:
BP Group Hierarchy causes a fatal error
BP Group Hierarchy needs to be updated to work with the new Navigation API. Manually apply this fix:
https://github.com/ddean4040/BP-Group-Hierarchy/pull/21/files—
Custom notifications displaying an array
Reported here:
https://buddypress.org/support/topic/notifications-displaying-array/This will be fixed in BuddyPress 2.6.1. In the meantime, you can apply this patch temporarily to fix things:
https://buddypress.trac.wordpress.org/attachment/ticket/7141/7141.01.patch—
Call to undefined function bp_get_current_group_id() in /wp-content/plugins/buddypress/bp-groups/classes/class-bp-group-extension.php on line 484
We’re currently investigating this issue.
There is a proposed fix here:
https://buddypress.trac.wordpress.org/attachment/ticket/7140/7140.01.patchWordPress 4.2.2 running Vantage Premium theme
BuddyPress Version 2.5.3
Website is WaxUnion.com
I haven’t been able to get buddypress to work now for awhile.
Everything was working great and just one day it stopped working.
I’m pretty sure I didn’t make any updates or anything that caused the change.
The links are under the social link in the menu.
I cant access profiles, members, activity stream, or the register page it all just loops back to the homepage with page title at the top of screen. If i turn off buddypress then the register page works fine.
Since the problem I have updated buddypress, turned off all other plugins to check conflict, and double checked all settings… nothing has seemed to help.
I have read that possibly there is a database / file problem maybe where maybe certain files are not in the right spot in the control panel / database and that could case this problem, but I’m not sure.
I could really use some help or maybe pointed in the right direction … Thanks
Topic: Buddy press for multilingual
Hi,
I am looking to have a news website in 3 languages. I have looked into multilanguage plugins but it seems to create more problems than solutions so I might end up doing 3 different installs of wordpress.
Now for buddypress, is there a way to still have the same user base for registering, commenting, etc.?
Topic: BuddyPress and Lighttpd
Hello humans!
I have a problem with BuddyPress instalation on my www server with Lighttpd.
Background:
Wordpress is installed in root catalog of my webserver.
I have changed permalinks for good one.
My lighttpd config looks:server.modules = ( "mod_expire", "mod_auth", "mod_evasive", "mod_status", "mod_access", "mod_alias", "mod_compress", "mod_redirect", "mod_rewrite", ) server.document-root = "/var/www" server.upload-dirs = ( "/var/cache/lighttpd/uploads" ) server.errorlog = "/var/log/lighttpd/error.log" server.pid-file = "/var/run/lighttpd.pid" server.username = "www-data" server.groupname = "www-data" server.port = 1234 server.tag = "blablabla" server.error-handler-404 = "/404.html" index-file.names = ( "index.php", "index.html") url.access-deny = ( "~", ".inc" ) static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" ) compress.cache-dir = "/var/cache/lighttpd/compress/" compress.filetype = ( "application/javascript", "text/css", "text/htm$ # default listening port for IPv6 falls back to the IPv4 port include_shell "/usr/share/lighttpd/use-ipv6.pl " + server.port include_shell "/usr/share/lighttpd/create-mime.assign.pl" include_shell "/usr/share/lighttpd/include-conf-enabled.pl" $HTTP["remoteip"] !~ "127.0.0.1" { url.access-deny = ( "" ) } server.dir-listing = "disable" ## rewrite URLs url.rewrite-once = ( "^/(wp-admin|wp-content|wp-includes)/(.*)" => "$0", "^/(.*.php)" => "$0", "^/(.*)$" => "/index.php/$1", "^/(.*)?/?files/$" => "index.php", "^/(.*)?/?files/(.*)" => "wp-content/blogs.php?file=$2", "^/(wp-.*)$" => "$1", "^/(avatars/.*)" => "$1", "^/([_0-9a-zA-Z-]+/)?(wp-.*)" => "$2", "^/([_0-9a-zA-Z-]+/)?(.*.php)$" => "$2", "(?.*)$" => "index.php$1", "." => "index.php" ) server.max-keep-alive-requests = 0 server.max-keep-alive-idle = 15 server.max-read-idle = 15 server.max-write-idle = 15 server.max-fds = 512 server.max-connections = 256 connection.kbytes-per-second = 0 server.kbytes-per-second = 0 server.chroot = "/" ssl.engine = "disable" evasive.max-conns-per-ip = 250 #server.max-request-size = 1 server.range-requests = "disable" server.follow-symlink = "disable"User profiles works fine.
Problem:
Pages like member, activity, register show blank page.Any ideas why?
First I had only:
"^/(wp-admin|wp-content|wp-includes)/(.*)" => "$0", "^/(.*.php)" => "$0", "^/(.*)$" => "/index.php/$1",Then I read somewhere that I should add:
"^/(.*)?/?files/$" => "index.php", "^/(.*)?/?files/(.*)" => "wp-content/blogs.php?file=$2", "^/(wp-.*)$" => "$1", "^/(avatars/.*)" => "$1", "^/([_0-9a-zA-Z-]+/)?(wp-.*)" => "$2", "^/([_0-9a-zA-Z-]+/)?(.*.php)$" => "$2", "(?.*)$" => "index.php$1", "." => "index.php"But nothing happend 🙁
I also tried to incerase memory but it also didn’t help
This is fresh wordpress installation with 2016 theme and without any additional plugins.
I always use my lighttpd server for wordpress and everything works perfect till now.
Could you please help me?
I just found out there was a parameter called ‘since’ to use with the activity loop to get activities since a certain date and time.
‘since’ => // Y-m-d H:i:s
Just looking for some quick help with this time function I created. I’m not great with code and don’t understand the workings of how WordPress/Buddypress works with the date and time, but I wanted to create a function that converts ‘hours ago’ into the Y-m-d H:i:s format so it can be used with the ‘since’ parameter.
function get_time_since( $hours_ago='' ) { // Local date and time right now $current_date = date('Y-m-d H:i:s'); // convert 'hours ago' to 'Y-m-d H:i:s' $date = date_create($current_date); date_sub($date, date_interval_create_from_date_string($hours_ago)); return date_format($date, 'Y-m-d H:i:s'); }// example use // display posts in the last 6 hours function my_filter_activity( $loop ) { if ( is_page( 'custom-page' )) { $loop['since'] = get_time_since( '6 hours' ); } return $loop; } add_filter( 'bp_after_has_activity_parse_args', 'my_filter_activity' );This works correctly where I am. The only thing I’m confused about is I don’t know if I have to detect a user’s time zone in the function for it to work correctly?
Good day all,
I was wondering if we can hide “Site-Wide Activity” & “Members section” from those who are not registered to the website?
The link will only appear once they have registered and logged in.
WordPress Version: 4.5.3
BuddyPress Version: 2.5.3So when I go to my members page all that I am seeing is my friends not the 7 people that have created an account. So that I can send them friend request.
Thank You Brian
Welcome to WordPress 4.5.2
I am using bbPress is forum software with a twist from the creators of WordPress.
Version 2.5.9 |BuddyPress helps you build any type of community website using WordPress, with member profiles, activity streams, user groups, messaging, and more.
Version 2.5.3BuddyPress Activity Plus A Facebook-style media sharing improvement for the activity box.
Version 1.6.4Hello guys, recently I came across an issue of failing to upload media (image) to my wordpress site. I came across other forums:
error occurred in the upload, please try again
I have tried to disable my plugin 1 by 1 (as per the forum recommendation) and found out that BuddyPress is culprit. I have no idea on where I can troubleshoot this. Is there any help on this?
oooh, a forum with no option to upload screenshots – that’s a new challenge for me! Anyway, I’ll try my best to make myself clear; Since I’m not that long with wordpress yet, I already got stucked on point “A”on site:
https://codex.buddypress.org/getting-started/installation-in-wordpress-multisite/.Because somehow I cannot find the “Network Admin” – icon! (I can’t send you a link to my site, because I’m building offline on my localhost). I just found a screenshot, where that option should be located , but … it’s not on my site!
I’m running the newest WordPress 4.5.2 version, and just installed buddypress 2.5.3! But in the bbpress – documentation is missing the step, how to get this additional option displayed at the left bar in the menu section. I also followed the “regular installation”- documentation, but it ends with the options. So, I’m totally lost here 🙁 !