Page 27 of 117 FirstFirst ... 1725262728293777 ... LastLast
Results 261 to 270 of 1165
  1. #261
    Join Date
    Jan 2005
    Location
    Waukee, Iowa
    Posts
    206
    Plugin Contributions
    0

    Default Re: Newsletter-Only Subscriptions for v1.3x

    Quote Originally Posted by Radish
    Once a site has been blacklisted, is it a real process to 'remove' the blacklisting?
    It can be, but there are a number of things you and your host can do. You can google 'mail server blacklisted' for more ideas, but some basic things:

    You can:
    See if you can send using the php mail instead of smtp (or vice versa).

    Suggest to your host that they:

    Track down the spammer (if still hosted there-spammers are notorious for signing up for 1 month, sending as much spam as they can, then diving out with no forwarding address) and shut him down if still active.

    Change the MX ip address for the mail server.

    You can also see what servers have you blacklisted and see what requirements they have for removal (if the other address didn't have one you can also do it at http://www.dnsstuff.com/ )

    In reality it's up to your host to handle the situation, and most good hosts already have policies in place to do so. If they are unwilling or unable, your best bet is to use an external mail server or switch hosts.

    -Ng_
    NotGoddess (Sara Jacobson)
    NotGoddess.com

  2. #262
    Join Date
    Aug 2006
    Posts
    22
    Plugin Contributions
    0

    Default Re: Newsletter-Only Subscriptions for v1.3x

    If this question has been answered already, I apologize. I've seen it asked a few times, but not answered because the OPs never seem to want to provide an example.

    Anyway, I have a problem with the email entry box in the sidebox being too wide in Firefox. In IE it's both too wide and screws up the the look of the sidebox.

    Example can be found at http://bishiharem.com

    I noticed that in the tpl_subscribe file there is no width defined, however if I give it one I find not only does the width not matter (145px and 25px both look the same), but adjusting the width screws up the text in the other sideboxes.

    Any help would be greatly appreciated.

  3. #263
    Join Date
    Dec 2005
    Location
    Cincinnati Ohio
    Posts
    1,030
    Plugin Contributions
    13

    Default Re: Newsletter-Only Subscriptions for v1.3x

    edit file includes\templates\your template\sideboxes\tpl_subscribe.php

    edit line
    $content .= '  ' . zen_draw_input_field('email', '', 'size="18" maxlength="30" style="width:

    where it says 18, make this smaller or larger to fit your template.

    Rob
    PCI Certified Web Hosting - ControlScan, Security Metrics (Platinum Partner), McAfee, TrustKeeper
    Business Class Web Hosting - Linux and cPanel Powered

  4. #264
    Join Date
    Jan 2006
    Posts
    67
    Plugin Contributions
    0

    Default Re: Newsletter-Only Subscriptions for v1.3x

    Ng,

    Thanks for the info on removing my site/server from being blacklisted. I spoke with my host and they are going change the MX ip address of the mail server. Hopefully that will fix the problem.

    Thanks again!

  5. #265
    Join Date
    Jan 2005
    Location
    Waukee, Iowa
    Posts
    206
    Plugin Contributions
    0

    Default Re: Newsletter-Only Subscriptions for v1.3x

    Quote Originally Posted by bhfruitcakeco
    If this question has been answered already, I apologize. I've seen it asked a few times, but not answered because the OPs never seem to want to provide an example.

    Anyway, I have a problem with the email entry box in the sidebox being too wide in Firefox. In IE it's both too wide and screws up the the look of the sidebox.

    Example can be found at http://bishiharem.com

    I noticed that in the tpl_subscribe file there is no width defined, however if I give it one I find not only does the width not matter (145px and 25px both look the same), but adjusting the width screws up the text in the other sideboxes.

    Any help would be greatly appreciated.
    Forgive for sounding a bit annoyed, but as the OP ....

    I posted something blandly assuming it was the issue. I'm rechecking it....
    Last edited by NotGoddess; 22 Sep 2006 at 06:55 PM.
    NotGoddess (Sara Jacobson)
    NotGoddess.com

  6. #266
    Join Date
    Jan 2005
    Location
    Waukee, Iowa
    Posts
    206
    Plugin Contributions
    0

    Default Re: Newsletter-Only Subscriptions for v1.3x

    Your box width is only 146px wide (inner width), so with the padding on the input, it's too wide at 145px (col width 175-30=145) to fit.

    You need to find in the template:
    style="width: ' . ($column_width-30) . 'px"

    and change that 30 to 40 or 45, etc until it fits for you.

    I'll do some research and see if I can find the proper reference for the box width and adjust the template.

    -Ng_
    NotGoddess (Sara Jacobson)
    NotGoddess.com

  7. #267
    Join Date
    Jan 2005
    Location
    Waukee, Iowa
    Posts
    206
    Plugin Contributions
    0

    Default Re: Newsletter-Only Subscriptions for v1.3x

    @Radish:

    btw, I just wanted to let you know I haven't forgotten you-I just haven't had a chance to research it properly as above, when I try to answer hastily it's trouble. :)

    My first thought is that it's just an error in the subscription checking-see it shouldn't LET you subscribe the same email twice.

    If that email already has a news-only subscription:
    If you try to do another newsonly: it should give a dup error. (in zc not sql).
    If you make an account, it should merge those records.

    If that email already has a customer account:
    newsonly: it's says that and tells you to change on your account page.
    new acct: shouldn't allow it (std zen, not just this mod).


    So if it's not doing that, it's a bug in the script, not anything you've done and I just have to get the time to fix it. I've got a new setup for the error checking but I'll especially test that case.

    The sql you posted won't do any harm, but it's for cased where you uploaded your table and 'lost' the auto-increment values. You can try it but I don't think that's the issue.


    -Ng_
    NotGoddess (Sara Jacobson)
    NotGoddess.com

  8. #268
    Join Date
    Aug 2006
    Posts
    22
    Plugin Contributions
    0

    Default Re: Newsletter-Only Subscriptions for v1.3x

    Quote Originally Posted by NotGoddess
    Forgive for sounding a bit annoyed, but as the OP ....

    I posted something blandly assuming it was the issue. I'm rechecking it....
    I apologize for your annoyance. I did not mean you. I was referring to the querants with similar problems, whom you tried to help, but they wouldn't provide you with an example to help you figure out the problem (OPs=plural).

  9. #269
    Join Date
    Jan 2005
    Location
    Waukee, Iowa
    Posts
    206
    Plugin Contributions
    0

    Default Re: Newsletter-Only Subscriptions for v1.3x

    Quote Originally Posted by bhfruitcakeco
    I apologize for your annoyance.
    Then it should be I that apologizes. I've been oversensitive of late.

    At any rate...did either Knuckle-101's or my suggestion help?

    -Ng_
    NotGoddess (Sara Jacobson)
    NotGoddess.com

  10. #270
    Join Date
    Dec 2005
    Location
    Cincinnati Ohio
    Posts
    1,030
    Plugin Contributions
    13

    Default Re: Newsletter-Only Subscriptions for v1.3x

    NG,
    You know we all love ya anyway.

    By the way get on messenger later i finally got the id we need for the sp mod if you are ready to mess with it.

    Let me know.
    PCI Certified Web Hosting - ControlScan, Security Metrics (Platinum Partner), McAfee, TrustKeeper
    Business Class Web Hosting - Linux and cPanel Powered

 

 
Page 27 of 117 FirstFirst ... 1725262728293777 ... LastLast

Similar Threads

  1. Newsletter-Only Subscriptions for v1.3x: reinstall problems
    By sharonmiranda in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 7 Nov 2011, 07:43 PM
  2. Newsletter subscriptions in the code
    By fgabrieli in forum General Questions
    Replies: 4
    Last Post: 19 Aug 2010, 03:30 PM
  3. help with newsletter subscriptions page
    By meesh in forum Customization from the Admin
    Replies: 8
    Last Post: 29 Mar 2009, 06:14 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR