This worked. Thank you very much!
Printable View
This worked. Thank you very much!
I cannot get this to work. I transferred the files 3 times and still cannot see 'subscription manager' or anywhere to install.
The last time i transferred files, I did it manually (not moving entire folder) and now i have screwed up my zencart. UGG... Admin panel still works, but can't see my cart on the internet, just a blank page.
I have a custom template. Will this not work with a custom template?
HELP!
I have restored my zencart and am back to my original files. Please tell me how to get this patch installed.
I tried dragging the folders to my zencart folder and it did not work. I have a custom template. Do I need something like Winmerge? I am using a mac is there a winmerge type program for mac or do I need to dust off my PC and try to use it?
Am I doing something wrong?
Thanks!! :)
Ok, I restored the zencart and now I am getting this error when I click the install button on the "subscription manager"
1005 Can't create table 'zen_subscribers' (errno: 13)
in:
[ CREATE TABLE IF NOT EXISTS zen_subscribers ( `subscriber_id` int(11) NOT NULL auto_increment, `customers_id` int(11) default NULL, `email_address` varchar(96) NOT NULL default '' UNIQUE, `email_format` varchar(4) NOT NULL default 'TEXT', `confirmed` varchar(8) default NULL, `subscribed_date` date NOT NULL default '0000-00-00', PRIMARY KEY (`subscriber_id`) ) TYPE=MyISAM;]
If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.
Hi,
I've been using the newsletter-only subscriptions for a while now and it's great - thank you.
I'd like to ask my sign ups for their christian name so that when I send them an email it's more personal - I've read several times that people are more liekly to read emails that use their name.
Does anyone know how to do this or does nayone know if it is likely to be a future update?
Many Thanks
Suekay
Hi,
I've just sifted through 94 pages and didn't find anything about unique IP checking. Could you please tell me the steps to get that accomplished?
It would be best if during newsletter sign up, not only unique email would be checked but also an IP address to prevent multiple newsletter sign ups from the same address.
It would be great to display IPs in the admin panel as well.
At the very least, one of the two, and if need be, we would manually remove duplicate entries from the same address.
We are basically trying to use this great tool for sweepstakes and we want to ensure there are no duplicates.
Thanks for your help.
Once someone helps me with this, I would be happy to repackage it as an upgrade to this wonderful contribution.
Hi,
I'd like to switch the header signup form from the header area to the footer area, any suggestions?
Also, does anyone know how to have that signup form show up on main_index.php (define pages) only on the homepage?
I updated my old version of Subscribe! 1.1 to this newest one.
Before doing that I backed everything up and downloaded the table of subscribers in SQL format. Then removed the old version.
But it won't let me upload the list of "old" subscribers. After trying different formatting and ways to upload I consistently receive error messages of one sort or other. It's approximately 2,500 people.
The subscribers table is structured like this:
subscriber_id
customers_id
email_address
email_format
confirmed
subscribed_date
And the data I'm attempting to upload looks like this:
(1157, 16, '[email protected]', '', NULL, '2008-02-25 10:22:04'),(1158, 15, '[email protected]', 'HTML', NULL, '2008-02-25 10:22:04'),(1159, 94, '[email protected]', 'HTML', NULL, '2008-02-25 10:22:04'),(1160, 95, '[email protected]', 'TEXT', NULL, '2008-02-25 10:22:04'),(1161, 6, '[email protected]', 'TEXT', NULL, '2008-02-25 10:22:04'),(1162, 7, '[email protected]', 'TEXT', NULL, '2008-02-25 10:22:04'),(1163, 8, '[email protected]', 'HTML', '1', '2008-02-25 10:22:04'),(1165, 10, '[email protected]', 'TEXT', NULL, '2008-02-25 10:22:04');
In the sample list I am entering " NULL NULL email format NULL NULL"
So, what am a I doing wrong and can anyone help.
By the way, the rest of the function works as designed, I just can't import the old addresses.
I cant seem to get the sidebox to show up under the sidebox manager, I have copied the files to both my custom template and the standard template area. The add in installed and I can add people manual but I cant get the side box to work.
Installing Ver2.2 on zen-cart 1.3.9c
I received a Mysql error when attempting to install due to apostrophe's in the email address.
Around line 91 in
admin\includes\functions\extra_functions\subscription_manager.php
change
toPHP Code:
'" . $cust_subscribers->fields['customers_email_address'] . "',
This will prepare the input correctly for insertion into the database for those rare casesPHP Code:
'" . zen_db_input($cust_subscribers->fields['customers_email_address']) . "',