Apanha

MailWizz - Email Marketing Application

Hi there, im getting

{"errors":{"license_key":"License key not found"},"message":"General error","status":"error"}

after upgrading
 
@Apanha do you have the 2.4.4 update?

also there was an issue with 2.4.3, just so your aware. This was on php 8/8.1
Fatal error: A void function must not return a value in /home/sendwich.co.uk/app/apps/common/models/option/OptionLicense.php on line 119

fix

Code:
public function setDisplayPurchaseCode(string $code): void
    {
        return '';
    }
    
to

public function setDisplayPurchaseCode(string $code): void
{
}
 
hey guys there is an issue with running the daily Cron. To fix replace the verify license function with the code below

/apps/console/commands/DailyCommand.php
line#: 877

PHP:
protected function verifyLicense(): self
    {

        return $this;
    }
 

Create an account or login to comment

You must be a member in order to leave a comment

Create account

Create an account on our community. It's easy!

Log in

Already have an account? Log in here.