Poll

Should the user database be modified to allow for more custom fields?

Yes
16 (84.2%)
No
3 (15.8%)

Total Members Voted: 19

Voting closed: September 05, 2006, 04:00:27 pm

Author Topic: 10 more custom fields? (Modify lm_users table?)  (Read 10707 times)

DW

  • Administrator
  • Posts: 3787
    • View Profile
    • https://legacy.listmailpro.com
10 more custom fields? (Modify lm_users table?)
« on: September 05, 2006, 04:00:27 pm »
This has been suggested a few times but will require modifying the ListMail users database table.  Such a change -will- break plugins and custom scripts that insert users into the ListMail database -  this is why it hasn't been done yet.

I've created this post/poll to receive input about this change.

Please take the time to vote!
« Last Edit: October 18, 2010, 07:03:17 pm by DW »
Dean Wiebe
ListMailPRO Author & Developer - Help | Support | Hosting

idealizm

  • Posts: 13
    • View Profile
10 more custom fields? (Modify lm_users table?)
« Reply #1 on: May 07, 2007, 05:12:45 pm »
Just a thought - couldn't the additional fields be stored in a new table?

funston

  • Posts: 29
    • View Profile
hidden fields for affiliate id link
« Reply #2 on: June 25, 2007, 11:49:11 pm »
26 June 2007 01:48:51 Central Daylight Time

Dear Dean,

I just read Dave Isaacs' and Aaron Leighton's "How to Get Other People To Build Your List For You"

On page 35 they talk of making an appealling email course, promoting your product or service, then sending your affiliates a customized signup form for the email course about your product or service

On page 38 it talks about using custom fields then making it a hidden field so that when people sign up to your list, preferrably ListMailPro, your affliates put their affilate link into the hidden field. "Make the custom fields "hidden", tell people where to insert their affiliate id's, then ask them to upload your form to their site(s)."

The result is that your affiliates help you build a double optin list and they get credited with an affiliate commission if a person buys your product.

With only 10 custom fields I could only have 10 affiliates or am I mistaken ?

Thank you for your attention to the above request and please have a pleasant day!

Yours very sincerely and respectfully,
Frank F Eckdall
ffunston@swbell.net
P.D.They noted in their nice article that GetResponse allows up to 10 custom fields and that Aweber.com gives you 25 different custom fields.

DW

  • Administrator
  • Posts: 3787
    • View Profile
    • https://legacy.listmailpro.com
10 more custom fields? (Modify lm_users table?)
« Reply #3 on: June 26, 2007, 02:52:46 am »
Hi Frank,
Quote
On page 38 it talks about using custom fields then making it a hidden field so that when people sign up to your list, preferrably ListMailPro, your affliates put their affilate link into the hidden field. "Make the custom fields "hidden", tell people where to insert their affiliate id's, then ask them to upload your form to their site(s)."

This can be done with ListMailPRO.  Basically your HTML page should be able to process PHP, which can be achieved in .html files if necessary via an .htaccess file:
Code: [Select]
RemoveHandler .html .htm
AddType application/x-httpd-php .php .htm .html

Next, instruct your affiliates to browse to a particular URL, ie:

http://example.com/subscribe.html?r=affiliateID

In a ListMail signup form in subscribe.html pass the "r" variable via a hidden custom field and embedded PHP:
Code: [Select]
<input type=hidden name=user1 value="<?php echo $_GET['r']; ?>">

You should only need one custom field to store the referrer of each user.  A simple custom MySQL query run in a program like PhpMyAdmin could list top referrers by counting the users they have referred:
Code: [Select]
SELECT user1, count(*) AS referred FROM lm_users WHERE list = '1' GROUP BY user1 ORDER BY referred DESC
Please let me know if you have further questions on this :D

Regards
Dean Wiebe
ListMailPRO Author & Developer - Help | Support | Hosting

funston

  • Posts: 29
    • View Profile
Clarification about URL and Custom Query into database
« Reply #4 on: June 26, 2007, 11:08:06 pm »
Hi Dean,

Thank you very much for your response!

I understand everything except what does the URL do and where in phpMyAdmin would I put the custom query? Just bring up my database then SQL tab and paste the query code there or do I select the lm_users table then paste the query code? I just want to make sure.

Correct me if I am mistaken the URL. ie,
http://example.com/subscribe.html?r=affiliateID
would essentially be a different one, i.e. changing only the affiliateID. for each affiliate but I would only need to make one subscribe form, making sure of course that it can process php via the .htaccess injection into apache. Is this correct?

Essentially, just send each affiliate the same basic URL but with their affiliateID so they don't have to make their own form?

I can't thank you enough for your help, thanks again! :D

Kind regards,
Frank Eckdall
P.D. If this is correct I could let my affiliates use a free cloaking service that I have put up and they wouldn't have to worry about potential customers seeing their affiliateID. http://rewriteurl.com :)

DW

  • Administrator
  • Posts: 3787
    • View Profile
    • https://legacy.listmailpro.com
10 more custom fields? (Modify lm_users table?)
« Reply #5 on: June 27, 2007, 03:08:05 pm »
Frank,
Quote
I understand everything except what does the URL do and where in phpMyAdmin would I put the custom query? Just bring up my database then SQL tab and paste the query code there or do I select the lm_users table then paste the query code? I just want to make sure.

You must select the ListMail database or a table in the ListMail database then, yes, click "SQL" and paste the query there.
Quote
I would only need to make one subscribe form, making sure of course that it can process php via the .htaccess injection into apache. Is this correct?

Yes, that's right.  Additionally, if your subscribe form file is named something.php or your server is set to process PHP in .html files you won't need the .htaccess modification.

Please let me know if I can be of further assistance! :D

Regards
Dean Wiebe
ListMailPRO Author & Developer - Help | Support | Hosting