gateway3d / autoimport
There is no license information available for the latest version (2.3.3.7) of this package.
Gateway3D AutoImport
2.3.3.7
2021-09-16 12:01 UTC
Requires
- gateway3d/magento2-personaliseit2: *
- magento/framework: >=102.0.0
- magento/module-catalog: *
- dev-master
- 2.3.3.7
- 2.3.3.6
- 2.3.3.5
- 2.3.3.4
- 2.3.3.3
- 2.3.3.2
- 2.3.3.1
- 2.3.3.0
- 2.3.2.9
- 2.3.2.8
- 2.3.2.7
- 2.3.2.6
- 2.3.2.4
- 2.3.2.3
- 2.3.2.2
- 2.3.2.1
- 2.3.2.0
- 2.3.1.9
- 2.3.1.8
- 2.3.1.7
- 2.3.1.6
- 2.3.1.5
- 2.3.1.4
- 2.3.1.3
- 2.3.1.2
- 2.3.1.1
- 2.3.1.0
- 2.3.0.9
- 2.3.0.8
- 2.3.0.7
- 2.3.0.6
- 2.3.0.5
- 2.3.0.3
- 2.3.0.2
- 2.3.0.1
- 2.3.0.0
- 2.2.0.1
- 2.2.0.0
This package is not auto-updated.
Last update: 2025-05-03 12:26:20 UTC
README
Getting the Code via SSH & Composer
make sure that you have `"minimum-stability": "dev"
in your main magento2 composer file.
update "require" and "repositories" parts in main magento2 composer file
"require": {
"gateway3d/autoimport": "@dev"
}
"repositories": [
{
"type": "vcs",
"url": "git@bitbucket.org:gateway3d/autoimport2.git"
}
]
Then run following command
$ composer update
you should see something like this
Loading composer repositories with package information
Updating dependencies (including require-dev)
- Installing gateway3d/autoimport (dev-master e51a8bf)
Cloning e51a8bf961ae49e5eb92cbc6c1e0e6cf9eed81db
Writing lock file
Generating autoload files
Updating the Database
Subsequently, the Magento command line tool must now also be used to update the database schema.Then you would be probably asked to recompile. After that set permissions and clean cache.
php bin/magento setup:upgrade
php bin/magento setup:di:compile
sudo chmod 777 var -R && sudo chmod 777 pub -R
n98-magerun2.phar cache:clean && n98-magerun2.phar cache:flush && sudo chmod 777 var -R && sudo chmod 777 pub -R
Cron and Permissions
Please make sure that cron is running correctly for your site and also you have set correct permissions for your site. There is autoimport log under var/log/autoimport.log.
Local Testing
Model/DataSource/G3d.php - getHttpConnection
$options = array(
'sslallowselfsigned' => true,
'sslverifypeer' => false,
'sslverifypeername' => false
);
$this->_httpClient = new \Zend\Http\Client(null, $options);