You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Uncaught TypeError: basename(): Argument #1 ($path) must be of type string, PclZip given in /opt/bitnami/wordpress/wp-content/plugins/woocommerce-amazon-ebay-integration/connect.php:1195
seems there is indeed an issue here. $zipfile is an instance of PclZip not a string as required by basename.
I can see why this throws an error for us, but can't see how it doesn't throw an error for all you other customers. Seems unrelated to either PHP, Wordpress or Woocommerce version.
Fix appears to be trivial: basename( $zipfile->zipname )
The text was updated successfully, but these errors were encountered:
Looking at
CodistoConnect-WooCommerce/connect.php
Lines 1185 to 1198 in 4b739d5
$zipfile
is an instance ofPclZip
not astring
as required bybasename
.I can see why this throws an error for us, but can't see how it doesn't throw an error for all you other customers. Seems unrelated to either PHP, Wordpress or Woocommerce version.
Fix appears to be trivial:
basename( $zipfile->zipname )
The text was updated successfully, but these errors were encountered: