FireGento_FastSimpleImport2
FireGento_FastSimpleImport2 copied to clipboard
AvS_FastSimpleImport for Magento 2
With PHP 8.1, fix the following error ``` Deprecated Functionality: Optional parameter $delimiter declared before required parameter $string is implicitly treated as a required parameter in /var/www/html/vendor/firegento/fastsimpleimport/Model/Import/Category.php on line 106...
Deprecated Functionality: Optional parameter $delimiter declared before required parameter $string
Deprecated Functionality: Optional parameter $delimiter declared before required parameter $string is implicitly treated as a required pa rameter in /home/users/ajay.singh/www/html/244/vendor/firegento/fastsimpleimport/Model/Import/Category.php on line 1066 Magento version:- 2.4.4 Issue:- Getting this issue...
This has the compatibility fixes I commented on, sets a default category_path_seperator "/", and reverses the parameters for explodeEscaped because having the first parameter optional is deprecated.
Since the code style was very oudated (2016-ish), an update was needed despite still working perfectly with Magento 2.4. I updated the following: - Code Style - PHP 7.4+ only...
Append behavior is called `Add/Update` which is confusing, and the real `add_update` behavior is not available.
When a category image is imported, it's saved without the `media/catalog/category` path. For instance, if I import a `main.jpg` image, it will be saved as `/m/a/main.jpg`, causing a 404 when...
Hello, the module is not working with EE, when we try to import category it is updating attribute based on entity_id, it should be updated based on row_id.
This is my solution and work for me ;) Model/Adapters/NestedArrayAdapter.php ```php protected function convertToArray(&$line) { $implodeStr = $this->multipleValueSeparator; $arr = array_map( function ($value, $key) use (&$implodeStr) { if (is_array($value) &&...
hello, have this error when try to import with sample code, Error in data structure: entity values are mixed why?? ``` use Magento\Framework\App\Bootstrap; require_once(__DIR__.'/../../app/bootstrap.php'); $bootstrap = Bootstrap::create(BP, $_SERVER); $objectManager =...
There are setters for almost all settings in `\FireGento\FastSimpleImport\Model\Importer`. For consistency, there should also be a setter for `category_path_seperator`.