Glad to hear you are having a good life there in Indiana. I looked at the website you posted earlier as an example and it's definitely a great website! i like the DHTML menu you have for the subscription.
Thank you for the additional information. It should help a lot as I develop this. I'm still learning how to put unsubscribe notices in it, etc. It's a lot to setting it up but I know it'll be well worth it.
-Earlier you mentioned about limits on Verizon and Comcast. Were you talking about if I use them for email, an isp, or if I'm emailing to customers using those services? I use comcast for internet service and have their business plan but for hosting and email I use Hostgator. I'm currently on one of their shared plans for $7.95 but I know it won't last me long now that I'm developing this email newsletter and also launching a 2nd website (with a 2nd newsletter) this spring. They offer dedicated hosting for $179/month but I may go to one of their new VPS plans which I can get for $49.95 with cpanel. They have a variety of plans depending on how much memory and CPU usage I want. Currently they say there's a limit of 500 emails per hour, 2500 per day, none with VPS. Of course I'm sure I still don't want to push the limits with VPS since it would slow down my system plus could cause problems as my subscriber list gets larger.
-We have continued testing the program and we noticed two items in the phplist screen that have red x's. The others all have green checkmarks. Both are in the admin screen for phplist and both are under the System Functions and the first is under Setup. There's a Red X next to Create Subscribe Pages but I think this is something that will be done as we set up the program.
The other one is under DBCheck. There is a red X next to user_blacklist_data.
I posted about this on the PHP List forums and received a response today. There was no response about the first issue but was a response about the 2nd issue, user_blacklist_data.
It appears it was a bug in the program related to when this is installed on web servers using mysql 5 and newer.
This is the response to the post I received on the phplist forums:
Probably related to issue "1c. Database Error 1146 Database error 1146 while doing query Table 'database.phplist_user_blacklist_data' doesn't exist " addressed in:
A quick guide to installing phpList
The link for "A quick guide to installing phpList" is below:
http://forums.phplist.com/viewtopic.php?f=3&t=24748I copied the information below that relates to the error:
1c. Database Error 1146 Database error 1146 while doing query Table 'database.phplist_user_blacklist_data' doesn't exist.
This occurs AFTER you have initialised the database (as at item 1 above).
A user fix is available here, thanks to AlexDimitrov and Heritage. Believed to be due to your host using MySQL5 and upwards. Apply the code below to your phpList database using phpMyAdmin via your webspace control panel.
CODE: SELECT ALL
DROP TABLE IF EXISTS `phplist_user_blacklist_data`;
CREATE TABLE `phplist_user_blacklist_data` (
`email` varchar(255) NOT NULL default '',
`name` varchar(100) default NULL,
`data` text,
UNIQUE KEY `email` (`email`)
) TYPE=MyISAM;
I don't know if anyone else here is experiencing this but I thought I'd post the information about the 2nd error since it could help others on this forum that is using phplist. In reference to the first, do you know if that is a problem?
I am continueing to read through the documentation and get this set up and hope to have it running very soon. Already as practice I'm saving newsletter emails I get from companies i buy from to use as reference as I develop my own newsletter. This will be exciting once I get it going.