MailWizz - 1.4.4

Status
Not open for further replies.
>XML/JSON feeds will be auto-detected in campaigns

Previously, only XML feeds were supported and now JSON is supported as well? What does "auto-detected" mean? Didn't the templates do this before?

Great update, thank you!
 
My campaing was sending and at a time this error shows up via the backend.
Failed to authenticate on SMTP server with username "user@domain.com" using 2 possible authenticators. STatus Giveup"
I had already enabled "Retry Sending" via the back end.

Use my extension which actually do the same, remove the give ups and set campaign status to sending again.
@twisted1919 seems vary busy now a days with new release
 
>XML/JSON feeds will be auto-detected in campaigns

Previously, only XML feeds were supported and now JSON is supported as well? What does "auto-detected" mean? Didn't the templates do this before?

Great update, thank you!
JSON is supported for a while now. Auto means you don't have to tell mailwizz in the campaign settings that your template contains a json/xml feed, it will autodetect it.
 
call getIsPendingDelete().
Thanks but this gives a new error (Property "Campaign.getIsPendingDelete" is not defined.).

Here is the line of code I am changing:
Code:
if ($model->getIsPendingDelete) {
            $this->redirect(array('campaigns/index'));
        }

Thanks
 
PHP:
if ($model->getIsPendingDelete) {
           $this->redirect(array('campaigns/index'));
       }
This is not a correct call. if you are going to call a property that has a getter method, call it like:
$model->isPendingDelete otherwise, call the getter method directly $model->getIsPendingDelete();

In the changelog, there's this note:
Screenshot 2017-10-11 15.53.44.png
 
No idea, open a support ticket with backend url and login to your app and also ssh login to the server and i'll have a look.
 
Thanks, i'll look into it ;)
Hi, Have you looked into this? This kind of error message is saying SOFT again "smtp; 554 delivery error: dd This user doesn't have a yahoo.com account (xxxx@yahoo.com) [0] - mta1117.mail.ne1.yahoo.com"
It should be Hard and not SOFT.

Please take a look via https://gyazo.com/e3e469f21914d6e4f63ca3bcd6074bdb

Please kindly check and send me a quick fix for the first and this one I just posted.

Thanks
 
I've worked past doing the correct call of $model->isPendingDelete and am able to get past 'Setup' and into the 'Template' screen. Saving there now gives me this error:

Error 500!
Undefined variable: randomContent

It's coming from line 384 of /apps/customer/views/campaigns/step-template-create.php which is:
PHP:
<?php echo $form->labelEx($randomContent, 'name');?>
 
Yeah, sorry about that, to fix this, open /apps/backend/components/update/UpdateWorkerFor_1_4_4.php and make it look like:
PHP:
<?php defined('MW_PATH') || exit('No direct script access allowed');

/**
* UpdateWorkerFor_1_4_4
*
* @package MailWizz EMA
* @author Serban George Cristian <cristian.serban@mailwizz.com>
* @link http://www.mailwizz.com/
* @copyright 2013-2017 MailWizz EMA (http://www.mailwizz.com)
* @license http://www.mailwizz.com/license/
* @since 1.4.4
*/

class UpdateWorkerFor_1_4_4 extends UpdateWorkerAbstract
{
    public function run()
    {
        // run the sql from file
        $this->runQueriesFromSqlFile('1.4.4');
    }
}
Suggesting to put all code updates immediately into the latest version's download, so nobody has to search for patches and manually include them, or even repost errors, thx for consideration.
 
I've worked past doing the correct call of $model->isPendingDelete and am able to get past 'Setup' and into the 'Template' screen. Saving there now gives me this error:

Error 500!
Undefined variable: randomContent

It's coming from line 384 of /apps/customer/views/campaigns/step-template-create.php which is:
PHP:
<?php echo $form->labelEx($randomContent, 'name');?>
Are you sure you aren't using an overriding file or something? Because we used to have an similar error, but it has been fixed for a while now and 1.4.4 doesn't have it anymore, the randomContent var is passed to the view.
 
Hi can you help me with upgradation as After uploading all files Still showing update process button but below application version is shown updated 1.4.4. Screenshot is shared for your reference.

Please share the solution for the same.


Now i had checked with SSH to update but showing below error.
CDbCommand failed to execute the SQL statement: SQLSTATE[42S21]: Column already exists: 1060 Duplicate column name 'last_login'


Even Tried with your this option but is doesnt work
PHP:
<?php defined('MW_PATH') || exit('No direct script access allowed');

/**
* UpdateWorkerFor_1_4_4
*
* @package MailWizz EMA
* @author Serban George Cristian <cristian.serban@mailwizz.com>
* @link http://www.mailwizz.com/
* @copyright 2013-2017 MailWizz EMA (http://www.mailwizz.com)
* @license http://www.mailwizz.com/license/
* @since 1.4.4
*/

class UpdateWorkerFor_1_4_4 extends UpdateWorkerAbstract
{
    public function run()
    {
        // run the sql from file
        $this->runQueriesFromSqlFile('1.4.4');
    }
}

Please help
 

Attachments

  • Capture.PNG
    Capture.PNG
    87.7 KB · Views: 9
Last edited:
For those that have the issue with the Drag And Drop builder where it does not show up, please download attached file and unzip it and put it in: /apps/common/extensions/email-template-builder/ to override existing file with same name.

Dear All Users,

Kindly Enable the Plugin Once you Updated Application.
If not found please Use the forum to raise Issue. May Twisted 1919 to focus on the major issue.
@everyone - Sorry if any get hurts.
 
Status
Not open for further replies.
Back
Top