Chris Lagasse
Forum Replies Created
-
Forum: Plugins
In reply to: [HubSpot for Gravity Forms] A non well formed numeric valueHey Alex,
Can you provide me with some more information?
What version of PHP are you running? What version of WordPress?
This error appears to be encountered by the caching, but this has been tested on numerous sites with no issues.
If you have server access, I would suggest deleting the
wp-content/uploads/gf-hubspot-cache/.manifestfile, and that’ll force the cache to clear out and start over. It’s a hidden file (like your .htaccess).My guess is that the manifest didn’t write correctly, so therefore it’s crashing out every time after. And yes, this has no impact on form submissions. This is purely related to being able to store form data in the cache.
Let me know,
-Chris.Mugino,
I believe you are the same person that replied to my blog post on the bigseadesign.com website…
The answer remains the same: the “value” fields must match. The “label” can be whatever you want them to be, but as long as the “value” matches, the relationship will be properly saved.
Forum: Plugins
In reply to: [HubSpot for Gravity Forms] Hubspot Feed Mappings Not UpdatingHey Mugino,
I am confused as to your issue. Please make a new ticket with more details 🙂
But really, currently you have to make an identical form in HubSpot with the required fields that you want to carry over (doesn’t have to be all the fields in your GF form)…
Forum: Plugins
In reply to: [HubSpot for Gravity Forms] Error when showing Hubspot Feeds2.1.1 is released. It checks to see if I can access the file. If not, caching stays disabled.
-Chris.
Forum: Plugins
In reply to: [HubSpot for Gravity Forms] Error when showing Hubspot FeedsHey Moraima,
I will push a fix later today that will resolve these errors, but in the meantime, a quick solution would be to FTP into your server and make sure that the “gravityforms-hubspot/cache” folder is there, and that it has writable permissions (777 is probably best for the time being)…
I will clean up that code to be better protected against showing those errors.
Forum: Plugins
In reply to: [HubSpot for Gravity Forms] 404 Error Returned From HubSpotEric,
I just had a random thought into the issue… If you read it, the error is implying that the form data received is invalid.
Right now this plugin really only works with things like DateTime, Radio Buttons, Checkboxes, Dropdowns, and Text Input/TextArea fields…
Are you using any of the other field types in HubSpot beyond that? It’s likely that the data as I compile it by default isn’t matching the format that HubSpot is expecting, that could be the reason for it to return a 404.
Forum: Plugins
In reply to: [HubSpot for Gravity Forms] 404 Error Returned From HubSpotHey, Eric,
I wasn’t able to get anywhere with this today (though I did solve another outstanding issue)..
I plan to spend a little more time on it tomorrow… can you send me the full details of the note that shows up on that entry in Gravity Forms related to the HubSpot error? It should be in the entry itself when viewing the details, which is how I’m assuming you knew it was a 404 error.
Might help me more there. However, I tested it with my own installs, and I wasn’t able to replicate, unfortunately. So I can only do so much from my end while I just “assume” things 🙂
Forum: Plugins
In reply to: [HubSpot for Gravity Forms] Hubspot Feed Mappings Not UpdatingShould be resolved with version 2.1 I’ve tested this extensively all day today, as I rolled my own caching solution instead of relying on WP’s built in ones.
Forum: Plugins
In reply to: [HubSpot for Gravity Forms] New Form Fields from Hubspot not showing in adminShould be resolved with version 2.1 I’ve tested this extensively all day today, as I rolled my own caching solution instead of relying on WP’s built in ones.
Forum: Plugins
In reply to: [HubSpot for Gravity Forms] Hubspot Feed – Add Form – Form Not ListedHey guys,
Remove the “define()” declaration I’ve asked you to do prior, and update to 2.1 of the plugin that I literally just released… this should solve your problem.
Please let me know how it goes.
I wrote a custom caching functionality, due to WordPress transients not working properly for us and we couldn’t figure out why.
Forum: Plugins
In reply to: [HubSpot for Gravity Forms] New Form Fields from Hubspot not showing in adminNah, that doesn’t help in my search.
I’m actually in the process of reworking the function to not use WordPress’s transients at all, but a custom one that I’m building myself. That way I can guarantee that it’ll work. Hopefully I’ll have a fix out later today, now that I know with certainty that it’s the set/get transient api.
The reason why adding that line didn’t work when you added it to your functions file, is likely because by that point, it was already defined… so yea, adding it to your wp-config makes sure that it proves dominant… good to know, though 🙂
Forum: Plugins
In reply to: [HubSpot for Gravity Forms] Hubspot Feed – Add Form – Form Not ListedI’ve narrowed down the issue. And I’m working on solving it. WordPress’s Transients are not respecting the expiration in place.
Short term solution for you, is to add this to your functions or config file:
define('GF_HUBSPOT_DEBUG', true);It will force the transient cache to refresh. It also includes a pretty extensive log in your wp-content/uploads folder, but you can ignore that.
Forum: Plugins
In reply to: [HubSpot for Gravity Forms] 404 Error Returned From HubSpotHey Eric,
Every now and then HubSpot gets overwhelmed and 404’s their whole API.
I would suggest turning on the Debug mode for my plugin and exploring the error log on one a your test submissions.
define('GF_HUBSPOT_DEBUG', true);The error log will show up in your wp-content/uploads folder.
Only times I’ve ever seen 404’s for the HubSpot API is when they’re down themselves. And just in case, I would say make sure you’re using the latest version of my plugin (though I’m sure you are)
Forum: Plugins
In reply to: [HubSpot for Gravity Forms] Hubspot Feed Mappings Not UpdatingI’ve narrowed down the issue. And I’m working on solving it. WordPress’s Transients are not respecting the expiration in place.
Short term solution for you, is to add this to your functions or config file:
define('GF_HUBSPOT_DEBUG', true);It will force the transient cache to refresh. It also includes a pretty extensive log in your wp-content/uploads folder, but you can ignore that.
Forum: Plugins
In reply to: [HubSpot for Gravity Forms] New Form Fields from Hubspot not showing in adminI’ve narrowed down the issue. And I’m working on solving it. WordPress’s Transients are not respecting the expiration in place.
Short term solution for you, is to add this to your functions or config file:
define('GF_HUBSPOT_DEBUG', true);It will force the transient cache to refresh. It also includes a pretty extensive log in your wp-content/uploads folder, but you can ignore that.