Community Support Forums — WordPress® ( Users Helping Users ) — 2011-12-17T05:03:23-05:00 http://www.primothemes.com/forums/feed.php?f=4&t=16219 2011-12-17T05:03:23-05:00 http://www.primothemes.com/forums/viewtopic.php?t=16219&p=56745#p56745 <![CDATA[Re: S2 transitioning to new Mailchimp list but not removing ]]>

Statistics: Posted by Cristián Lávaque — December 17th, 2011, 5:03 am


]]>
2011-12-16T09:28:56-05:00 http://www.primothemes.com/forums/viewtopic.php?t=16219&p=56667#p56667 <![CDATA[Re: S2 transitioning to new Mailchimp list but not removing ]]>
I AM AN IDIOT!

There is NOTHING wrong with S2 or my install, just me being really stupid.

It seems MC has changed the way it stores it's history of unsubscribed users.

Even when a user has unsubscribed from a list, he/ she will still be kept within the list, but at the bottom, under 'unsubscribed', thus when I was searching to see if the user remained on the list, they still show, but obviously under 'unsubscribed'.

I hadn't noticed this and presumed they were still on the active section of the list.

I am so sorry to have taken up your time, and once again really appreciate the support you have put in here yet again.

Can't apologise enough!

At least we got to the bottom of it though, and nothing was actually wrong.

Thanks again mate!

Ross :)

Statistics: Posted by rossagrant — December 16th, 2011, 9:28 am


]]>
2011-12-15T20:50:19-05:00 http://www.primothemes.com/forums/viewtopic.php?t=16219&p=56638#p56638 <![CDATA[Re: S2 transitioning to new Mailchimp list but not removing ]]> Hi Ross.

The last two entries in your log file, indicate a demotion from Level #1 back down to Subscriber as you explained. So this tells me that s2Member is working properly. I just ran through your list of actions in an effort to reproduce this, but everything worked properly. I tested against WordPress v3.3 with s2Member v111206.

Do you have any other plugins running that interface with MailChimp's API. Or any 3rd-party services interfacing with MailChimp?

Statistics: Posted by Jason Caldwell — December 15th, 2011, 8:50 pm


]]>
2011-12-15T20:09:54-05:00 http://www.primothemes.com/forums/viewtopic.php?t=16219&p=56627#p56627 <![CDATA[Re: S2 transitioning to new Mailchimp list but not removing ]]>
Still experiencing this issue and no idea why.

cURL and F Open tests pass fine, it's worked in the past too.

I did have an issue with the list servers processing whilst I had another MC plugin installed.

I uninstalled it, and they went away. i wonder if anything was left behind that could cause an issue.

Let me know if you spot anything in my logs.

Cheers Jason!

:)

Statistics: Posted by rossagrant — December 15th, 2011, 8:09 pm


]]>
2011-12-15T19:46:44-05:00 http://www.primothemes.com/forums/viewtopic.php?t=16219&p=56622#p56622 <![CDATA[Re: S2 transitioning to new Mailchimp list but not removing ]]>

The WP admin bar issue in my other post seems to resolve in WP 3.3, so there must be a conflict in the old version somewhere.
I'll address this in our other post. See: viewtopic.php?f=4&t=16243&p=56443#p56443

Statistics: Posted by Jason Caldwell — December 15th, 2011, 7:46 pm


]]>
2011-12-15T19:45:46-05:00 http://www.primothemes.com/forums/viewtopic.php?t=16219&p=56621#p56621 <![CDATA[Re: S2 transitioning to new Mailchimp list but not removing ]]> Hi Ross. Sorry for the delayed response.
I just replied to your previous email. However, I did not receive any additional log files. Can you please send those over again for review? Regarding the server error when implementing the WordPress v3.3 patch... it sounds like you might have missed a curly bracket.

In WordPress v3.2.1, open this file:
/wp-includes/class-http.php
At line #1638, find this function:
Code:
    function compatible_gzinflate($gzData) {
        if ( substr($gzData, 0, 3) == "\x1f\x8b\x08" ) {
            $i = 10;
            $flg = ord( substr($gzData, 3, 1) );
            if ( $flg > 0 ) {
                if ( $flg & 4 ) {
                    list($xlen) = unpack('v', substr($gzData, $i, 2) );
                    $i = $i + 2 + $xlen;
                }
                if ( $flg & 8 )
                    $i = strpos($gzData, "\0", $i) + 1;
                if ( $flg & 16 )
                    $i = strpos($gzData, "\0", $i) + 1;
                if ( $flg & 2 )
                    $i = $i + 2;
            }
            return gzinflate( substr($gzData, $i, -8) );
        } else {
            return false;
        }
    } 

Replace this with the WordPress v3.3 version, which is coming soon.
Code:
    function compatible_gzinflate($gzData) {

        // Compressed data might contain a full header, if so strip it for gzinflate()
        if ( substr($gzData, 0, 3) == "\x1f\x8b\x08" ) {
            $i = 10;
            $flg = ord( substr($gzData, 3, 1) );
            if ( $flg > 0 ) {
                if ( $flg & 4 ) {
                    list($xlen) = unpack('v', substr($gzData, $i, 2) );
                    $i = $i + 2 + $xlen;
                }
                if ( $flg & 8 )
                    $i = strpos($gzData, "\0", $i) + 1;
                if ( $flg & 16 )
                    $i = strpos($gzData, "\0", $i) + 1;
                if ( $flg & 2 )
                    $i = $i + 2;
            }
            $decompressed = @gzinflate( substr($gzData, $i, -8) );
            if ( false !== $decompressed )
                return $decompressed;
        }
    } 

Statistics: Posted by Jason Caldwell — December 15th, 2011, 7:45 pm


]]>
2011-12-12T19:57:08-05:00 http://www.primothemes.com/forums/viewtopic.php?t=16219&p=56396#p56396 <![CDATA[Re: S2 transitioning to new Mailchimp list but not removing ]]>
I've upgraded my test server to WP 3.3

The issue still remains unfortunately and this is on a different server to my production site where the issue is the same.

I've just emailed you new logs which might have processed Gzip properly this time to give us more of a clue.

The WP admin bar issue in my other post seems to resolve in WP 3.3, so there must be a conflict in the old version somewhere.

Problem is, I can't upgrade the production site til January I don't think, so could still do with fixing that if there is anything you could suggest?

thanks buddy!

Ross :)

Statistics: Posted by rossagrant — December 12th, 2011, 7:57 pm


]]>
2011-12-10T16:43:47-05:00 http://www.primothemes.com/forums/viewtopic.php?t=16219&p=56234#p56234 <![CDATA[Re: S2 transitioning to new Mailchimp list but not removing ]]>
Have dropped you an email, so we can get to the bottom of it!

Thanks,

Ross :)

Statistics: Posted by rossagrant — December 10th, 2011, 4:43 pm


]]>
2011-12-10T02:34:37-05:00 http://www.primothemes.com/forums/viewtopic.php?t=16219&p=56185#p56185 <![CDATA[Re: S2 transitioning to new Mailchimp list but not removing ]]> Note. The issue you were referring to is intentional. This is correct in your log file:
Code:
'api_removal_delete_member' => false,
s2Member does not delete them, it only unsubscribes them.
See: http://apidocs.mailchimp.com/api/1.3/li ... e.func.php

Statistics: Posted by Jason Caldwell — December 10th, 2011, 2:34 am


]]>
2011-12-09T13:23:30-05:00 http://www.primothemes.com/forums/viewtopic.php?t=16219&p=56165#p56165 <![CDATA[Re: S2 transitioning to new Mailchimp list but not removing ]]>
Logs just sent and I may have identified the issue, but not sure!

Thanks again!

Ross :)

Statistics: Posted by rossagrant — December 9th, 2011, 1:23 pm


]]>
2011-12-09T01:11:54-05:00 http://www.primothemes.com/forums/viewtopic.php?t=16219&p=56107#p56107 <![CDATA[Re: S2 transitioning to new Mailchimp list but not removing ]]> @Ross. MailChimp log files requested via email.
We'll update this thread with any important discoveries.

Statistics: Posted by Jason Caldwell — December 9th, 2011, 1:11 am


]]>
2011-12-07T17:13:02-05:00 http://www.primothemes.com/forums/viewtopic.php?t=16219&p=55993#p55993 <![CDATA[Re: S2 transitioning to new Mailchimp list but not removing ]]> Statistics: Posted by cwiler — December 7th, 2011, 5:13 pm


]]>
2011-12-07T17:06:37-05:00 http://www.primothemes.com/forums/viewtopic.php?t=16219&p=55992#p55992 <![CDATA[Re: S2 transitioning to new Mailchimp list but not removing ]]>
If you are not allowing S2 member to deal with your sign ups for Mailchimp, you don't need to bother with your API key.

Your issue may be caused by a conflict with the HTMl code somewhere.

Not too sure, I'm sure Jason can shed more light on this I hope.

:)

Statistics: Posted by rossagrant — December 7th, 2011, 5:06 pm


]]>
2011-12-07T17:00:18-05:00 http://www.primothemes.com/forums/viewtopic.php?t=16219&p=55990#p55990 <![CDATA[Re: S2 transitioning to new Mailchimp list but not removing ]]> Statistics: Posted by cwiler — December 7th, 2011, 5:00 pm


]]>
2011-12-07T16:19:43-05:00 http://www.primothemes.com/forums/viewtopic.php?t=16219&p=55985#p55985 <![CDATA[Re: S2 transitioning to new Mailchimp list but not removing ]]>
Perhaps using a different key for each plugin might stop the confliction?

Statistics: Posted by rossagrant — December 7th, 2011, 4:19 pm


]]>
2011-12-07T16:11:58-05:00 http://www.primothemes.com/forums/viewtopic.php?t=16219&p=55982#p55982 <![CDATA[Re: S2 transitioning to new Mailchimp list but not removing]]> Statistics: Posted by cwiler — December 7th, 2011, 4:11 pm


]]>
2011-12-07T12:42:37-05:00 http://www.primothemes.com/forums/viewtopic.php?t=16219&p=55965#p55965 <![CDATA[Re: S2 transitioning to new Mailchimp list but not removing ]]> Statistics: Posted by rossagrant — December 7th, 2011, 12:42 pm


]]>
2011-12-06T19:00:10-05:00 http://www.primothemes.com/forums/viewtopic.php?t=16219&p=54708#p54708 <![CDATA[Re: S2Member + Chimp Express plugin confliction on Mailchimp]]> Statistics: Posted by rossagrant — December 6th, 2011, 7:00 pm


]]>
2011-12-06T18:35:53-05:00 http://www.primothemes.com/forums/viewtopic.php?t=16219&p=54705#p54705 <![CDATA[S2 transitioning to new Mailchimp list but not removing old!]]>
I've noticed something new which you might want to take a look at.

List transitioning is playing up a tad in the latest version of S2 member v111105, and I've tested it on 2 seperate installs now with the same result.

When manually transitioning members from the backend in WP, a member does indeed get placed on the new Mail Chimplist for the new S2 level, but they DON'T get removed from the old list.

Could you guys test this out too and see if you get the same result.

Perhaps MC's API has changed a litttle, or S2 has changed in recent upgrades?

Ross


ALSO - Plugin conflict you might want to be aware of.


Just been testing some stuff out on my site and I've come up with a little confliction between the lister server setting in S@ and a plugin called Chimp Express. http://www.chimpexpress.com/

It appears with the CE plugin installed Mailchimp will not re=process the list server invites through the backend of WP or reassign list transitions.

No idea why but there is obviously a confliction there.

Deactivating CE doesn't help either, you have to delete it and remove the orphaned DB entries from WP_Options too.

Thought you might like to know just incase others are using this plugin and come across issues.

Hope you are well!

Ross :)

Statistics: Posted by rossagrant — December 6th, 2011, 6:35 pm


]]>