-
AuthorPosts
-
kjlarski JATC
kjlarski
- Join date:
- October 2010
- Posts:
- 96
- Downloads:
- 3
- Uploads:
- 6
- Thanks:
- 6
- Thanked:
- 15 times in 1 posts
September 19, 2013 at 3:06 pm #190743Hi there-
I’m experiencing an issue when the social plugin is bringing in content from Facebook. When the original Facebook post is tagging another user, the link in Wall isn’t correctly appearing.
For example, please see http://socialraise.co/jfnew/index.php?option=com_content&view=article&id=31115:facebook-id-9c4402476cc721b6d448857d4da80189&catid=143:strings&Itemid=625
If you scroll down, you’ll see that 2Cellos (Sulic & Hauser) and Zucchero Fornaciari are hyperlinked because they were tagged in Facebook. Howvever the profile ID in the user is appending to our URL instead of Facebook. So for Zucchero Fornaciari, the URL goes to http://socialraise.co/profile.php?id=114975618534362 instead of https://www.facebook.com/114975618534362
Any idea how to fix this bug? I’ve provided the admin/ FTP credentials. Any help or guidance would be greatly appreciated.
Thanks,
Kevinphong nam Friendphong nam
- Join date:
- May 2015
- Posts:
- 3779
- Downloads:
- 1
- Uploads:
- 587
- Thanks:
- 499
- Thanked:
- 974 times in 888 posts
September 20, 2013 at 9:34 am #506466Hi Kevin,
Lets wait me some time to check this issue carefully. I will back to reply with detailed suggestion then.
phong nam Friendphong nam
- Join date:
- May 2015
- Posts:
- 3779
- Downloads:
- 1
- Uploads:
- 587
- Thanks:
- 499
- Thanked:
- 974 times in 888 posts
September 21, 2013 at 11:02 am #506563Hi Kevin,
The same issue of wrong FB user profile link also occurred when i tried to test the JA Social System Feed plugin on our JA Wall demo site. In this case, i have already told our developer to update this bug fix in the next version of our plugin. We can keep track on the work flow at http://pm.joomlart.com/browse/JAECPLGSOCIALFEED-65
I still keep track on this issue and remind you when the next update of this plugin is going to be available.
kjlarski JATCkjlarski
- Join date:
- October 2010
- Posts:
- 96
- Downloads:
- 3
- Uploads:
- 6
- Thanks:
- 6
- Thanked:
- 15 times in 1 posts
September 24, 2013 at 6:32 pm #506899Hi Leo-
Many thanks for your response. Is there any way to receive the fix prior to the next release? Please let me know anything I can do to help. The bug is quite noticeable, and would really like to get the fix in as soon as possible.
Thanks again for your continued help.
All the best,
Kevinphong nam Friendphong nam
- Join date:
- May 2015
- Posts:
- 3779
- Downloads:
- 1
- Uploads:
- 587
- Thanks:
- 499
- Thanked:
- 974 times in 888 posts
September 25, 2013 at 10:50 am #507035Hi Kevin,
I’m not the author of this JA Social Feed Plugin so that it will be quitely hard and take much time support for me to check, correct and test the fix. Anyways, this bug was already set to “Critical” in issue report so that our developer will prioritize to work on it first. Hope that the next update is going to be available in early time.
kjlarski JATCkjlarski
- Join date:
- October 2010
- Posts:
- 96
- Downloads:
- 3
- Uploads:
- 6
- Thanks:
- 6
- Thanked:
- 15 times in 1 posts
September 28, 2013 at 7:02 pm #507391Hi Leo-
Thank you again for your response. Is there any way the author could look at the issue now? It’s a critical bug and unfortunately, we cannot wait.
Thanks,
Kevinphong nam Friendphong nam
- Join date:
- May 2015
- Posts:
- 3779
- Downloads:
- 1
- Uploads:
- 587
- Thanks:
- 499
- Thanked:
- 974 times in 888 posts
October 2, 2013 at 4:05 am #507746Hi Kevin,
Our developer already prioritized to fix the FB profile link issue of imported content on your website before we release the next version of JA Social System Feed plugin. The tags of FB users in article content links correctly to the FB profile now. What he did is editing the /plugins/system/jasocial_feed/jasocial_feed.php file, adding these codes at line 83:
//fix imported data in early versions
$db = JFactory::getDbo();
$tables = $db->getTableList();
$k2installed = in_array($db->getPrefix().'k2_items', $tables);$versions = array('1.1.1');
foreach($versions as $ver) {
$file = dirname(__FILE__).'/'.$ver.'.log';
if(!JFile::exists($file)) {
switch($ver) {
case '1.1.1':
JFile::write($file, date('Y-m-d H:i:s'));$query = "UPDATE #__content
SET
`introtext` = REPLACE(`introtext`, ".$db->quote('"/profile.php').", ".$db->quote('"https://www.facebook.com/profile.php')."),
`fulltext` = REPLACE(`fulltext`, ".$db->quote('"/profile.php').", ".$db->quote('"https://www.facebook.com/profile.php').")
WHERE `alias` LIKE 'facebook-id-%'";
$db->setQuery($query);
$db->execute();if($k2installed) {
$query = "UPDATE #__k2_items
SET
`introtext` = REPLACE(`introtext`, ".$db->quote('"/profile.php').", ".$db->quote('"https://www.facebook.com/profile.php')."),
`fulltext` = REPLACE(`fulltext`, ".$db->quote('"/profile.php').", ".$db->quote('"https://www.facebook.com/profile.php').")
WHERE `alias` LIKE 'facebook-id-%'";
$db->setQuery($query);
$db->execute();
}
break;
}
}
}Anyways, I also attached this fixed jasocial_feed.php so that you can apply on your productive site. And can you check your website again and write some words to ensure that the issue is completely fixed ?
1 user says Thank You to phong nam for this useful post
kjlarski JATCkjlarski
- Join date:
- October 2010
- Posts:
- 96
- Downloads:
- 3
- Uploads:
- 6
- Thanks:
- 6
- Thanked:
- 15 times in 1 posts
October 3, 2013 at 3:28 pm #507921Hi there-
Great! This worked very well. Thank you, thank you!
Best,
KevinNovember 12, 2013 at 1:02 pm #511981Hi, for me it did not work. I replaced the attached file and continues charging only thumbnails.
phong nam Friendphong nam
- Join date:
- May 2015
- Posts:
- 3779
- Downloads:
- 1
- Uploads:
- 587
- Thanks:
- 499
- Thanked:
- 974 times in 888 posts
November 12, 2013 at 2:04 pm #511986Hi brandpropaganda,
The attached file (jasocial_feed.php) is only used to fix the incorrect FB profile of user being tagged in FB posts that our JA System Social Feed Plugin gets data from. I’m afraid that it is not related to the thumbnail issue you mentioned.
Anyways, can you tell me more details about your issue and check through our JA Wall template demo ? If the issue also happens on our demo, that means it is a bug of our template. We will hurry up to check and give you suggestions to fix it then.
November 14, 2013 at 8:23 pm #512268ok
The JA SOCIAL FEED plugin does not load images from facebook page and only the thumbnails. There is a bug? Can I do something to fix this problem?
URL: http://vitrinealphaville.com.br/
See photos in articles.
phong nam Friendphong nam
- Join date:
- May 2015
- Posts:
- 3779
- Downloads:
- 1
- Uploads:
- 587
- Thanks:
- 499
- Thanked:
- 974 times in 888 posts
November 15, 2013 at 9:27 am #512336Hi,
It seems that there is something wrong with the JA System Social Feed plugin configuration or the menu item settings, because I tested our this plugin on our JA Zite template to display the FB post with images from Iveco page. The K2 items contaning FB imported data still display fine full image like my attached snapshot below.
In this case, you can send me PM with the site’s admin login info. I will help you to check this issue.
November 15, 2013 at 5:30 pm #512384please take a look at the website: http://www.vitrinealphaville.com.br
See the images are of low quality because the plugin already loaded by Article scoial feed only carries the miniature facebook
phong nam Friendphong nam
- Join date:
- May 2015
- Posts:
- 3779
- Downloads:
- 1
- Uploads:
- 587
- Thanks:
- 499
- Thanked:
- 974 times in 888 posts
November 16, 2013 at 4:39 am #512411Hi brandpropaganda,
Yes, you are right. The plugin does import the low quality of some thumbnail images from FB posts. Please wait me for some time to ask this plugin developer for better solution in this case or at least a clear explanation on it. I will come back to reply you as soon as possible.
AuthorPostsViewing 14 posts - 1 through 14 (of 14 total)This topic contains 14 replies, has 3 voices, and was last updated by phong nam 11 years ago.
We moved to new unified forum. Please post all new support queries in our New Forum
Posts from Facebook has an incorrect URL
Viewing 14 posts - 1 through 14 (of 14 total)