My Joomla World
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,...
- Détails
- Écrit par Alain
- Catégorie : Joomla World 3.x
- Affichages : 3681
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:
- 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)) {
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 :
- 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)) {
- Détails
- Écrit par Alain
- Catégorie : Joomla World 3.x
- Affichages : 4614
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
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()
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()
- Détails
- Écrit par Alain
- Catégorie : Joomla World 3.x
- Affichages : 5973
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
Joomla World 3.x
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,...