Тестовая версия ocStore Liveopencart 3.0.3.9b
- liveopencart
- liveopencart.ru
- Сообщения: 229
- Зарегистрирован: 10.03.2022
- Мои дополнения: 19th19th
- Поблагодарил: 66 раз
- Спасибо: 107 раз
- Контактная информация:
Re: Тестовая версия ocStore Liveopencart 3.0.3.9b
Обновление css для чуть более современного вида стандартного шаблона. Спасибо spectrum
- liveopencart
- liveopencart.ru
- Сообщения: 229
- Зарегистрирован: 10.03.2022
- Мои дополнения: 19th19th
- Поблагодарил: 66 раз
- Спасибо: 107 раз
- Контактная информация:
Re: Тестовая версия ocStore Liveopencart 3.0.3.9b
Логи nginx и php тоже пустые.20strannik08 писал(а): ↑05 сен 2024, 17:41 В админке только на php8.1 не впускает, никаких сообщений о неверном пароле и тд, просто перезагружается форма авторизации(на странице уже никаких ошибок нет). Лог самого ocstore пуст.
Есть решение?
Удалил из настроек сервера – заработало:
session.gc_maxlifetime=5356800;
session.cookie_lifetime=5356800;
- liveopencart
- liveopencart.ru
- Сообщения: 229
- Зарегистрирован: 10.03.2022
- Мои дополнения: 19th19th
- Поблагодарил: 66 раз
- Спасибо: 107 раз
- Контактная информация:
Re: Тестовая версия ocStore Liveopencart 3.0.3.9b
Исправление работы SeoPro под PHP 8.2 - спасибо sh1sh1n
Создание заказа даже при ошибках с почтой - спасибо spectrum
Создание заказа даже при ошибках с почтой - спасибо spectrum
Re: Тестовая версия ocStore Liveopencart 3.0.3.9b
Можно ещё взять правки отсюда:
https://github.com/opencart/opencart/co ... adbd6cf71e
в /system/library/mail.php
13 строка:
Код: Выделить всё
class Mail {
Код: Выделить всё
class Mail extends \stdClass {
Пока других ошибок не нашёл.
- spectrum
- Разработчик дополнений
- Сообщения: 75
- Зарегистрирован: 10.03.2022
- Мои дополнения: Spectrum
- Поблагодарил: 44 раз
- Спасибо: 32 раз
Re: Тестовая версия ocStore Liveopencart 3.0.3.9b
Оформление заказа даже при ошибке отправки почты. На оригинальность, да и вообще ни на что не претендую.
system/library/mail.php
system/library/mail/smtp.php
system/library/mail.php
Код: Выделить всё
<?php
/**
* @package OpenCart
* @author Daniel Kerr
* @copyright Copyright (c) 2005 - 2017, OpenCart, Ltd. (https://www.opencart.com/)
* @license https://opensource.org/licenses/GPL-3.0
* @link https://www.opencart.com
*/
/**
* Mail class
*/
class Mail extends \stdClass {
protected $to;
protected $from;
protected $sender;
protected $reply_to;
protected $subject;
protected $text;
protected $html;
protected $attachments = array();
public $parameter;
/**
* Constructor
*
* @param string $adaptor
*
*/
public function __construct($adaptor = 'mail') {
$class = 'Mail\\' . $adaptor;
if (class_exists($class)) {
$this->adaptor = new $class();
} else {
trigger_error('Error: Could not load mail adaptor ' . $adaptor . '!');
exit();
}
}
/**
*
*
* @param mixed $to
*/
public function setTo($to) {
$this->to = $to;
}
/**
*
*
* @param string $from
*/
public function setFrom($from) {
$this->from = $from;
}
/**
*
*
* @param string $sender
*/
public function setSender($sender) {
$this->sender = $sender;
}
/**
*
*
* @param string $reply_to
*/
public function setReplyTo($reply_to) {
$this->reply_to = $reply_to;
}
/**
*
*
* @param string $subject
*/
public function setSubject($subject) {
$this->subject = $subject;
}
/**
*
*
* @param string $text
*/
public function setText($text) {
$this->text = $text;
}
/**
*
*
* @param string $html
*/
public function setHtml($html) {
$this->html = $html;
}
/**
*
*
* @param string $filename
*/
public function addAttachment($filename) {
$this->attachments[] = $filename;
}
/**
*
*
*/
public function send() {
if (!$this->to) {
return $this->error('Mail Error: E-Mail "to" required!');
}
if (!$this->from) {
return $this->error('Mail Error: E-Mail "from" required!');
}
if (!$this->sender) {
return $this->error('Mail Error: E-Mail "sender" required!');
}
if (!$this->subject) {
return $this->error('Mail Error: E-Mail "subject" required!');
}
if (!$this->text && !$this->html) {
return $this->error('Mail Error: E-Mail "message" required!');
}
foreach (get_object_vars($this) as $key => $value) {
$this->adaptor->$key = $value;
}
$this->adaptor->send();
}
private function error($text) {
return user_error($text, E_USER_WARNING);
}
}
system/library/mail/smtp.php
Код: Выделить всё
<?php
namespace Mail;
class Smtp extends \stdClass {
public $smtp_hostname;
public $smtp_username;
public $smtp_password;
public $smtp_port = 25;
public $smtp_timeout = 5;
public $max_attempts = 3;
public $verp = false;
public function send() {
if (is_array($this->to)) {
$to = implode(',', $this->to);
} else {
$to = $this->to;
}
$boundary = '----=_NextPart_' . md5(time());
$header = 'MIME-Version: 1.0' . PHP_EOL;
$header .= 'To: <' . $to . '>' . PHP_EOL;
$header .= 'Subject: =?UTF-8?B?' . base64_encode($this->subject) . '?=' . PHP_EOL;
$header .= 'Date: ' . date('D, d M Y H:i:s O') . PHP_EOL;
$header .= 'From: =?UTF-8?B?' . base64_encode($this->sender) . '?= <' . $this->from . '>' . PHP_EOL;
if (!$this->reply_to) {
$header .= 'Reply-To: =?UTF-8?B?' . base64_encode($this->sender) . '?= <' . $this->from . '>' . PHP_EOL;
} else {
$header .= 'Reply-To: =?UTF-8?B?' . base64_encode($this->reply_to) . '?= <' . $this->reply_to . '>' . PHP_EOL;
}
$header .= 'Return-Path: ' . $this->from . PHP_EOL;
$header .= 'X-Mailer: PHP/' . phpversion() . PHP_EOL;
$header .= 'Content-Type: multipart/mixed; boundary="' . $boundary . '"' . PHP_EOL . PHP_EOL;
if (!$this->html) {
$message = '--' . $boundary . PHP_EOL;
$message .= 'Content-Type: text/plain; charset="utf-8"' . PHP_EOL;
$message .= 'Content-Transfer-Encoding: base64' . PHP_EOL . PHP_EOL;
$message .= chunk_split(base64_encode($this->text)) . PHP_EOL;
} else {
$message = '--' . $boundary . PHP_EOL;
$message .= 'Content-Type: multipart/alternative; boundary="' . $boundary . '_alt"' . PHP_EOL . PHP_EOL;
$message .= '--' . $boundary . '_alt' . PHP_EOL;
$message .= 'Content-Type: text/plain; charset="utf-8"' . PHP_EOL;
$message .= 'Content-Transfer-Encoding: base64' . PHP_EOL . PHP_EOL;
if ($this->text) {
$message .= chunk_split(base64_encode($this->text)) . PHP_EOL;
} else {
$message .= chunk_split(base64_encode('This is a HTML email and your email client software does not support HTML email!')) . PHP_EOL;
}
$message .= '--' . $boundary . '_alt' . PHP_EOL;
$message .= 'Content-Type: text/html; charset="utf-8"' . PHP_EOL;
$message .= 'Content-Transfer-Encoding: base64' . PHP_EOL . PHP_EOL;
$message .= chunk_split(base64_encode($this->html)) . PHP_EOL;
$message .= '--' . $boundary . '_alt--' . PHP_EOL;
}
foreach ($this->attachments as $attachment) {
if (file_exists($attachment)) {
$handle = fopen($attachment, 'r');
$content = fread($handle, filesize($attachment));
fclose($handle);
$message .= '--' . $boundary . PHP_EOL;
$message .= 'Content-Type: application/octet-stream; name="' . basename($attachment) . '"' . PHP_EOL;
$message .= 'Content-Transfer-Encoding: base64' . PHP_EOL;
$message .= 'Content-Disposition: attachment; filename="' . basename($attachment) . '"' . PHP_EOL;
$message .= 'Content-ID: <' . urlencode(basename($attachment)) . '>' . PHP_EOL;
$message .= 'X-Attachment-Id: ' . urlencode(basename($attachment)) . PHP_EOL . PHP_EOL;
$message .= chunk_split(base64_encode($content));
}
}
$message .= '--' . $boundary . '--' . PHP_EOL;
if (substr($this->smtp_hostname, 0, 3) == 'tls') {
$hostname = substr($this->smtp_hostname, 6);
} else {
$hostname = $this->smtp_hostname;
}
$handle = fsockopen($hostname, $this->smtp_port, $errno, $errstr, $this->smtp_timeout);
if (!$handle) {
return $this->error('SMTP error: ' . $errstr . ' (' . $errno . ')');
} else {
if (substr(PHP_OS, 0, 3) != 'WIN') {
socket_set_timeout($handle, $this->smtp_timeout, 0);
}
while ($line = fgets($handle, 515)) {
if (substr($line, 3, 1) == ' ') {
break;
}
}
fputs($handle, 'EHLO ' . getenv('SERVER_NAME') . "\r\n");
$reply = '';
while ($line = fgets($handle, 515)) {
$reply .= $line;
//some SMTP servers respond with 220 code before responding with 250. hence, we need to ignore 220 response string
if (substr($reply, 0, 3) == 220 && substr($line, 3, 1) == ' ') {
$reply = '';
continue;
} else if (substr($line, 3, 1) == ' ') {
break;
}
}
if (substr($reply, 0, 3) != 250) {
return $this->error('SMTP error: EHLO not accepted from server!');
}
if (substr($this->smtp_hostname, 0, 3) == 'tls') {
fputs($handle, 'STARTTLS' . "\r\n");
$this->handleReply($handle, 220, 'SMTP error: STARTTLS not accepted from server!');
if (stream_socket_enable_crypto($handle, true, STREAM_CRYPTO_METHOD_TLS_CLIENT) !== true) {
return $this->error('SMTP error: TLS could not be established!');
}
fputs($handle, 'EHLO ' . getenv('SERVER_NAME') . "\r\n");
$this->handleReply($handle, 250, 'SMTP error: EHLO not accepted from server!');
}
if (!empty($this->smtp_username) && !empty($this->smtp_password)) {
fputs($handle, 'AUTH LOGIN' . "\r\n");
$this->handleReply($handle, 334, 'SMTP error: AUTH LOGIN not accepted from server!');
fputs($handle, base64_encode($this->smtp_username) . "\r\n");
$this->handleReply($handle, 334, 'SMTP error: Username not accepted from server!');
fputs($handle, base64_encode($this->smtp_password) . "\r\n");
$this->handleReply($handle, 235, 'SMTP error: Password not accepted from server!');
} else {
fputs($handle, 'HELO ' . getenv('SERVER_NAME') . "\r\n");
$this->handleReply($handle, 250, 'SMTP error: HELO not accepted from server!');
}
if ($this->verp) {
fputs($handle, 'MAIL FROM: <' . $this->from . '>XVERP' . "\r\n");
} else {
fputs($handle, 'MAIL FROM: <' . $this->from . '>' . "\r\n");
}
$this->handleReply($handle, 250, 'SMTP error: MAIL FROM not accepted from server!');
if (!is_array($this->to)) {
fputs($handle, 'RCPT TO: <' . $this->to . '>' . "\r\n");
$reply = $this->handleReply($handle, false, 'RCPT TO [!array]');
if ((substr($reply, 0, 3) != 250) && (substr($reply, 0, 3) != 251)) {
return $this->error('SMTP error: RCPT TO not accepted from server!');
}
} else {
foreach ($this->to as $recipient) {
fputs($handle, 'RCPT TO: <' . $recipient . '>' . "\r\n");
$reply = $this->handleReply($handle, false, 'RCPT TO [array]');
if ((substr($reply, 0, 3) != 250) && (substr($reply, 0, 3) != 251)) {
return $this->error('SMTP error: RCPT TO not accepted from server!');
}
}
}
fputs($handle, 'DATA' . "\r\n");
$this->handleReply($handle, 354, 'SMTP error: DATA not accepted from server!');
// According to rfc 821 we should not send more than 1000 including the CRLF
$message = str_replace("\r\n", "\n", $header . $message);
$message = str_replace("\r", "\n", $message);
$lines = explode("\n", $message);
foreach ($lines as $line) {
// $results = str_split($line, $length);
// see https://php.watch/versions/8.2/str_split-empty-string-empty-array
$results = ($line === '') ? [''] : str_split($line, 998);
foreach ($results as $result) {
fputs($handle, $result . "\r\n");
}
}
fputs($handle, '.' . "\r\n");
$this->handleReply($handle, 250, 'SMTP error: DATA not accepted from server!');
fputs($handle, 'QUIT' . "\r\n");
$this->handleReply($handle, 221, 'SMTP error: QUIT not accepted from server!');
fclose($handle);
}
}
private function handleReply($handle, $status_code = false, $error_text = false, $counter = 0) {
$reply = '';
while (($line = fgets($handle, 515)) !== false) {
$reply .= $line;
if (substr($line, 3, 1) == ' ') {
break;
}
}
// Handle slowish server responses (generally due to policy servers)
if (!$line && empty($reply) && $counter < $this->max_attempts) {
sleep(1);
$counter++;
return $this->handleReply($handle, $status_code, $error_text, $counter);
}
if ($status_code) {
if (substr($reply, 0, 3) != $status_code) {
return $this->error($error_text);
}
}
return $reply;
}
private function error($text) {
return user_error($text, E_USER_WARNING);
}
}
- liveopencart
- liveopencart.ru
- Сообщения: 229
- Зарегистрирован: 10.03.2022
- Мои дополнения: 19th19th
- Поблагодарил: 66 раз
- Спасибо: 107 раз
- Контактная информация:
Re: Тестовая версия ocStore Liveopencart 3.0.3.9b
Улучшение поддержки PHP 8.2 - спасибо sh1sh1n
Улучшение обработки ошибок с почтой - спасибо spectrum
Улучшение обработки ошибок с почтой - спасибо spectrum
- liveopencart
- liveopencart.ru
- Сообщения: 229
- Зарегистрирован: 10.03.2022
- Мои дополнения: 19th19th
- Поблагодарил: 66 раз
- Спасибо: 107 раз
- Контактная информация:
Re: Тестовая версия ocStore Liveopencart 3.0.3.9b
Виджет карты заказов на первой странице изменен на удобный график с делением по странам и регионам - спасибо spectrum