JA Facebook Share plugin says it has shared and posted to facebook from our site, but does not show up on facebook.
url is http://southerntimesmagazine.com
I have already had some problems with the ssl on this site and the facebook plugins. I tried editing plg_jafacebookshare.php the same way you suggested for the Like It plugin (http://www.joomlart.com/forums/topic/ja-facebook-like-it-error/) by replacing:
function getRootUrl() {
$url = str_replace(JURI::root(true), ”, JURI::root());
$url = preg_replace(“//+$/”, ”, $url);
return $url;
}
with:
function getRootUrl() {
global $mainframe;
$force_ssl = $mainframe->getCfg( ‘force_ssl’ );
$url = str_replace(JURI::root(true), ”, JURI::root());
$url = preg_replace(“//+$/”, ”, $url);
if($force_ssl != 2) {
//not use ssl for entire site
$url = preg_replace(“/^https:/i”, ‘http:’, $url);
}
return $url;
}
This corrected the url being shared from https to http, but still doesn not actually share it to facebook.