Replies
Please check your bp-custom.php or theme’s functions.php
That redirect can not be caused by bp login redirect plugin. It is before the user is logging in. Some code/plugin is redirecting on account activation.
Hi Milo,
What I am seeing is that it is still redirecting to this pagehttp://relativeu.com/log-in-after-registration/
Are you using some code/plugin to do this?
In that case that plugin will need an update. Which plugin it is, is it bp redirect to profile?
Just had a look.
You are using a user access restriction plugin/code which is incorrectly redirecting the logged in user. It should not do that in case the ajax action is being handled.Which plugin or code are you using?
Hi Milo,
Most probably a plugin is throwing notices and causing JSON response to be invalid.Can you please point me to the site and I can tell you exactly which plugin or code is causing this.
- Brajesh Singh on October 1, 2015 at 1:14 pm in reply to: [Resolved] Fatal error: Call to undefined function mpp_group_is_gallery_enabled() #677
Hi Deepak,
i have pushed the release. Please try upgrading and let me know how it goes.Please do see this post for upgrade info
https://buddydev.com/support/forums/topic/upgrading-to-mediapress-with-sitewide-wordpress-gallery-support/ - Brajesh Singh on October 1, 2015 at 1:13 pm in reply to: [Resolved] Fantastic plugin ut I get an error… andy chance of assistance? #676
Hi Jan,
I have pushed the changes.To Upgrade, Please do see this post
https://buddydev.com/support/forums/topic/upgrading-to-mediapress-with-sitewide-wordpress-gallery-support/
Thank you
Brajesh Ok,
Here is a slightly modified version of your last functionfunction list_author_used_terms($author_id){ // get the author's posts $posts = get_posts( array('post_type' => 'post', 'posts_per_page' => -1, 'author' => $author_id) ); $author_terms = array(); //loop over the posts and collect the terms foreach ($posts as $p) { $terms = wp_get_object_terms( $p->ID, 'collection'); foreach ($terms as $t) { $author_terms[$t->term_id] = $t; } } return $author_terms; }
and here is an example use
$terms = list_author_used_terms( 1 ); $links = array(); foreach( $terms as $term ) { $links[] = sprintf( "<a href='%s'>%s</a>", get_term_link( $term ), $term->name ); } echo join( '', $links );
Hope that helps.
That is where I found it.
here is the cover image for that galleryhttp://sacredvale.org/wp-content/uploads/mediapress/members/3/3300/soninv2010h-200×200.jpg
So MediaPress is correctly uploading/saving it.
When you try to access that image, you will see the error message.
Are you sure you don’t have this plugin installed
https://wordpress.org/plugins/wp-performance-pack/See here an example
https://wordpress.org/support/topic/all-images-broken-when-un-installingI do not use that plgin, so you need to somehow allow wp-content/mediapress to be accessed.
- This reply was modified 9 years, 9 months ago by
Brajesh Singh.
- This reply was modified 9 years, 9 months ago by
You have some plugin/rewrite rules causing this issue. If I directly try to access the mediapress image, I see this message
WPPP dynamic images deactivated for this site
Can you please look into that.