#2905 - Bug report and request for fix
Dear guys,
My 2 cents and please advice / fix.
Only works with Mautic version up to 2.5.1 which was released 4 Jan 2017.
Does not work with 2.6.0 or 2.6.1 without some extensive guesswork / hacking.
There is only one change made in the Mautic core which is not upgrade safe. The change is minor but there are no comments what the change is supposed to do and the file that's hacked has changed extensively in v2.6 and v2.6.1 and so its not at all obvious to make the change in the new version.
So far we have not yet gotten it to work at all. Using 2.6.1. Mautic and SuiteCRM v7.8.2.
There is a missing file "Error: File [modules/ev_MarketingCampaigns/metadata/editviewdefs.php] is missing. Unable to create because no corresponding HTML file was found." when we are trying to create a marketing campaign. Can't get it to work. Great idea. But sorry no go.
In class MauticActions there is this section:
~~~
$tables = $this->getTables($mautic->getConfig()->getEnabledModulesTables());
foreach ( $tables as $table ) {
$query = "UPDATE {$table} SET mautic_synced = 0";
$result = $db->query($sql);
}
~~~
There is no $this->getTables() function. I think its a copy and past error and should say: $tables = $mautic->getConfig()->getEnabledModulesTables();
The section
~~~
$query = "UPDATE {$table} SET mautic_synced = 0";
$result = $db->query($sql);
~~~
surely should read
~~~
$sql = "UPDATE {$table} SET mautic_synced = 0";
$result = $db->query($sql);
~~~
otherwise the query never executes.
Please fix these points fast so I can change my review from 1/2 star to 5 stars.
You probably hacked it together for a customer without a full module install and now that its packaged as a module its broke.
Please fix ASAP. LOVE THE CONCEPT!
Thank you!
8 years ago
8 years ago
8 years ago
7 years ago
7 years ago
7 years ago