cdanni
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Issue with migration@teichlotsen: I had this same error coming from one of my custom plugins. It has an ajax file that we use to load only what we need to perform a certain function on the front end of the site, instead of using wp ajax calls as that seems to pull in everything and put a heavy load on the system. In my case, I had to specifically include wp-includes/class-wp-http-requests-hooks.php for WP4.7 and higher. I included that file in my ajax.php file and the error went away and the plugin began working again.
If you have any type of custom ajax flow, this may be where your issue is. Hope this helps!
Forum: Plugins
In reply to: [Gravity Forms Salesforce Add-on] Authorized connection droppingConfirming the fix. We’ve updated all sites that were dropping and haven’t had any further issues.
Thank you, Zack!
Forum: Plugins
In reply to: [jQuery Masonry Image Gallery] Notice when debugging is onThanks, phoenix (Will)! That fixed it!
Apologies for the delayed reply.
– Cristina
Forum: Plugins
In reply to: [Socialauth-WordPress] problem with avatarsteleanu,
I have a similar problem when using this with bbPress. When the user is logged in from Facebook, ALL avatars are showing as their avatar. So I see all posts with my avatar and another tester sees all posts as his avatar.
Have you found a solution yet?
Following up on wboykin’s post (we work together):
The site in question had options set in HTTPS for domain mapping for sharethis.com and gravatar.com.
We have another site that uses both plugins, same versions, same WP core (3.5.1) and it redirects to HTTP on non-secured pages just fine. The only difference is that it doesn’t have anything listed for domain mapping.
At this point we aren’t sure which plugin is causing the issue, so I’m going to follow up in the other plugin’s support forum as well.
Forum: Plugins
In reply to: [TubePress] Playlist not foundMarking this as resolved 🙂
Forum: Plugins
In reply to: [TubePress] Playlist not foundThis worked, thanks!
Forum: Fixing WordPress
In reply to: Malware links script from www.argoauto.netThis showed up on one of my sites today as well. I found the code in a footer widget. No idea how it got there.
Krista,
Check out what I had posted here: http://wordpress.org/support/topic/plugin-gravity-forms-salesforce-add-on-lookup-and-master-detail-fields-missing
That might be of some help 🙂
Russel, thanks for the link. I talked to our host and reviewed the issue with them and the link and they suggested creating a sessions folder and making a couple of additions to .htaccess. Doing so seems to have eliminated this particular issue. Noting it here in case it may help someone else.
# BEGIN Session Handling
php_value session.save_path /myserverpath/web/sessions
php_value session.save_handler files
# END Session HandlingDo you have Debug Form Submissions for Administrators turned on in your options? That will give you a lot of information regarding why something might not be getting to Salesforce.
One thing I’ve noticed is that if you have a very active Salesforce account, with a lot of data going into it, it may take up to 10 minutes before the data shows. YMMV.
Whoops! Forgot to mark this as resolved!
Wanted to post an update – there is an undocumented filter that hides reference types on line 1147 in salesforce-api.php.
if($var[‘type’] === ‘reference’ && apply_filters(‘gf_salesforce_skip_reference_types’, true)) { continue; }
Needed filter in functions.php is:
add_filter(‘gf_salesforce_skip_reference_types’, ‘__return_false’);