Skip to content
Bruno Barros edited this page Jan 11, 2015 · 8 revisions

As w.eloquent uses a different WordPress folder structure some plugins will not work properly because they don't follow the best practices. Generally, the problem comes with paths that are hard coded.

Here are some plugins that didn't work and the substitutes you can use instead: cache

Cache

Don't: https://wordpress.org/plugins/wp-fastest-cache/

Instead: https://wordpress.org/plugins/wp-super-cache/

Importer

The WordPress importer plugin has some bugs. It was already described by the communit and the fix is can be found here.

  1. Update the src/plugins/wordpress-importer/parsers.php on line 404:
# from this:
function WXR_Parser_Regex() {
    $this->__construct();
}
function __construct() {
    $this->has_gzip = is_callable( 'gzopen' );
}

# to this:
function __construct() {
    $this->has_gzip = is_callable( 'gzopen' );
}
function WXR_Parser_Regex() {
    $this->__construct();
}
  1. Update the src/plugins/wordpress-importer/wordpress-importer.php on line 1110:
# from this:
function bump_request_timeout() {
    return 60;
}

# to this:
function bump_request_timeout($val) {
    return 60;
}
Clone this wiki locally