Hello everybody.
This is a support forum for our Friend Finder 1.0 module.
If you have some questions or suggestions regarding it feel free to post them here or contact us directly.
Best Regards AntonLV - http://www.boonex.com/market/posts/AntonLV |
1 thing I have noticed about Dolphin when dealing with profiles is every developer seems to ignore privacy settings. When a member is set ot private, they want to be private. So... In this mod, the following file AqbFfDb.php around line 45 I changed it so NO private profiles will be shown
WHERE `tf2`.`Check`='1' AND `tp`.`ID` NOT IN ('" . $iId . "', '" . implode("', '", $aResult) . "')"; I changed to ... WHERE `tf2`.`Check`='1' AND `tp`.`allow_view_to` <> '2' AND `tp`.`ID` NOT IN ('" . $iId . "', '" . implode("', '", $aResult) . "')";
I have done this on ANY modules or mods that access profiles and it makes ANY profile that is private, hidden. I hope you incorporate this to keep private profiles private. ;) Thanks for your time.
http://www.mytikibar.com |
Hello It was created in the same way as default Profile's Friends checker in Dolphin. Moreover: 1. By default Dolphin doesn't check privacy settings displaying thumbnails, because correct checking via BxDolPrivacy class may add unnecessary server loading. Also allow_view_to field from Profiles table associated with the Profile page and not with profile's thumbnail. 2. If you take a look at default Dolphin's Browse page you may find members who marked their Profile pages as "Me Only", but they are displayed in the search results. However if you try to view the profile page you won't be able to see it because the page is marked as private. I think in your variant Dolphin should have additional privacy setting for the WHOLE profile, which should controll the visibility in all places (TOP lists, Search results, etc), the access via Mailbox and so on. Best Regards AntonLV - http://www.boonex.com/market/posts/AntonLV |
I can see where you are coming from there, my thought is, if I am private, no one should see me unless I want them to. :D http://www.mytikibar.com |
So I have noticed (now that I am paying attention) that I am getting duplicate profiles recommended in friend finder (see attached image) This particular profile has 3 friends (admin, supergoddess, talitiana). admin is friend with everyone. supergoddess is friends with everyone that is doubled on the screen. tatiliana is friends with none of them. I hope this helps! Thanks! http://www.mytikibar.com |
Hello So I have noticed (now that I am paying attention) that I am getting duplicate profiles recommended in friend finder (see attached image) This particular profile has 3 friends (admin, supergoddess, talitiana). admin is friend with everyone. supergoddess is friends with everyone that is doubled on the screen. tatiliana is friends with none of them. I hope this helps! Thanks! Yes, I see the issue and fix it ASAP. Thank you very much for the report. Best Regards AntonLV - http://www.boonex.com/market/posts/AntonLV |
Hello So I have noticed (now that I am paying attention) that I am getting duplicate profiles recommended in friend finder (see attached image) This particular profile has 3 friends (admin, supergoddess, talitiana). admin is friend with everyone. supergoddess is friends with everyone that is doubled on the screen. tatiliana is friends with none of them. I hope this helps! Thanks! The issue was fixed and the product was updated. Best Regards AntonLV - http://www.boonex.com/market/posts/AntonLV |
Thanks! That works! :) I did spruce it up a bit...
I am sorting it by Avatar (so people with no avatars appear last), then alphabetical by nickname
$sSql = "...Other code here.... after the ) and before the "; add the green lines ORDER BY `tp`.`Avatar` DESC ,`tp`.`NickName`
http://www.mytikibar.com |
Hello Thanks! That works! :) I did spruce it up a bit...
I am sorting it by Avatar (so people with no avatars appear last), then alphabetical by nickname
$sSql = "...Other code here.... after the ) and before the "; add the green lines ORDER BY `tp`.`Avatar` DESC ,`tp`.`NickName`
Thank you for the suggestion. We appreciate it. Best Regards AntonLV - http://www.boonex.com/market/posts/AntonLV |
Hello everybody. Best Regards AntonLV - http://www.boonex.com/market/posts/AntonLV |
Is this module based only on mutual friends or can be extended to show profiles based on match percentage |
Hello Is this module based only on mutual friends or can be extended to show profiles based on match percentage By default the module is based on mutual friends only. Best Regards AntonLV - http://www.boonex.com/market/posts/AntonLV |
when clicked on view all in people you may know block it is leading to url https://xxxxxxxxxxx.com/m//aqb_friend_finder how to change aqb_friend_finder to mutual friends in above url |
Hello when clicked on view all in people you may know block it is leading to url https://xxxxxxxxxxx.com/m//aqb_friend_finder how to change aqb_friend_finder to mutual friends in above url 'aqb_friend_finder' is unique module's URI which is defined in install/config.php file and is used in different SQL scripts and PHP files inside the module. If you want to change it you need to uninstall module first and then replace all appearances of aqb_friend_finder with mutual_friends or any other you need. Note, the URI should be unique on your site. Best Regards AntonLV - http://www.boonex.com/market/posts/AntonLV |
Thank you. Hello when clicked on view all in people you may know block it is leading to url https://xxxxxxxxxxx.com/m//aqb_friend_finder how to change aqb_friend_finder to mutual friends in above url 'aqb_friend_finder' is unique module's URI which is defined in install/config.php file and is used in different SQL scripts and PHP files inside the module. If you want to change it you need to uninstall module first and then replace all appearances of aqb_friend_finder with mutual_friends or any other you need. Note, the URI should be unique on your site.
|
Hello Thank you. Hello when clicked on view all in people you may know block it is leading to url https://xxxxxxxxxxx.com/m//aqb_friend_finder how to change aqb_friend_finder to mutual friends in above url 'aqb_friend_finder' is unique module's URI which is defined in install/config.php file and is used in different SQL scripts and PHP files inside the module. If you want to change it you need to uninstall module first and then replace all appearances of aqb_friend_finder with mutual_friends or any other you need. Note, the URI should be unique on your site.
You are welcome! :) Best Regards AntonLV - http://www.boonex.com/market/posts/AntonLV |
There are four instances of aqb_friend_finder, in which one is aqb_friend_finder_list. I have replaced all four with mutual_friends. Then only it is working. If I skip aqb_friend_finder_list, the webpage www........./m/mutual_friends is not showing any profiles. Thanks. |
Hello There are four instances of aqb_friend_finder, in which one is aqb_friend_finder_list.
I have replaced all four with mutual_friends. Then only it is working. If I skip aqb_friend_finder_list, the webpage www........./m/mutual_friends is not showing any profiles. Thanks. The problem appears because install/sql/install.sql file has constructions like the following SET @sPluginName = 'aqb_friend_finder'; If you don't replace aqb_friend_finder_list with mutual_friends_list then the page with profiles cannot be generated correctly. Best Regards AntonLV - http://www.boonex.com/market/posts/AntonLV |