Bonjour,
J'ai le même problème depuis que j'ai fait la mise à jour hier soir.
--> invalid adress (voir image jointe)
Pourtant
- Joomla est à jour
- Hikashop vient d'être réinstallé à l'instant (le 22/04/2016 à 14h10)
- J'ai mis le popup en vex (voir image jointe)
du coup j'ai fait une modif sur les fichiers mail.php et order.php comme indiqué à ci-après
Hi,
It's a small change in the new release of Joomla which causes the problem.
In the file administrator/components/com_hikashop/classes/mail.php
Change the line:
$this->mailer->AddReplyTo(array($this->cleanText($mail->reply_email),$replyToName));
to:
if(HIKASHOP_J30) {
$this->mailer->addReplyTo($this->cleanText($mail->reply_email), $replyToName);
} else {
$this->mailer->addReplyTo(array($this->cleanText($mail->reply_email), $replyToName));
}
And in the file administrator/components/com_hikashop/classes/order.php
Change the line
$mail->mailer->addReplyTo(array($user_email,$user_name));
to:
if(HIKASHOP_J30) {
$mail->mailer->addReplyTo($mail->cleanText($user_email), $user_name);
} else {
$mail->mailer->addReplyTo(array($user_email, $user_name));
}
That will fix the problem.
We've added the patches on our end too, so you can also just download the install package via the menu My account>My subscriptions and install it on your website and that will add the patches and fix the problem.
Mais le problème est toujours présent.
Je ne sais plus quoi faire
Pourriez-vous m'orienter en urgence svp.
En cas de besoin l'adresse du site est :http://www.lepoulaillerdenicolas.fr/
Merci d'avance.