Mautic integration issue
-
Couldn’t get the mautic integration to connect.
After going through the code and adding debug statements, found that the username is being used in place of the url. Username and url variables were getting swapped.
The bug is located in the
file: inc\providers\mautic\hustle-mautic.php
method: api
line: return Hustle_Mautic_Api::get_instance( $username, $base_url, $password );You have gotten the url and username variables mistakenly swapped.
It should be return Hustle_Mautic_Api::get_instance( $base_url, $username, $password );
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Mautic integration issue’ is closed to new replies.