[TH] Thumbnails [Deleted]

Ugh... I just purchased the XF2 Essential Suite subscription and was hoping to see this in the list of available add-ons for XF2.

So - I'm just seeing this thread and realized that there's been no update as of yet. It's been 4 months since the last update. Can we get a wee bit of an ETA as to when this and other TH add-ons for XF1 will be made compatible with XF2 please? Thanks!

Cheers.

J.
 
Ugh... I just purchased the XF2 Essential Suite subscription and was hoping to see this in the list of available add-ons for XF2.

So - I'm just seeing this thread and realized that there's been no update as of yet. It's been 4 months since the last update. Can we get a wee bit of an ETA as to when this and other TH add-ons for XF1 will be made compatible with XF2 please? Thanks!

Cheers.

J.
No official update yet but if anything changes we will post an official announcement here.
 
We are using [TH] Thumbnails 2.1.6a on our forum for many years. But we have a lot of issues with broken images and insecure content because the addon will use HTTP url's instead of HTTPS. Is there any fix for this?

Code:
<span class="thumbContainer"> <a href="..." data-thumbnailurl="http://a8.sphotos.ak.fbcdn.net/hphotos-ak-ash4/388484_2264210124982_1240372393_32014810_96199775_n.jpg" class="thumb Av1s Thumbnail"> <img style="background-image: url(proxy.php?image=http%3A%2F%2Fa8.sphotos.ak.fbcdn.net%2Fhphotos-ak-ash4%2F388484_2264210124982_1240372393_32014810_96199775_n.jpg&amp;hash=fd00e3f4f609fb035169f90162446a8a); width:33.3333333333px; height:33.3333333333px; overflow: hidden;" src="styles/default/xenforo/clear.png" /> </a>
 
We are using [TH] Thumbnails 2.1.6a on our forum for many years. But we have a lot of issues with broken images and insecure content because the addon will use HTTP url's instead of HTTPS. Is there any fix for this?

Code:
<span class="thumbContainer"> <a href="..." data-thumbnailurl="http://a8.sphotos.ak.fbcdn.net/hphotos-ak-ash4/388484_2264210124982_1240372393_32014810_96199775_n.jpg" class="thumb Av1s Thumbnail"> <img style="background-image: url(proxy.php?image=http%3A%2F%2Fa8.sphotos.ak.fbcdn.net%2Fhphotos-ak-ash4%2F388484_2264210124982_1240372393_32014810_96199775_n.jpg&amp;hash=fd00e3f4f609fb035169f90162446a8a); width:33.3333333333px; height:33.3333333333px; overflow: hidden;" src="styles/default/xenforo/clear.png" /> </a>
I'd suggest not using http based images as that should keep them from being shown as broken or insecure.
 
I'd suggest not using http based images as that should keep them from being shown as broken or insecure.
Unfortunately, this is not an option because I can not control the links posted by thousands of users on the forum. Is there a real solution to this issue? Maybe just str_replace HTTP to HTTPS in your addon or something like that?
 
To those who use this addon with PHP 7.4:

After upgrading to PHP 7.4, the Thumbnails addon causes the following error message:
Code:
ErrorException: Trying to access array offset on value of type int - library/ThemeHouse/Thumbnails/Model/Thumbnails.php:900

I fixed this issue by encapsulating the faulty line with an if-clause:
Code:
if (is_array($thread)) {
    $firstPosts[$threadId] = $thread['first_post_id'];
}
 
To those who use this addon with PHP 7.4:

After upgrading to PHP 7.4, the Thumbnails addon causes the following error message:
Code:
ErrorException: Trying to access array offset on value of type int - library/ThemeHouse/Thumbnails/Model/Thumbnails.php:900

I fixed this issue by encapsulating the faulty line with an if-clause:
Code:
if (is_array($thread)) {
    $firstPosts[$threadId] = $thread['first_post_id'];
}

We're on PHP 7.4 no issues with this plugin no changes needing to be made but thanks for the post.
 
Top Bottom