Link redirects to localhost
Hello,
I starting to use Sendy today..
I have a problem with redirections.
When I click on link in an email sent by Sendy, I get redirected to localhost.
Also the unsubscribe page is blank.
Do you have any idea, what the problem could be?
Thanks in advanced...
- Peter
This discussion has been closed.
Comments
Hi,
The problem is that your server's PHP encrypted the trackable links with 'openssl_encrypt' but your command line version of PHP (CLI) does not support 'openssl_decrypt', hence the trackable links become broken.
Here's the fix:
If you previously setup a cron job for scheduled.php, change the cron job to:
*/5 * * * * curl -L -s https://your_sendy_installation_url/scheduled.php > /dev/null 2>&1
The next time you send a campaign the trackable links should work.
Thanks.
Best regards,
Ben