Forum Replies Created
-
In reply to: Anyone else working on integrating Gigya?
I think I got it… in bp-blogs in line 417 inside the function bp_blogs_record_comments
They get the user id using the email of the author:“$user = get_user_by_email( $comment->comment_author_email );”
And when a user login using gigya, the email isnt record, so probably thats the problem. Any one know how to change this line to get the user id in another way?
In reply to: Anyone else working on integrating Gigya?Well I send an email to gigya support, they answer me that they would help, they asked this:
“Can you or anyone else from your team help debug the BuddyPress to figure out which user ID/User name is saved per action?
Is there a place we can see this in action?”Im looking through the code now, but anyone know where the specific action is?
In reply to: Anyone else working on integrating Gigya?Well when i use gigya with wordperss 2.9.2 and buddypress 1.2.3 there is a problem with the activity stream and the users login with gigya. In the activity streams it shows only that a user make all the comments, made by other users in entries. This only happens with the users that are connected through gigya. And i tried to desactivate all the plugins and the problem is in fact the gigya plugin.
In reply to: 404 error on BP links@dandam It seems i coppied the wrong link, here it is the real one https://trac.buddypress.org/ticket/2299
And the link to the patch is this one https://trac.buddypress.org/attachment/ticket/2299/iis.patch
In reply to: 404 error on bp linksPosted the solution to my problem here https://buddypress.org/forums/topic/404-error-on-bp-links#post-50094
In reply to: 404 error on BP linksFinally I got it working
Well first add the lines from this patch https://trac.buddypress.org/ticket/1426 to bp-core/bp-core-catchuri.php
and then go to bp-core.php and in line 95 put the code like this (note the index.php)
$bp->root_domain = bp_core_get_root_domain() . '/index.php';Well, also, I have a custom template, and in my navigation I have manually put the links in the header to look like this:
<li><a href="http://yourdomain.com/wordpress/index.php/activity/" title="Actividad">Actividad</a></li>but it probably works also in the bp-default theme.So, hope this help someone
In reply to: 404 error on BP links@qbuster Well when you install this small fix https://trac.buddypress.org/ticket/1426 you can access links like wordpress/index.php/members (so thats something). But all the buddypress links remain being wordpress/members, etc.
So, I tried to change the slug as explained in here https://codex.buddypress.org/how-to-guides/changing-internal-configuration-settings/ to see if it works change members to index.php/members, but it returns the 404 error.
So any ideas on how to change the links on buddypress to include the index.php ?
In reply to: 404 error on bp linksWell… it almost worked. The main links were working ok, but in the admin bar, the links were still the old ones like wordpress/members/, and also in the members page, the users urls to their profile were having the same problems.
In reply to: 404 error on bp linksWell, I will answer myself
some further searching in the forums and I find the solution for my problem.I just use this patch
In reply to: 404 error on bp linksWell reading my configuration my server doesnt got the using_mod_rewrite_permalinks, maybe thats the problem? if it is how could i fix it ?