My WordPress.org Plugins

4 replies on “My WordPress.org Plugins”

Hey Zack,

We use your SFDC plugin and it works great. I was hoping to see if you had done any work with integrating user management type functionality with SFDC and WP? I’m looking to set up a customer portal and hoping to be able to manage access based on SalesForce credentials. The idea is to not have to manage logins/credentials in two locations.

Would love to know your thoughts or if you have seen anything like this. You do great work and thought you would be one of the best brains out there to ask…

-c

Hi Zack,

We use the Gravity forms for Salesforce add on (which is great by the way) and are really concerned about the upcoming TLS update that people report stops the integration working. We run a lead generation business through use of GF and SF, and when SF upgrades to force users onto TLS 1.1 or higher.

FROM SF: “We want to remind you that Salesforce is requiring an upgrade to TLS 1.1 or higher by March 4, 2017 at 9:30 AM PDT (17:30 UTC). On that date we will disable TLS 1.0. To ensure your users and integrations will be able to connect to Salesforce after the disablement, please ensure you upgrade to TLS 1.1 or later before March 4, 2017.”

I notice on the plugin forum a post from 5 months ago saying there will be some upgrade your end, but nothing since. We just want to check if things are in hand to cope with the TL update, otherwise we will need to go forward with an alternative solution and perhaps overhaul our forms to remove GF completely – a big job when we have 30+ forms that each have the mapping sorted now, which is costly in terms of time and setup, so if we can avoid it that would be great!!!

I know there are others also in the same boat, so if you can let us know where things are at with this that would be great. We will need to have an alternative setup and running way in advance of the switchover to ensure no loss in service, so ideally need to know if your update will be up and working, and fully tested our end, by 13th Feb absolute latest.

Sorry to press you on timescales but our business depends on it and we need to plan effectively in advance!

Much appreciated,

Pete

Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; CC_GF_SuperClass has a deprecated constructor in /wp-content/plugins/gravity-forms-constant-contact/constantcontact.php on line 1293

Inside of your class :
class CC_GF_SuperClass extends CC_Utility {

function CC_GF_SuperClass($user = null, $password=null) {
self::updateSettings($this);
}
}

your function CC_GF_SuperClass should be replaced with this :
function __construct($user = null, $password=null) {
self::updateSettings($this);
}