My Joomla World

1 1 1 1 1 100%/5 (1 Vote)

or everything I always wanted to know about Joomla ! So if it can help you...it's here, in a jumble....
ou..tout ce que j'ai toujours voulu savoir sur Joomla ! Alors si çà peut vous servir....c'est ici, en vrac,...

 

1 1 1 1 1 100%/5 (2 Votes)

english

When upgrading to PHP 7.3 and higher, jcomments 3.0.7 and captcha does not work anymore.

It is probably a warning or error PHP message in the ajax response which cause the problem. I would list here what I have found and corrected:

  1. in ...\components\com_jcomments\tpl\default\tpl_form.php replace the following code (line 193) :
     if (count($customBBCodes)) {
    by the following one's :
     if (is_array($customBBCodes) && count($customBBCodes)) { 

french

si vous migrez le PHP de votre site en version PHP 7.3 et au dessus, jcomments 3.0.7 ainsi que le captcha ne fonctionneront plus. C'est très certainement un problème de message warning/erreur de la version PHP qui apparaît. Je liste ci-dessous les erreurs que j'ai pu trouver et corriger :

  1. dans ...\components\com_jcomments\tpl\default\tpl_form.php remplacez le code suivant (ligne 193) :
     if (count($customBBCodes)) {
    par le code suivant :
     if (is_array($customBBCodes) && count($customBBCodes)) {
1 1 1 1 1 100%/5 (1 Vote)

Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; JCommentsACL has a deprecated constructor in

english

this error appears when upgrade to PHP 7.3 or higher. To fix this issue, edit the components/com_jcomments/classes/acl.php file and replace :

function JCommentsACL()

by

function __construct()

 

french

l'erreur apparaît lors d'un upgrade de PHP 7.3 ou plus grand. Pour corriger cette erreur modifiez le fichier components/com_jcomments/classes/acl.php et remplacez remplacez l'instruction :

function JCommentsACL() 

par

function __construct()

 

1 1 1 1 1 100%/5 (2 Votes)

Comment peut-on afficher les articles d'une catégories ET de ses sous-catégories dans joomla 3 ?

Un petit paramètre a été prévu ! Mais il ne faut pas le manquer. Le voici : 

Sous-catégories

or everything I always wanted to know about Joomla 3.x ! So if it can help you...it's here, in a jumble....
ou..tout ce que j'ai toujours voulu savoir sur Joomla ! Alors si çà peut vous servir....c'est ici, en vrac,...