Notice

The forum is in read only mode.

Support Forum

Welcome! Support Forums have been reactivated
Welcome the Technical Support section. Help us in assisting you by providing us with a concise and descriptive elaboration of your issues. Be specific and if possible, provide us with a step-by-step instruction in replicating your problem.

Article preview no longer working

9 years 4 months ago
  • Andrew's Avatar
    Topic Author
  • Andrew
  • Offline
  • Fresh Boarder
  • Posts: 48
  • Thank you received: 4
Licenses:
JomSocial Expired

Ever since upgrading to Joomla 3.3 the article preview and thumbnails no longer are shown when entering an article link into the status update form. I've recorded a small video demonstrating the problem.

therebel.website/public_html/images/videos/nomorepreview.mp4

9 years 4 months ago
Licenses:

Hi Andrew,

the URL at that video not too clear for me. the first one is:
they.com right?
that website not shareable, because when I visit the site they protected by htaccess login.
at your browser not have that, because already "remembered" by your browser it self.

and what 2nd URL that you shared?

Regards,
Albert

Attachments:
9 years 4 months ago
  • Andrew's Avatar
    Topic Author
  • Andrew
  • Offline
  • Fresh Boarder
  • Posts: 48
  • Thank you received: 4
Licenses:
JomSocial Expired

I don't remember that the article in my demo video was from a site with the domain name they.com. It was from JC.com, but it doesn't really matter because this problem happens with articles from any website, even my own, for example this article here - therebel.website/en/editorial/821237-what-s-crazier - and I know for sure that link works beautifully with Facebook and I had no problems with jomsocial in the past getting a preview and thumbnail pic with links to articles on my own site. These problems only started after the last upgrade, when I upgraded the site to Joomla 3.3.6

9 years 4 months ago
Licenses:

Hi Andrew,

for therebel.website/en/editorial/821237-what-s-crazier I confirmed this a bug. because the domain it self .website.
please wait for the fix.

I tried share other URL:
phx.corporate-ir.net/phoenix.zhtml?c=145...wsArticle&ID=1996302

no problem with article preview.

Regards,
Albert

Attachments:
9 years 4 months ago
  • Andrew's Avatar
    Topic Author
  • Andrew
  • Offline
  • Fresh Boarder
  • Posts: 48
  • Thank you received: 4
Licenses:
JomSocial Expired

Great, automatic previews/thumbnails are working now. Thanks for that. Would be great, if you could fix it for same site articles too. It was working fine before the upgrade.

9 years 3 months ago
  • Andrew's Avatar
    Topic Author
  • Andrew
  • Offline
  • Fresh Boarder
  • Posts: 48
  • Thank you received: 4
Licenses:
JomSocial Expired

Any progress on this matter?

9 years 3 months ago
Licenses:

Hi Andrew,

still not fixed yet, I will let you know if developer done with this.

Regards

The following user(s) said Thank You: Andrew
9 years 2 months ago
  • Andrew's Avatar
    Topic Author
  • Andrew
  • Offline
  • Fresh Boarder
  • Posts: 48
  • Thank you received: 4
Licenses:
JomSocial Expired

I just tried again, and Jomsocial status updates are still not working for links to articles on my own site. That's a shame, because it would good to be able to send traffic to important new articles on my own site, not just to those on other sites.

9 years 2 months ago
Licenses:

Hi Andrew,

please try this solution:
open /components/com_community/assets/_release/js/bundle.js, and find this code

/^(|.*\s)((https?:\/\/|www\.)([a-z0-9-]+\.)+[a-z]{2,4}(:\d+)?(\/.*)?)(\s.*|)$/i
changing it to
/^(|.*\s)((https?:\/\/|www\.)([a-z0-9-]+\.)+[a-z]+(:\d+)?(\/.*)?)(\s.*|)$/i

after that clear any jomsocial and browser cache. let me know the result.

Regards

9 years 2 months ago
  • Andrew's Avatar
    Topic Author
  • Andrew
  • Offline
  • Fresh Boarder
  • Posts: 48
  • Thank you received: 4
Licenses:
JomSocial Expired

This made no difference. Previews (thumbnail+introtext) of articles on my own site still don't work.

9 years 2 months ago
  • Andrew's Avatar
    Topic Author
  • Andrew
  • Offline
  • Fresh Boarder
  • Posts: 48
  • Thank you received: 4
Licenses:
JomSocial Expired

Article preview is no longer working at all, not just for articles on my own site.

Try this link:

theuglytruth.wordpress.com/2015/02/09/uk...ds-for-their-organs/

9 years 1 month ago
  • Andrew's Avatar
    Topic Author
  • Andrew
  • Offline
  • Fresh Boarder
  • Posts: 48
  • Thank you received: 4
Licenses:
JomSocial Expired

This still hasn't been resolved.

See screenshot:

awesomescreenshot.com/07a4j3t553

9 years 1 month ago
Licenses:

Hi,
please make override for
/com_community/templates/default/activities.profile.php, at line 172 you can found this code. changing it from

<?php if ($headMetaParams->get('image')) { ?>
<div class="span4">
    <a <?php echo $href; ?>>
        <img class="joms-stream-thumb" src="<?php echo $headMetaParams->get('image'); ?>" />
    </a>
</div>
<?php } ?>
<div class="span<?php echo $headMetaParams->get('image') ? '8' : '12' ?>">
    <article class="joms-stream-fetch-content" style="margin-left:0; padding-top:0">
        <a <?php echo $href; ?>>
            <span class="joms-stream-fetch-title"><?php echo $headMetaParams->get('title'); ?></span>
        </a>
            <span class="joms-stream-fetch-desc"><?php echo CStringHelper::trim_words($headMetaParams->get('description')); ?></span>
            <?php if ($headMetaParams->get('link')) { ?>
                <cite><?php echo preg_replace('#^https?://#', '', $headMetaParams->get('link')); ?></cite>
            <?php } ?>
    </article>
</div>
to
<div class="span<?php echo $headMetaParams->get('image') ? '12' : '12' ?>">
    <?php if ($headMetaParams->get('image')) { ?>
        <a <?php echo $href; ?>>
            <img class="joms-stream-thumb" src="<?php echo $headMetaParams->get('image'); ?>" />
        </a>
    <?php } ?>
    <article class="joms-stream-fetch-content" style="margin-left:0; padding-top:0">
        <a <?php echo $href; ?>>
            <span class="joms-stream-fetch-title"><?php echo $headMetaParams->get('title'); ?></span>
        </a>
            <span class="joms-stream-fetch-desc"><?php echo CStringHelper::trim_words($headMetaParams->get('description')); ?></span>
            <?php if ($headMetaParams->get('link')) { ?>
                <cite><?php echo preg_replace('#^https?://#', '', $headMetaParams->get('link')); ?></cite>
            <?php } ?>
    </article>
</div>

if still cant, you can provide me valid FTP access detail. your current FTP access detail at site info is not valid anymore.

Regards

Regards.

Moderators: Piotr Garasiński
Powered by Kunena Forum

Join 180,000 websites creating Amazing communities

JomSocial is the most complete, easy-to-use addon that turns Joomla CMS into a
full -fledged, social networking site

TRY NOW BUY NOW