• You MUST read the Babiato Rules before making your first post otherwise you may get permanent warning points or a permanent Ban.

    Our resources on Babiato Forum are CLEAN and SAFE. So you can use them for development and testing purposes. If your are on Windows and have an antivirus that alerts you about a possible infection: Know it's a false positive because all scripts are double checked by our experts. We advise you to add Babiato to trusted sites/sources or disable your antivirus momentarily while downloading a resource. "Enjoy your presence on Babiato"

Sponzy - Support Creators Content Script

Sponzy - Support Creators Content Script v5.4.0

No permission to download
using SMTP email from what your server or mailgun?
I'm using smtp from my server. But I also created an account with Sendinblue just to try out their SMTP and that gives me "Connection could not be established with host smtp-relay.sendinblue.com :stream_socket_client(): unable to connect to ssl://smtp-relay.sendinblue.com:587 (Connection refused) " error
 
I'm using smtp from my server. But I also created an account with Sendinblue just to try out their SMTP and that gives me "Connection could not be established with host smtp-relay.sendinblue.com :stream_socket_client(): unable to connect to ssl://smtp-relay.sendinblue.com:587 (Connection refused) " error


looks like you are using lokalhost, have you tried it on the live server
 
config-> mail.php
Code:
        'smtp' => [
            'transport' => 'smtp',
            'host' => env('MAIL_HOST', 'smtp.mailgun.org'),
            'port' => env('MAIL_PORT', 587),
            'encryption' => env('MAIL_ENCRYPTION', 'tls'),
            'username' => env('MAIL_USERNAME'),
            'password' => env('MAIL_PASSWORD'),
            'timeout' => null,
        ],

// change encryption to ssl and port to 465

        'smtp' => [
            'transport' => 'smtp',
            'host' => env('MAIL_HOST', 'smtp.mailgun.org'),
            'port' => env('MAIL_PORT', 465),
            'encryption' => env('MAIL_ENCRYPTION', 'ssl'),
            'username' => env('MAIL_USERNAME'),
            'password' => env('MAIL_PASSWORD'),
            'timeout' => null,
        ],
 
  • Like
Reactions: Pixelate
config-> mail.php
Code:
        'smtp' => [
            'transport' => 'smtp',
            'host' => env('MAIL_HOST', 'smtp.mailgun.org'),
            'port' => env('MAIL_PORT', 587),
            'encryption' => env('MAIL_ENCRYPTION', 'tls'),
            'username' => env('MAIL_USERNAME'),
            'password' => env('MAIL_PASSWORD'),
            'timeout' => null,
        ],

// change encryption to ssl and port to 465

        'smtp' => [
            'transport' => 'smtp',
            'host' => env('MAIL_HOST', 'smtp.mailgun.org'),
            'port' => env('MAIL_PORT', 465),
            'encryption' => env('MAIL_ENCRYPTION', 'ssl'),
            'username' => env('MAIL_USERNAME'),
            'password' => env('MAIL_PASSWORD'),
            'timeout' => null,
        ],
Just tried, doesn't work "Connection Timed out"
 
Then probably your host is blocking mail ports as you're calling it with fqdn
Or your request isn't considered safe enough and is being throttled
Try a small script for smtp with same config and see if it pass trough
 
installed 2.2, tried to change my profile avatar and profile cover image, but nothing changes.
avatar shows broken image link, cover image just grey.

Checked in 'theme' to change 'default avatar' just incase but even that shows broken image link...

any ideas?
 
Then probably your host is blocking mail ports as you're calling it with fqdn
Or your request isn't considered safe enough and is being throttled
Try a small script for smtp with same config and see if it pass trough
I tweaked the settings a bit, using port 587 and tsl... now the emails get delivered but I still get "Timed out" error at my end.
 
installed 2.2, tried to change my profile avatar and profile cover image, but nothing changes.
avatar shows broken image link, cover image just grey.

Checked in 'theme' to change 'default avatar' just incase but even that shows broken image link...

any ideas?
Happened to me, solved it by changing my PHP version
 
AdBlock Detected

We get it, advertisements are annoying!

However in order to keep our huge array of resources free of charge we need to generate income from ads so to use the site you will need to turn off your adblocker.

If you'd like to have an ad free experience you can become a Babiato Lover by donating as little as $5 per month. Click on the Donate menu tab for more info.

I've Disabled AdBlock