orhan
Moderator
- Joined
- Dec 5, 2018
- Messages
- 471
- Reaction score
- 100
- Points
- 28
Update:
A significant bug has been found in RC1 that prevents alerts and notification messages from being sent. A fix for this has already been included in the code on GitHub and will be available in RC2.
In the meantime, users of RC1 can fix this issue themselves by manually editing cron.php, which is located in the root folder of your forum (i.e., the same folder as index.php and SSI.php).
In cron.php, find these two lines of code (they are near the start of the file):
Find
Now replace them with the following:
Güncelleme
RC1'de, uyarıların ve bildirim mesajlarının gönderilmesini önleyen önemli bir hata bulundu. Bunun için bir düzeltme GitHub koduna zaten eklenmiş ve RC2'de mevcut olacak.
Bu arada, RC1 kullanıcıları, forumunuzun kök klasöründe bulunan cron.php dosyasını el ile düzenleyerek bu sorunu kendi başlarına çözebilirler.
Bul:
Değiştir:
A significant bug has been found in RC1 that prevents alerts and notification messages from being sent. A fix for this has already been included in the code on GitHub and will be available in RC2.
In the meantime, users of RC1 can fix this issue themselves by manually editing cron.php, which is located in the root folder of your forum (i.e., the same folder as index.php and SSI.php).
In cron.php, find these two lines of code (they are near the start of the file):
Find
Code:
define('SMF', 'BACKGROUND');
define('FROM_CLI', empty($_SERVER['REQUEST_METHOD']));
Now replace them with the following:
Code:
define('SMF', 'BACKGROUND');
define('SMF_VERSION', '2.1 RC1');
define('SMF_FULL_VERSION', 'SMF ' . SMF_VERSION);
define('SMF_SOFTWARE_YEAR', '2019');
define('FROM_CLI', empty($_SERVER['REQUEST_METHOD']));
Güncelleme
RC1'de, uyarıların ve bildirim mesajlarının gönderilmesini önleyen önemli bir hata bulundu. Bunun için bir düzeltme GitHub koduna zaten eklenmiş ve RC2'de mevcut olacak.
Bu arada, RC1 kullanıcıları, forumunuzun kök klasöründe bulunan cron.php dosyasını el ile düzenleyerek bu sorunu kendi başlarına çözebilirler.
Bul:
Code:
define('SMF', 'BACKGROUND');
define('FROM_CLI', empty($_SERVER['REQUEST_METHOD']));
Değiştir:
Code:
define('SMF', 'BACKGROUND');
define('SMF_VERSION', '2.1 RC1');
define('SMF_FULL_VERSION', 'SMF ' . SMF_VERSION);
define('SMF_SOFTWARE_YEAR', '2019');
define('FROM_CLI', empty($_SERVER['REQUEST_METHOD']));