Opens are not being tracked
For some reason opens are not being tracked. I sent out a test e-mail campaign out to 3 @gmail.com addresses and one using google apps.
Is there some code I need to put in to track opens and clicks?
This discussion has been closed.
Comments
Hi @tachang,
Contact your host to change Allowoverwrite to 'all' in Apache httpd.conf so that Sendy's .htaccess file is not being ignored.
Thanks.
Best regards,
Ben
Thank you ben. I just tracked it down in the source to
Open tracker
RewriteRule ^t/([a-zA-Z0-9/]+)$ t.php?i=$1 [L]
and $_GET['i] not being populated.
I hit the url manually with i being the string and it worked.
I'm sure you get this quite a bit so for other people you want the AllowOverride command:
If you manage your own server, sometimes
AllowOverride
may be left atNone
instead ofAll
. Setting it toAll
will have the .htaccess file not be ignored.Thanks.
Ben