Ulises Nicolini
Forum Replies Created
-
I found a solution! The “Other 6G Settings” was blocked ajax-request. I disable the option “Block query strings” and the “load more” function of my theme work again.
- This reply was modified 3 years, 8 months ago by Ulises Nicolini.
Forum: Plugins
In reply to: [Contact Form 7] 500 Internal Server error when submit formOnly Updraft Plus, is a very simple site! The wp_mail function have some trouble. I dont understand, the files ‘class-phpmailer.php’ and ‘class-smtp.php’ are in correct path, but the execution hang at ‘new PHPMailer’. ¡?
require_once ABSPATH . WPINC . ‘/class-phpmailer.php’;
require_once ABSPATH . WPINC . ‘/class-smtp.php’;$phpmailer = new PHPMailer( true );
Forum: Plugins
In reply to: [Contact Form 7] 500 Internal Server error when submit formWell, before search and debug code, i found the problem at wp_mail core wordpress function.
https://core.trac.ww.wp.xz.cn/browser/tags/5.4/src/wp-includes/pluggable.php#L170
At line 216, get an error “could not instantiate phpmailer” ¿Cant’ find the previus require?
$phpmailer = new PHPMailer( true );
Then i remove all phpmailer reference and use this simple code.
$header = ‘From: ‘ .$from_email. “\r\n” .
‘Reply-To: ‘.$from_email . “\r\n” .
‘X-Mailer: PHP/’ . phpversion();
return mail($to,$subject,$message,$header);Hello quoup, i have this problem too. Can you give me mor information on use gettext to solve thr problem?