Experiencing a 401 Unauthorized Error During Update?

If you're seeing a 401 Unauthorized error when trying to update your Joomla extension, it's likely due to our new two-factor authentication (2FA) security measure for your Download ID.
To resolve this, check your email (Spam folder?) for a message to approve your server or device, or read our detailed blog post here( onlinecommunityhub.nl/best-practice/new-...-extension-downloads) to understand the steps involved. This will guide you through approving your server for future updates.

No bug warning before uploading a video to youtube

Meer
2 jaren 1 maand geleden #2234 door Hervé
Hello Ruud
I hope you are well?

1/ location of the text that warns about loading cookies
Is it possible to translate, or even supercharge "Click to load the embedded media..."?

2/ see the video on the blog page
clibre.eu/infos-sur-le-libre >> "Si c'est gratuit, vous êtes le produit"

What should I add in the safe overload I made of blog_item.php to see the video?
<?php echo JHTML::_('string.truncate', strip_tags($this->item->introtext, ), 450, true, true); ?>
regards

Graag Inloggen deelnemen aan het gesprek.

Meer
2 jaren 1 maand geleden #2243 door Ruud van Lent
Beantwoord door Ruud van Lent in topic warning before uploading a video to youtube

Hello Ruud
I hope you are well?

Hi Hervé, all is well here considering the situation in the world today :S

1/ location of the text that warns about loading cookies
Is it possible to translate, or even supercharge "Click to load the embedded media..."?

2/ see the video on the blog page
clibre.eu/infos-sur-le-libre >> "Si c'est gratuit, vous êtes le produit"

Yes, that is possible: it is a language string that you can change via a language override: PLG_CONTENT_OCHFITFIDS_MESSAGE_CLICKTOLOADVIDEO

What should I add in the safe overload I made of blog_item.php to see the video?
<?php echo JHTML::_('string.truncate', strip_tags($this->item->introtext, ), 450, true, true); ?>
regards
 

with the code above you are stripping the iframe, so you should remove that from the array, possibly others as well. I would start without the strip_tags and see if it displays and then add until it doesn't :)

Graag Inloggen deelnemen aan het gesprek.

Meer
2 jaren 1 maand geleden #2246 door Hervé
Beantwoord door Hervé in topic warning before uploading a video to youtube
HI
1/ perfect
2/
I see that my command line has been deleted!
I added tags: br', 'img', 'iframe', 'b', 'strong' to see the content in the strip_tags

JHTML::_('string.truncate',  strip_tags($this->item->introtext, ), 450, true, true) ;

Can you tell me more precisely which tag has been added?

Graag Inloggen deelnemen aan het gesprek.

Meer
2 jaren 1 maand geleden #2247 door Hervé
Beantwoord door Hervé in topic warning before uploading a video to youtube
Ah I'm writing to you by mail because it's deleted

Graag Inloggen deelnemen aan het gesprek.

Meer
2 jaren 1 maand geleden #2249 door Hervé
Beantwoord door Hervé in topic warning before uploading a video to youtube
Hi again
I put it back for the memory
If I put back
<echo $this->item->introtext; ?>
=> video with the plugin setting is displayed
If I put :
<?php echo JHTML::_('string.truncate', 300, true, true); ?>
nothing is displayed

but can you take into account that all this setting with all these tags are important to me, as they should work for other types of content with a nice layout.
Is there any way to get around this with a class? or something else while keeping my string. truncate?

Graag Inloggen deelnemen aan het gesprek.

Meer
2 jaren 1 maand geleden #2250 door Ruud van Lent
Beantwoord door Ruud van Lent in topic warning before uploading a video to youtube
Truncate will also (likely) truncate the iframe code as that is over the max length.
This gets very complicated, something like first remove the iframe, truncate and then add the iframe back.

Graag Inloggen deelnemen aan het gesprek.

Meer
2 jaren 1 maand geleden #2251 door Hervé
Beantwoord door Hervé in topic warning before uploading a video to youtube
Re
ok as I'm motivated, I have an idea to make a test on the existence of the plugin

If (plugin ochFitVids !?) then
   <echo $this->item->introtext; ?>
otherwise
  <?php echo JHTML::_('string.truncate', ... (full display with truncate)

If you have the condition, maybe it would be a good idea?

Graag Inloggen deelnemen aan het gesprek.

Meer
2 jaren 1 maand geleden - 2 jaren 1 maand geleden #2257 door Ruud van Lent
Beantwoord door Ruud van Lent in topic warning before uploading a video to youtube
Code:
if (stripos($this->item->introtext, '<iframe>' !== false) { // we have iframe } else { // truncate as there is no iframe }
Laatst bewerkt 2 jaren 1 maand geleden door Ruud van Lent.
De volgende gebruiker (s) zei dank u: Hervé

Graag Inloggen deelnemen aan het gesprek.

Meer
2 jaren 1 maand geleden #2264 door Hervé
Beantwoord door Hervé in topic warning before uploading a video to youtube
Bingo with
if (stripos($this->item->introtext, 'iframe') !== false)
Thanks

Graag Inloggen deelnemen aan het gesprek.

Meer
2 jaren 1 maand geleden #2265 door Ruud van Lent
Beantwoord door Ruud van Lent in topic warning before uploading a video to youtube
Top!

Graag Inloggen deelnemen aan het gesprek.