Remove “help us keep magento healthy report all bugs” from footer in Magento 2
-
admin
-
August 12, 2018
-
Magento 2
-
0 Comments
just create the following folder & file app/design/frontend/Vendor/theme/Magento_Theme/layout/default.xml add following code in default.xml <?xml version=”1.0″?> <page xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”../../../../../vendor/magento/framework/Module/etc/module.xsd”> <referenceBlock name=”report.bugs” remove=”true” /> </page>
Continue Reading
PHP: syntax error, unexpected ‘(‘ in C:\xampp\php\php.ini in cmd mode
-
admin
-
August 12, 2018
-
Others
-
0 Comments
Maybe error_reporting = E_ALL & ~E_NOTICE uncomments. Please follow below statement ;error_reporting = E_ALL & ~E_NOTICE
Continue Reading
How to add a custom CSS in Magento 2
-
admin
-
July 24, 2018
-
Magento 2
-
0 Comments
Just follow below step Step 1: Make sure your developer mode. Step 2: Create the following folder & files app / design / frontend / vendor / Your_theme / Magento_Theme / layout / default_head_blocks.xml app / design / frontend / vendor / Your_theme / web / css / custom.css Step 3: Pace this code within default_head_blocks.xml <?xml version=”1.0″?> <page xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” …
Continue Reading
Magento 2 No options under configuration>general>design
-
admin
-
July 22, 2018
-
Magento 2
-
0 Comments
I was bit confuse about design option missing. I found in Content > Configuration . Please change header & footer option from here.
Continue Reading
Fatal error: Class Zend\Stdlib\Parameters contains …. in Magento 2
-
admin
-
July 22, 2018
-
Magento 2
-
0 Comments
To solve this problem run following commands: 1. php bin/Magento setup:upgrade 2. php bin/Magento setup:static-content:deploy 3. php bin/Magento cache:clean 4. php bin/Magento cache:flush If still exist your problem, please restart your web server. I hope solve this issue.
Continue Reading
Fatal error: Allowed memory size of 792723456 bytes exhausted in Magento 2
-
admin
-
July 19, 2018
-
Magento 2
-
0 Comments
Please follow below step with CLI php bin/magento setup:upgrade php bin/magento setup:static-content:deploy php bin/magento cache:flush php bin/magento cache:clean If you face same issue please change memory configuration root-folder/.user.ini memory_limit = 768M root-folder/.htaccess (two place) php_value memory_limit 768M root-folder/pub/.user.ini memory_limit = 768M root-folder/pub/.htaccess (two place) php_value memory_limit 768M
Continue Reading
How to transfer localhost to server in Magento 2
-
admin
-
July 18, 2018
-
Magento 2
-
0 Comments
Please follow below step Copy source files and database Update config file with new database location in app/etc/env.php Go to database and change host in core_config_data table to new domain/IP After complete above procedure and then clear cache with following command php bin/magento indexer:reindex php bin/magento cache:flush
Continue Reading
Magento 2 add to cart not working localhost Only in chrome
-
admin
-
July 18, 2018
-
Magento 2
-
0 Comments
Change base url http://localhost/ to http://127.0.0.1 please follow below step: Go to database and find “core_config_data” table Then change secure and unsecure base url
Continue Reading
Zendanwar_HelloWorld db schema version: defined in codebase – 0.0.1, currently installed – 1.0.0
-
admin
-
July 18, 2018
-
Magento 2
-
0 Comments
mysql> SELECT * FROM setup_module WHERE module = ‘Zendanwar_HelloWorld ‘; +———————–+———————-+———————+ | module | schema_version | data_version | +———————–+———————-+———————+ | Magento_Directory | 1.0.0 | 1.0.0 | +———————–+———————-+———————+ Just edit schema_version & data_version with 0.0.1
Continue Reading
How to check modules status in Magento 2
-
admin
-
July 18, 2018
-
Magento 2
-
0 Comments
Just follow the below CLI command php bin/magento module:status You can also check from following file. app/etc/config.php
Continue Reading