I am integrating a new theme in Magento 2.2. Also I used some third party JS like bootstrap select menu, owl carousel and wow js for animation.
});
I just want to know how can I resolve this because it is stuck my performance sometime.
If any one know the idea how to resolve this please let me know.
I run the upgrade, static-deploy, cache clear, reindex command many times.
Please let me know if you want more information.
Solved! Go to Solution.
Hi @nic023811
ok - i understand , run below query from your core_config_data table.
insert into core_config_data (config_id, scope, scope_id, path, value) values (null, 'default', 0, 'dev/static/sign', 0);
if path is already there then you need to update its value - make sure value should be 0
Then after using your root privileges - removed directories by running commands like rm -rf generated , rm -rf pub/static(Except .htaccess file)
Then run below commands in the sequence :
php bin/magento setup:upgrade php bin/magento setup:di:compile php bin/magento setup:static-content:deploy -f php bin/magento cache:flush
it will works !
You need to run deployment command from root of your magento instance,
php bin/magento setup:upgrade php bin/magento setup:static-content:deploy -f php bin/magento cache:flush
Hi @nic023811
ok - i understand , run below query from your core_config_data table.
insert into core_config_data (config_id, scope, scope_id, path, value) values (null, 'default', 0, 'dev/static/sign', 0);
if path is already there then you need to update its value - make sure value should be 0
Then after using your root privileges - removed directories by running commands like rm -rf generated , rm -rf pub/static(Except .htaccess file)
Then run below commands in the sequence :
php bin/magento setup:upgrade php bin/magento setup:di:compile php bin/magento setup:static-content:deploy -f php bin/magento cache:flush
it will works !
@Manthan DaveIt works for me, Thanks
Hi @Neeraj02381
Glad to know that , you have resolved your issue ! Happy to help and keep helping