CenkOnsoy adlı üyeden alıntı

Hosting firmanız ile ilgili olarak gorusup uygun smtp ayarlarini alarak sisteme tanimlamaniz gerekiyor. Bu konuda bircok eklentide mevcut wp smtp diye aratmaniz yeterlidir.



o dediklerinide yapmıştım zaten ama form kısmına gelip doldurdugumda yine hata veriyor şu şekilde.

Warning: stream_set_timeout() has been disabled for security reasons in /home/askebap.com/httpdocs/wp-includes/class-smtp.php on line 234

Warning: stream_set_timeout() has been disabled for security reasons in /home/askebap.com/httpdocs/wp-includes/class-smtp.php on line 828
Server Error: WordPress mail method failed!

Ek Olarak: Natroyla konustum bu iki satırdaki timeout degerlerini 0 yapman yeterli olacaktır dedi.ama nereyi degişecem tam anlamadım.timeout zaten 0 gibi gorunuyor.

234 satırı

// SMTP server can take longer to respond, give longer timeout for first read
// Windows does not have support for this timeout function
if (substr(PHP_OS, 0, 3) != 'WIN') {
$max = ini_get('max_execution_time');
if ($max != 0 && $timeout > $max) { // Don't bother if unlimited
@set_time_limit($timeout);
}
stream_set_timeout($this->smtp_conn, $timeout, 0);
}

828 satırı

}
stream_set_timeout($this->smtp_conn, $this->Timeout);
if ($this->Timelimit > 0) {
$endtime = time() + $this->Timelimit;
}

Ek Olarak: stream_set_timeout hakkında bilgisi olan hiç kimse yok mu ?

Ek Olarak: stream_set_timeout değerini nasıl değiştirdiniz acaba?