Pour mettre à jour Joomla 3.10 vers php8 contenant warp7
Nous devons mettre à jour template warp 7
Je change Wordpress->Joomla
Woocommerce -> bostrape
Je vérifeir le dossier si il est bien avec Joomla J -> majescule
Je vérifier LAYOUT -> libraries/vendor/joomla/input/src/Input.php on line 41
lien https://github.com/bulgaru/warp7-php8.0
https://drive.google.com/drive/folders/1UrfeH8EXK-EFKZah9yJqdUAi0Q9X6kjJ?usp=sharing
je remplace le fichier de jommla input.php en cas de soucis
https://drive.google.com/file/d/1KMbClU2oI7yne8Cq-H__LKDkzq_bo6_D/view?usp=sharing
Pour mettre à jour HELIX et Page builer vers php 8
Installer directement https://drive.google.com/file/d/1W3hittWeQ_ceqkWA-x2q554rmAyk1yAj/view?usp=share_link
Fatal error: Call to undefined function iconv() in
Quand j'essayé d'ajouter un article
pour régler cela : administrator/components/com_finder/helpers/indexer/parser/html.php line 35:
CODE: SELECT ALL
$input = iconv("utf-8", "utf-8//IGNORE", $input);
You should be able to use something like
CODE: SELECT ALL
if (function_exists('iconv')) { $input = iconv("utf-8", "utf-8//IGNORE", $input); }
Commentaires
Enregistrer un commentaire