I had a fresh install of magento (just without temando plugin)
When I'm in admin -> Catalog -> Product page and I click on "Add Product"
It displays a blank page with no errors. No exception logs
What am I doing wrong?
Thanks,
Saeed
Solved! Go to Solution.
@saeed_abdul rah can you add the below code in index.php in the root of the magento directory and check the error.
ini_set('display_errors',1);
Thanks
Hello @saeed_abdul rah
Can you try that temando plugin installation, just in case?
Also no third party extension installed? because I heard similar issue due to some third party extensions.
@saeed_abdul rah can you add the below code in index.php in the root of the magento directory and check the error.
ini_set('display_errors',1);
Thanks
Sorry for late reply I'm getting new error now:
Fatal error: Uncaught Error: Cannot instantiate interface Temando\Shipping\Model\ResourceModel\Repository\PackagingRepositoryInterface in /var/www/html/magento2/vendor/magento/framework/ObjectManager/Factory/Dynamic/Developer.php:50 Stack trace: #0 /var/www/html/magento2/vendor/magento/framework/ObjectManager/ObjectManager.php(70): Magento\Framework\ObjectManager\Factory\Dynamic\Developer->create('Temando\\Shippin...') #1 /var/www/html/magento2/vendor/magento/framework/ObjectManager/Factory/AbstractFactory.php(160): Magento\Framework\ObjectManager\ObjectManager->get('Temando\\Shippin...') #2 /var/www/html/magento2/vendor/magento/framework/ObjectManager/Factory/AbstractFactory.php(246): Magento\Framework\ObjectManager\Factory\AbstractFactory->resolveArgument(Array, 'Temando\\Shippin...', NULL, 'packagingReposi...', 'Temando\\Shippin...') #3 /var/www/html/magento2/vendor/magento/framework/ObjectManager/Factory/Dynamic/Developer.php(34): Magento\Framework\ObjectManager\Factory\AbstractFactory->resolveArgumentsInRuntime('Tema in /var/www/html/magento2/vendor/magento/framework/ObjectManager/Factory/Dynamic/Developer.php on line 50
@saeed_abdul rah run the below sql query in database.
DELETE FROM `eav_attribute` WHERE `source_model` LIKE '%Temando%'
After that run the below commands.
php bin/magento setup:di:compile rm -rf var/cache/* var/page_cache/* generated/code/*
Thanks
@rahul Gupta Getting same error could you pls help me https://community.magento.com/t5/Magento-2-x-Technical-Issues/Magento-2-After-migration-Catalog-gt-A... Thanks