"Incompatible file" Message when trying to install plugin.

Mkquiroga

New member
Hello, I am trying to install the plugin and I get this message after attaching the .zip V3.8.0 file and clicking "Install now": "Incompatible file."

I am working with WordPress 6.4.3 and WooCommerce 8.6.1

Am I skipping any steps? Thanks in advance
 

Mkquiroga

New member
I already solved it. It is a wordpress 6.4.3 problem when attaching files. I found a solution about it. Add the following line to the functions.php file of the active theme:

add_filter( ‘unzip_file_use_ziparchive’, ‘__return_false’ ); // Replace quotes

It is now possible to install the plugin. Thank you.
 

soriano

New member
I already solved it. It is a wordpress 6.4.3 problem when attaching files. I found a solution about it. Add the following line to the functions.php file of the active theme:

add_filter( ‘unzip_file_use_ziparchive’, ‘__return_false’ ); // Replace quotes

It is now possible to install the plugin. Thank you.
Can you explain when you say replace quotes? I don't want to break anything
 

Mkquiroga

New member
You have to add exactly the following line to the end of the script inside functions.php of the active theme and try to load the plugin again:

add_filter( 'unzip_file_use_ziparchive', '__return_false' );
 
Top