Ali.Dbg
Forum Replies Created
-
Forum: Reviews
In reply to: [WP-Farsi] Compatible for php 7با سلام
ورژن جدید با آخرین ورژن پی اچ پی و وردپرس تست شدForum: Plugins
In reply to: [WP-Farsi] ایراد صفحه مرگدر ضمن ورژن پلاگین رو هم اعلام کنید
Forum: Plugins
In reply to: [WP-Farsi] ایراد صفحه مرگfile wp-includes/functions.php ro pak va dobare upload konid
Forum: Reviews
In reply to: [WP-Farsi] Serious issueFixed.
Forum: Plugins
In reply to: [Contact Form 7] Error after sentThanks.
Forum: Plugins
In reply to: [Contact Form 7] Error after sentForum: Plugins
In reply to: [Contact Form 7] Error after sentTheme: Frontier
Plugins: WP-Farsi, Flamingo, Permalink Finder, WP-Sweep, Akismet
and
define(‘WPCF7_LOAD_JS’, false);Forum: Reviews
In reply to: [WP-Farsi] ایراد جدی در برای غیر فعال کردنسلام
خوشحالم که مفید واقع شدهForum: Plugins
In reply to: [Url Redirect] Change esc_url to esc_url_rawThanks for update!
Forum: Themes and Templates
In reply to: [Frontier] The Problem with commentThanks @ronangelo 🙂
Forum: Plugins
In reply to: [Contact Form 7] Mail not received on gmail from Contact Form 7test mail function
testmail.php<?php // The message $sendto = "[email protected]"; $subject = "php mail test"; $message = 'Test message using PHP mail()'; $header = "From: webmaster@".$_SERVER["SERVER_NAME"]."\n"; $header .= "Content-Type: text/html; charset=utf-8\n"; $message = 'Test message using PHP mail()'; $subject='Test'; // Send if (mail($sendto,$subject,$message,$header, "-fwebmaster@".$_SERVER["SERVER_NAME"])) { echo 'Mail sent!'; } else { echo 'Error! Mail was not sent.'; }; ?>Forum: Plugins
In reply to: [Contact Form 7] Mail not received on gmail from Contact Form 7The problem not related to contact form 7
problem is from web hosting
after check your mail@address
change “@mail” function to “@mb_send_mail” for fix mail sendingForum: Plugins
In reply to: [Contact Form 7] Mail not received on gmail from Contact Form 7Pls Change PHPmailer Function
Find in root/wp-includes/class-phpmailer.phpprivate function mail_passthru($to, $subject, $body, $header, $params) { if ( ini_get('safe_mode') || !($this->UseSendmailOptions) ) { $rt = @mail($to, $this->EncodeHeader($this->SecureHeader($subject)), $body, $header); } else { $rt = @mail($to, $this->EncodeHeader($this->SecureHeader($subject)), $body, $header, $params); } return $rt; }replace with
private function mailPassthru($to, $subject, $body, $header, $params) { $subject= trim(str_replace(array("\r", "\n"), '', $subject)); if (ini_get('safe_mode') || !($this->UseSendmailOptions)) { $rt = @mb_send_mail($to, $subject, $body, $header); } else { $rt = @mb_send_mail($to, $subject, $body, $header, $params); } return $rt; }Forum: Themes and Templates
In reply to: [SemPress] Widget ul li problem!resolved by salsaturation
Forum: Themes and Templates
In reply to: [Theme: Sempress] How to Fix Widget UL Li items orderingGreat Job
Thanks 🙂