İletişim Formu Sorunu (ÇÖZÜLDÜ)

KASPER

OpenCart-TR
Katılım
14 Tem 2010
Mesajlar
46
Tepkime puanı
0
Puanları
0
Konum
Samsun
Web sitesi
www.samsundaemlak.com , http
merhaba. ayarlarını smtp yaptığı halde iletişim formunda hata alan arkadaşlar için aşağıdaki işlem çözüm olacaktır.


system/library/mail.php dosyasında

16. satırı aşağıdaki kodla değiştir
Kod:
public $newline = "\r\n";

17. satır aşağıdaki kodla değiştir
Kod:
public $crlf = "\r\n";

ve

271. satırdaki kodu bul
Kod:
if ($this->verp) {fputs($handle, 'MAIL FROM: <' . $this->from . '>XVERP' . $this->crlf);} else {fputs($handle , 'MAIL FROM: <' . $this->from . '>' . $this->crlf);}

Değiştir

Kod:
if ($this->verp) {fputs($handle, 'MAIL FROM: <' . $this->username . '>XVERP' . $this->crlf);} else {fputs($handle , 'MAIL FROM: <' . $this->username . '>' . $this->crlf);}



belki işinize yarıyabilir. ben sorunu bu şekilde çözdüm. sürüm 1.5.5.X
 
Üst