• You MUST read the Babiato Rules before making your first post otherwise you may get permanent warning points or a permanent Ban.

    Our resources on Babiato Forum are CLEAN and SAFE. So you can use them for development and testing purposes. If your are on Windows and have an antivirus that alerts you about a possible infection: Know it's a false positive because all scripts are double checked by our experts. We advise you to add Babiato to trusted sites/sources or disable your antivirus momentarily while downloading a resource. "Enjoy your presence on Babiato"

Acelle Connect - WordPress Plugin for Acelle Mail

Acelle Connect - WordPress Plugin for Acelle Mail v2.0

No permission to download

camilo

Member
Apr 3, 2019
85
50
18
camilo submitted a new resource:

Acelle Connect - WordPress Plugin for Acelle Mail - Acelle

Acelle Connect – version 2.0 (Sep 1st, 2019)​

Acelle Connect © is a Wordpress © plugin which allows you to keep your Wordpress contacts synchronized with your mail list in Acelle Mail © – an email marketing web application.

Suppose you want to send periodical email campaigns to your Wordpress contacts. You will need to create a mail list in an email marketing application like...

Read more about this resource...
 
  • Love
  • Like
Reactions: Riczka and Babak
I have this error after active the plugin.


Code:
Fatal error: Uncaught Error: Call to undefined function create_function() in
/var/www/vhosts//plugins/acelle-connect/vendor/getherbert/framework/bootstrap/autoload.php:72 Stack trace: #0 /var/www/vhostshttpdocs/wp-content/plugins/acelle-connect/plugin.php(15): require_once() #1 /var/www/vhosts//httpdocs/wp-admin/includes/plugin.php(2314): include_once('...') #2 /var/www/vhosts//httpdocs/wp-admin/plugins.php(192): plugin_sandbox_scrape() #3 {main} thrown in /var/www/vhosts//httpdocs/wp-content/plugins/acelle-connect/vendor/getherbert/framework/bootstrap/autoload.php on line 72


I also fix with free zapier plugin and api to sync.
 
  • Like
Reactions: Azarock35
Fatal error: Uncaught Twig_Error_Loader: The “/” directory does not exist (“/”)

Its not worked :/
 
  • Like
Reactions: Azarock35
Here's the functional version of this plugin. Accele Connect I've addressed all the issues, and please ensure you're using PHP 7.4, as it won't function properly with other PHP versions.
 
Plugin could not be activated because it triggered a fatal error.


Fatal error: Uncaught Error: Call to undefined function create_function() in --/public_html/wp-content/plugins/acelle-connect/vendor/getherbert/framework/bootstrap/autoload.php:72 Stack trace: #0 --/public_html/wp-content/plugins/acelle-connect/plugin.php(15): require_once() #1 --/public_html/wp-admin/includes/plugin.php(2318): include_once('/home/381063.cl...') #2 --/public_html/wp-admin/plugins.php(192): plugin_sandbox_scrape() #3 {main} thrown in /home/381063.cloudwaysapps.com/jgrensgqwr/public_html/wp-content/plugins/acelle-connect/vendor/getherbert/framework/bootstrap/autoload.php on line 72
 
to those who facing fatal error.

we need edit somthing in autoload.php acelle-connect\vendor\getherbert\framework\bootstrap

replace

Code:
// Ugly hack to make the install hook work correctly
    // as WP doesn't allow closures to be passed here
    register_uninstall_hook($plugin, create_function('', 'herbert()->deletePlugin(\'' . $root . '\');'));
    if ( ! is_plugin_active($plugin))
    {
        continue;
    }
    if ( ! $herbert->pluginMatches($config))
    {
        $herbert->pluginMismatched($root);
        continue;
    }
    $herbert->pluginMatched($root);
    @require_once $root.'/plugin.php';
    $herbert->loadPlugin($config);


with

Code:
function acelle_connect_uninstall_handler() {
    global $herbert, $root;
    $herbert->deletePlugin($root);
}


// Register uninstall hook using the named function
register_uninstall_hook($plugin, 'acelle_connect_uninstall_handler');


if (!is_plugin_active($plugin)) {
    continue;
}


if (!$herbert->pluginMatches($config)) {
    $herbert->pluginMismatched($root);
    continue;
}


$herbert->pluginMatched($root);


@require_once $root . '/plugin.php';


$herbert->loadPlugin($config);
 
AdBlock Detected

We get it, advertisements are annoying!

However in order to keep our huge array of resources free of charge we need to generate income from ads so to use the site you will need to turn off your adblocker.

If you'd like to have an ad free experience you can become a Babiato Lover by donating as little as $5 per month. Click on the Donate menu tab for more info.

I've Disabled AdBlock