Search results

  1. L

    How to log full 'giveup' message?

    My MailWizz has significantly slowed down over the past day, and I am trying to diagnose what the issue is. One thing I noticed is that we are getting more 'giveup' status for sending emails. Something like 5% of emails have been ending in 'giveup', which is unsual. Is there any way to log the...
  2. L

    Does PCNTL work with redis?

    I recently enabled redis for cache/mutex, but it seems that parallel campaigns with PCNTL no longer work after enabling redis. Are the two incompatible?
  3. L

    A subscriber has been rejected from joining because the system was not able to find a suitable delivery server to send the email

    Getting this new error that I have never seen before. Any idea what is up? We have an active delivery server that works, and we havent touched those settings in years, so not sure what is prompting this error.
  4. L

    Redis for cache/mutex throwing 500 error

    I followed the directions at https://www.mailwizz.com/kb/using-redis-cache-mutexes/. But when I add this... 'cache' => array( 'class' => 'common.components.cache.RedisCache', ), 'mutex' => array( 'class' => 'common.components.mutex.RedisMutex', ), ...to...
  5. L

    PHP 8.4?

    Has mailwizz been tested to php 8.4?
  6. L

    Redis with unix socket

    Followed the directions at https://www.mailwizz.com/kb/using-redis-cache-mutexes/ but want to use redis via unix socket, so I did this: 'cache' => array( 'class' => 'common.components.cache.RedisCache', 'scheme' => 'unix', 'path' => '/path/to/redis.sock', )...
  7. L

    Exclude certain domains from creating tracking links?

    We have links in our email that are unique per subscriber and this is creating a lot of spam in our database because mailwizz is creating a tracking link for each of those unique URLs. Think 10 unique links per subscriber per campaign, so each campaign is creating millions of tracking URLs...
  8. L

    How to run delete-campaigns not interactively?

    I want to be able to run a cron that deletes campaigns. How do I run the delete-campaigns command non-interactively?
  9. L

    Deleting campaigns didn't work

    I ran the following command: But nothing seems to have been deleted? I still see campaigns and in mysql I still see all the data under campaign_url, campaign_track_open, etc
  10. L

    {"errors":{"license_key":"This license is already registered to another MailWizz instance"},"message":"General error","status":"error"}

    Suddenly got this error. What is going on? The license key is only used by me...
  11. L

    Does deleting a campaign also delete all other tracking?

    Does deleting a campaign also delete all other tracking for that campaign, such as "campaign_url", "campaign_track_open", "campaign_delivery_log", etc.?
  12. L

    How to delete mw_sessions?

    mw_sessions is getting very large. How do I delete it? The clear-cache command does not seem to be clearing it.
  13. L

    Campaign Delivery Logs not being deleted?

    In Backend -> Settings -> Cron I have "Delete campaign delivery logs" set to "Yes", but for some reason campaign delivery logs have not been deleted for more than 8 months. Any idea what is going on? I checked crontab, all the crons are listed there. I also checked cron job history in the...
  14. L

    How to stop campaign stats from refreshing automatically?

    Anyway to stop campaign stats from automatically refreshing when the campaigns page loads?
  15. L

    Massive size of cache folder

    Is it normal for `apps/common/runtime/cache` to be 50GB+? How do I stop it from being this large?
  16. L

    PHP API (v2) Deprecated Functions for PHP8

    I am using the latest PHP API on PHP8. It keeps throwing this error: [19-Feb-2023 05:55:01 UTC] PHP Deprecated: Return type of EmsApi\Params::getIterator() should either be compatible with IteratorAggregate::getIterator(): Traversable, or the #[\ReturnTypeWillChange] attribute should be used...
  17. L

    Cannot activate extension

    I uploaded an extension to `/apps/extension`. But the extension does not show in Backend -> Extend -> Extensions. Any idea what is up? I have other custom extensions that show up just fine. Here is the extension code: <?php defined('MW_PATH') || exit('No direct script access allowed'); class...
  18. L

    Error when using MailWizz PHP API (v2)

    I am using the PHP client at https://github.com/ems-api/php-client. I am using MailWizz v2.2.7. The following code... $endpoint = new EmsApi\Endpoint\ListSubscribers(); $response = $endpoint->createUpdate('LIST-UNIQUE-ID', array( 'EMAIL' => $email, )); ...throws...
  19. L

    Is MailWizz PHP client v1 compatible with PHP8?

    Anyone know? I am talking about the one at https://github.com/twisted1919/mailwizz-php-sdk I know there is a v2 of the client at https://github.com/ems-api/php-client, but upgrading the client right now is not feasible.
  20. L

    Rotating IPs and web hook security

    I'm getting ready to update to v2 of MailWizz and thought I should provide a suggestion for two features which I think MailWizz needs. I've been manually adding this to MailWizz myself every time I upgrade, but having the features natively into MailWizz would be awesome. 1. The ability to...
Back
Top