I’m assuming this project is dead being it’s been three years since an update was posted.
Trying to connect to a Mautic v3.0.1 install and it says there are no forms created in Mautic when there are two. One form of each type.
Is there going to be any future development of the plugin or should people be warned they have to find alternate options?
]]>I just realized as I went to add a new integration that all my 5 websites using this plugin has an error:
There has been a critical error on your website. Please check your site admin email inbox for instructions.
I cant tell when it started
I have used troubleshooting to disable all plugins but problem still there.
Any help?
]]>For everyone who is having trouble making tracking work, you need to change the function of the 938 line for this one:
function _push_mautic_form( $query, $formId )
{
if( is_array( $query ) && ! empty( $query ) && is_numeric( $formId ) ) {
$ip = _get_ip();
$query[‘return’] = get_home_url();
$query[‘formId’] = $formId;
$data = array(
‘mauticform’ => $query,
);
if (isset($_COOKIE[‘mtc_id’]))
$data[‘mtc_id’] = $_COOKIE[‘mtc_id’];
$MauticBaseURL = get_option( ‘haw_mautic_base_url’ );
if ( $MauticBaseURL ) {
$url = $MauticBaseURL . “/form/submit?formId=” . $formId;
$response = wp_remote_post(
$url,
array(
‘method’ => ‘POST’,
‘timeout’ => 45,
‘headers’ => array(
‘X-Forwarded-For’ => $ip,
),
‘body’ => $data,
‘cookies’ => $_COOKIE
)
);
if ( is_wp_error( $response ) ) {
$error_message = $response->get_error_message();
error_log( “Gform_Mautic Error: $error_message” );
error_log( “posted url: $url” );
}
}
}
}
The form integration works fine on PHP 7.1. However, the moment we upgraded to PHP 7.3, the form integration no longer works. The plugin still connects and sees forms in mautic, however, no information submitted by the form appears to get inputted into the database.
Note, the mautic version is 2.16.1.
We upgraded to PHP 7.3 after upgrading mautic, but then realized no data from the forms were being submitted. We reverted back to PHP 7.1 and everything started to work again.
After following the setup process, I get this error why trying to add a form integration for gravity forms:
“The site is experiencing technical difficulties. Please check your site admin email inbox for instructions.”
This plugin has been working great for me for a couple of years. It still works great at getting lead from Gravity Forms to Mautic. I also do one additional step once the lead is in Mautic, I have an action to Push it to my CRM. This has also worked great. However, with the latest release, the contact comes over perfectly, but pushes a blank contact to my CRM. If If I fill in the contact form from within Mautic, it creates the contact and pushes no problem. I only seem to have a problem when the contact is created in Mautic from Gravity Forms with this plugin. I’m really stumped. It was working up till this release. Is it a timing thing? Maybe the record isn’t fully created yet whe the push to the crm happens?
]]>We are using WordPress plugin – WP Mautic Form Integrator to connect our Gravity Forms to Mautic.
This has been working for some time but recently stopped working.
No data is getting pushed from Gravity FOrms to Mautic.
This has happened before. The first time it happened we suspected an expired SSL certificate and fixing this appeared to solve the issue. But a few days later the issue reappeared.
Any suggestions
]]>Are you planning to add support for WPForms?
]]>Hi!
This is a helpfull plugin, i think. The fieldmapping is not working. Due to not supported wordpress?
Do you have plans to update this plugin?
Regards
Erik
I’ve gone through various changes including an upgrasde to Mautic 2.14 and now I can’t get anything to connect.
If I use OAuth1 then I get a blank window in WP
If I use Oauth2 then, after logging in, etc. I get an Error 500, INternal SErver ERror”
I’ve tried on both our production Mautic and our mautic.com account
It seems the plugin is thoroughly broken
Any hope?
]]>I use WP Mautic form integrator. But in anonymous mode cookies are not retrieving to a user.
I have found next code in a plugin.
function _push_mautic_form( $query, $formId )
{
if( is_array( $query ) && ! empty( $query ) && is_numeric( $formId ) ) {
$ip = _get_ip();
$query[‘return’] = get_home_url();
$query[‘formId’] = $formId;
$data = array(
‘mauticform’ => $query,
);
$MauticBaseURL = get_option( ‘haw_mautic_base_url’ );
if ( $MauticBaseURL ) {
$url = $MauticBaseURL . “/form/submit?formId=” . $formId;
$response = wp_remote_post(
$url,
array(
‘method’ => ‘POST’,
‘timeout’ => 45,
‘headers’ => array(
‘X-Forwarded-For’ => $ip,
),
‘body’ => $data,
‘cookies’ => array()
)
);
if ( is_wp_error( $response ) ) {
$error_message = $response->get_error_message();
error_log( “Gform_Mautic Error: $error_message” );
error_log( “posted url: $url” );
}
}
}
}
I think that using an array cookie I can retrieve cookies from Mautic to a user. What should I put into that array to retrieve cookies?
]]>I have used this plugin to integrate with Mauntic. But there is an error. Here is a code of error:
Fatal error: Uncaught Mautic\Exception\IncorrectParametersReturnedException: Incorrect access token parameters returned: Array in /var/www/html/kulyk-wordpress/wp-content/plugins/wp-mautic-form-integrator/lib/Auth/OAuth.php:505 Stack trace: #0 /var/www/html/kulyk-wordpress/wp-content/plugins/wp-mautic-form-integrator/lib/Auth/OAuth.php(408): Mautic\Auth\OAuth->requestToken() #1 /var/www/html/kulyk-wordpress/wp-content/plugins/wp-mautic-form-integrator/wp-mautic-form-integrator.php(379): Mautic\Auth\OAuth->validateAccessToken() #2 /var/www/html/kulyk-wordpress/wp-content/plugins/wp-mautic-form-integrator/wp-mautic-form-integrator.php(473): haw_mautic_integration_get_forms_from_server(‘haw-mautic-inte…’) #3 /var/www/html/kulyk-wordpress/wp-includes/class-wp-hook.php(286): haw_mautic_integration_add_new(”) #4 /var/www/html/kulyk-wordpress/wp-includes/class-wp-hook.php(310): WP_Hook->apply_filters(”, Array) #5 /var/www/html/kulyk-wordpress/wp-includes/plugin.php(453): WP_Hook->do_action(Array) #6 /var/www/html/kulyk-wordp in /var/www/html/kulyk-wordpress/wp-content/plugins/wp-mautic-form-integrator/lib/Auth/OAuth.php on line 505
]]>I’m using Mautic with WordPress. I’m unable to display any forms due to a mixed content warning:
Mixed Content: The page at ‘https://example.com/instructor-signup/’ was loaded over HTTPS, but requested an insecure script ‘https://mautic.example.com/mtc.js’. This request has been blocked; the content must be served over HTTPS.
I have updated all my config URLs and redirect URLs with https. However, I am not able to locate the mtc.js script. Regardless it seems this is a bug that should be fixed.
]]>Hello,
I have installed and configured the plugin but I do not understand how to map the fields in a Formidable form to the respective fields in Mautic. Please advise.
Thanks in advance,
Mitchell
]]>Can confirm the plugin is broken on mautic with Contact form 7 as mentioned by barq in the other thread. Has the same problem. Is an update coming or is the project dead?
]]>Just wanted to warn people that this plugin is broken on the newest version of Mautic (2.12.1.zip). Not sure what Mautic release broke it.
This used to be an excellent plug-in. But people who fill out forms (Contact 7 at least) through this plugin are not tracked at all anymore (neither email reads, page visits etc.).
If you use one of Mautic’s forms directly, the users are tracked perfectly. So the culprit seems to this plug-in.
Wasted days and did 2 server installs trying to get tracking to work after updating Mautic, only to discover that the issues were caused by this plug-in.
And there doesn’t seem to be any support either… Hope I’m mistaken but this plugin seems to be abandonded by the author unfortunately ?? Please correct me if I’m wrong.
]]>Hi,
THe IP address of all contacts that fills out my form, for some reason always becomes the IP of my webserver, which makes the IP useless.
Expected result: IP address captured from the form should be the IP of the user who submits the form.
Am I the only one experiencing this?
How can this be fixed?
Hi, I am using Divi by Elegant Themes in WordPress, which requires the use of Bloom optin forms.
I did not see this is the list of forms that this plugin works with.
Will it work with Bloom, and if not, when can I expect it? I am stuck!
]]>Hi, It seems that https doesn’t work. I’ve tried http and https access on my local dev environment.
– Me, Mac OS 10.13.2, Laravel Valet , nginx, php-fpm 7.1, MariaDB
– Fresh installed of WordPress v4.9.1 as https://wordpres.test
– Installed Contact Form 7 v4.9.2
– Installed WP Form Integrator v1.0.3
– Created a basic form of Last, First name, email, company, subject, message text area
– Fresh installed of Mautic v2.12.1 as https://mautic.test
– Created a basic form of Last, First name, email, company, subject, message text area
– Tried to issue API credential with OAuth 2, then I was able to connect successfully.
– Integrate Contact Form 7 Form and Mautic Form as described in the help doc
– Test to send a form data
– Mautic received thed data successfully.
– Changed the WordPress & Mautic to https.
– Test to send a form data
– No responce
– Switch back the site URL from https to http
– Test to send a form data
– Successfully integrated the data.
I get a fatal error when attempting to add a new form after setting up mautic to Ninja form api integration.
Fatal error: Uncaught Mautic\Exception\IncorrectParametersReturnedException: Incorrect access token parameters returned: Array in /home/webuycar/public_html/NewDreamCoaching.com/wp-content/plugins/wp-mautic-form-integrator/lib/Auth/OAuth.php:505 Stack trace: #0 /home/webuycar/public_html/NewDreamCoaching.com/wp-content/plugins/wp-mautic-form-integrator/lib/Auth/OAuth.php(408): Mautic\Auth\OAuth->requestToken() #1 /home/webuycar/public_html/NewDreamCoaching.com/wp-content/plugins/wp-mautic-form-integrator/wp-mautic-form-integrator.php(379): Mautic\Auth\OAuth->validateAccessToken() #2 /home/webuycar/public_html/NewDreamCoaching.com/wp-content/plugins/wp-mautic-form-integrator/wp-mautic-form-integrator.php(473): haw_mautic_integration_get_forms_from_server(‘haw-mautic-inte…’) #3 /home/webuycar/public_html/NewDreamCoaching.com/wp-includes/class-wp-hook.php(286): haw_mautic_integration_add_new(”) #4 /home/webuycar/public_html/NewDreamCoaching.com/wp-includes/class-wp-hook.php(310): WP_Hook->apply_filters(”, Array) #5 /home in /home/webuycar/public_html/NewDreamCoaching.com/wp-content/plugins/wp-mautic-form-integrator/lib/Auth/OAuth.php on line 505
I was able to get it to work after changing to oauth2 but since I know nothing about oauth some of the posts Ive seen about it being less secure is concerning.
Can you tell me how to resolve the fatal errors, or at least where to being debugging?
]]>Hi guys,
Considering the latest release of this feature: https://github.com/mautic/mautic/pull/4850
that allows passing the cookie value via API, does the plugin support this or do I need to wait for it to be updated?
Currently, it seems like Mautic will not track any page hits for visitors who convert through Gravity Fors that are synced to Mautic – is there something wrong with my setup perhaps? The Oauth 2 sync is successful and I can see contacts being created through the synced forms, however, I do not see any page hits for them.
My Mautic tracking code has been installed through an official WP Mautic Plugin and it works fine if I use the native Mautic forms.
Any help is greatly appreciated!
]]>Hi guys,
I’m trying to get your plugin to work together with WP Hide. The moment I choose to hide my admin url (rewrite to another url). Your plugin doesn’t work correctly.
What I’ve done is this:
1. Create an API (Oauth v2) in Mautic (the callback url used is the rewritten one).
2. Add the key and secret in WordPress
3. Create new form. This is where things go wrong, the url used to link back to Mautic has wp-admin in the url not the rewritten url.
I’d love your view on how to change this. When I switch off wp hide, the plugin works as expected.
]]>This looks like a nice plugin.
Unfortunately, I can’t get it to work for me.
How do I find the callback URL?
I don’t see any information on this on https://plugins.hireawiz.com/mautic/1.0.
Here is a screencast showing the errors I get:
https://monosnap.com/file/yDudc0DbX0tAuvSgX9yWD9lFkBjNZK
Thanks for your help!
Josh
The post at https://www.ads-software.com/support/topic/ninja-forms-new-upgrade-3-0-not-submitting-to-mautic/ from 9 months ago is closed so I can’t reply to it. But I’m having the same issue.
Ninja Forms v3.0 is not creating contacts in Mautic. My install of NF and this plugin is fine using Oauth2 and NV 2.9 and submitted forms generate the contact. If I update NF to v3.0 the contact isn’t created.
]]>Hi,
I have followed the instructions to set up this plugin. It works just fine on one site (and have used it successfully for months) – same WordPress version. But on the other new site it authenticates correctly after setting up the API settings, however I get “In doesn’t seem you have any form in Mautic. Please go ahead and create the form in Mautic and then come here again to map the fields.”
Have tried re-creating the form multiple times, read all the support tickets about this on www.ads-software.com as well as Googled it and tried all suggested fixes. With no luck.
Also tried disabling plug-ins.
How do I fix this?
]]>Hi,
I’ve used this on a few sites and it worked without issues (other than forms taking a while to show in the admin).
I’ve now added it to a multi-site install and it’s able to authenticate but can’t see the forms in mautic.
I’ve rebuilt the forms, checked cors settings, re-authenticated the api, tried auth1 and 2, but no forms ever show up.
Has anyone got this working with a multi-site install, or am I barking up the wrong tree?
]]>This is to advise that this plugin works well with the current version of wordpress 4.7.3. You need to use OAuth 2 in setting and use the corrsponding API details from Mautic.
]]>Did the install from wp admin
configured it as per instructions
but can’t add new mapping for contact 7
just shows blank screen
]]>Good Day
I get a fatal error when trying to create a ninja to mautic for relationship:
Fatal error: Uncaught Mautic\Exception\IncorrectParametersReturnedException: Incorrect access token parameters returned: invalid_client in /home/storefru/public_html/wp-content/plugins/wp-mautic-form-integrator/lib/Auth/OAuth.php:620 Stack trace: #0 /home/storefru/public_html/wp-content/plugins/wp-mautic-form-integrator/lib/Auth/OAuth.php(450): Mautic\Auth\OAuth->requestAccessToken(‘POST’, Array, ‘json’) #1 /home/storefru/public_html/wp-content/plugins/wp-mautic-form-integrator/wp-mautic-form-integrator.php(379): Mautic\Auth\OAuth->validateAccessToken() #2 /home/storefru/public_html/wp-content/plugins/wp-mautic-form-integrator/wp-mautic-form-integrator.php(473): haw_mautic_integration_get_forms_from_server(‘haw-mautic-inte…’) #3 /home/storefru/public_html/wp-includes/class-wp-hook.php(298): haw_mautic_integration_add_new(”) #4 /home/storefru/public_html/wp-includes/class-wp-hook.php(323): WP_Hook->apply_filters(”, Array) #5 /home/storefru/public_html/wp-includes/plugin.php(453): WP_Hook->do_action(Array) #6 /home/stor in /home/storefru/public_html/wp-content/plugins/wp-mautic-form-integrator/lib/Auth/OAuth.php on line 620
It also happens when I use auth 1
Any help appreciated I use site ground for hosting and my mautic install is in a subdirectory named “magic”of my public html directory. WordPress is in the root of my public html directory
]]>I’ve installed the plugin and added the details to the settings pages. Like a few others on here, if I use OAuth 1 and click on add new then I get a blank page (A 500 error is showing in devtools).
If I switch to OAuth 2 and click on add new, the page changes to oauth/v2/authorize etc. but I get a 404 error….
Has anybody else had this issue?
]]>