Viewing 15 replies - 16 through 30 (of 36 total)
  • That last bit got me fixed up, but I did notice that when I hit the “preview button” that it went directly to “mail sent!!” notification. Not a huge issue, but an issue nonetheless.

    @nevermore93,

    That is the default message is Send or Preview are successful but you raise the point that the messages are misleading. I’ll update that in the next version to make it clearer that a preview or live mail was sent.

    @mattyrob,
    When you get a chance and if you think worthy I would love a way to stagger the e-mail load. My server handles 200-300 per hour, with current settings it does break recipients into designated numbers but it does not time delay the e-mails out so my server times out and 2/3rds of my mailing list which is 2,400 gets undelivered. Any possibility of adding this function?

    Thread Starter yatong

    (@yatong)

    Please this is off topic.
    I need a small help here. Can you recommend a plugin to show images in a stream? I want the images in my posts to show in a stream where I can view images by clicking next. I mean I want the images to be linked in a way that I can navigate the images by clicking next/forward. Right now I can only see other images by coming back to the main window and selecting the image I want to see in a full sized form.

    I hope you can help me
    You can visit my site at https://bookerzmedia.com and see Lady Gaga’s images. Select one picture and see that the other images don’t follow in a link.

    Thanks

    @yatong,

    I don’t use any image plugins on my sites as they are not image rich. Sorry, can’t help. Try looking in the Plugins section of www.ads-software.com.

    Arthur Klein

    (@pursuitofhappinessyoga)

    the two fixes in send_email.php did the trick… But what does preview do? When i hit the preview buttons it just confirm message sent. Not sure if it is just sending a single message to me for my own personal preview… Please clarify.

    Also is there an import CSV like mailchimp has? actually would be great if i could easily stay in sync with our mailchimp newsletter email list.

    @pursuitofhappinessyoga,

    The preview button sends the email to the currently logged in user

    I’ve answered the CSV question in the thread where you first asked that question.

    @mattyrob you’re the best.

    Thanks for the fix, much appreciated.

    Thread Starter yatong

    (@yatong)

    Hi here,
    This is also off topic. I just some advice. I am using worpress and buddypress together. I have decided to go with only buddypress as it offers a suitable platform for forums. I have about 700 registered users. Is there a way I can disable worpress and not lose current users accounts?
    Your advice will be appreciated.
    Thanks

    @yatong,

    Sorry but I have absolutely no idea having never used BuddyPress. Perhaps you should ask on their forums.

    I’ve replaced those strings and sure it gets past the screen and says message sent but it’s not sending anything.
    I am registered and don’t get any emails.
    The test email does however send to me.

    Also I published a new page and got no email.

    @mobber79,

    I’ve followed up in this thread.

    I tried replacing:
    check_admin_referer(‘subscribe2-write_subscribers’, $s2nonce);

    with:
    wp_nonce_field(‘subscribe2-write_subscribers’ . $s2nonce);

    I did not work form, HOWEVER I tried just removing the line completely, and that did work!

    The site is:
    https://greatfloridahomes.biz

    @brent b,

    While that will work it will reduce the security of your site as the code no longer checks where the request for that page came from and whether it is a valid request to change your settings.

    I’d suggest you update to version 8.4 of the plugin or apply the fix correctly.

    Change:
    check_admin_referer('subscribe2-write_subscribers', $s2nonce);
    to:
    check_admin_referer('subscribe2-write_subscribers' . $s2nonce);

    And change:
    wp_nonce_field('subscribe2-write_subscribers', $s2nonce);
    To:
    wp_nonce_field('subscribe2-write_subscribers' . $s2nonce);

Viewing 15 replies - 16 through 30 (of 36 total)
  • The topic ‘Subscribe2 Plugin v8.3 failure’ is closed to new replies.