Magento 2 install with cli mode
-
admin
-
January 30, 2019
-
Magento 2
-
0 Comments
Go to your root directory C:\xampp\htdocs\magento2> and run following command php bin/magento setup:install –base-url=”http://127.0.0.1/magento2/” –db-host=”localhost” –db-name=”databasename” –db-user=”databaseuser” –db-password=”databasepass” –admin-firstname=”Yourname” –admin-lastname=”Yourname” –admin-email=”borntowinanwar@gmail.com” –admin-user=”admin” –admin-password=”strongpassword” –backend-frontname=”admin”
Continue Reading
Magento 2 after install shows blank page
-
admin
-
January 30, 2019
-
Magento 2
-
0 Comments
Please below instruction hope it will resolve. Just got to vendor/magento/framework/View/Element/Template/File/validation.php And go to line 138 lines Replace $realPath = $this->fileDriver->getRealPath($path); foreach ($directories as $directory) { if (0 === strpos($realPath, $directory)) { return true; } } With $realPath = $this->fileDriver->getRealPath($path); foreach ($directories as $directory) { $directory = $this->fileDriver->getRealPath($path); if (0 === strpos($realPath, $directory)) { return true; } }
Continue Reading
Notice: unserialize(): Unexpected end of serialized data in Magento 2 data migration
-
admin
-
January 27, 2019
-
Magento 2
-
0 Comments
Just follow the following step. Go to /yii/caching/CCache.php file and replace with following code. $value=unserialize($value); Change to : $value=unserialize(base64_decode($value)); It will work fine. hope so
Continue Reading
magento 2 not working after the command bin/magento setup:di:compile
-
admin
-
January 21, 2019
-
Magento 2
-
0 Comments
Very simple. please run following command: php bin/magento setup:upgrade php bin/magento setup:static-content:deploy -f php bin/magento cache:clean php bin/magento cache:flush 🙂
Continue Reading
Deprecated: The each() function is deprecated. C:\xampp\apps\magento\htdocs\vendor\colinmollenhour\cache-backend-file\File.php on line 81
-
admin
-
January 14, 2019
-
Magento 2
-
0 Comments
This is probably because you use php 7.2 which Magento doesn’t support currently, even in 2.3 pre-release. You can downgrade to php 7.1.X and use Magento 2.2.X or downgrade to php 7.0.7.X and use Magento 2.1.X.
Continue Reading
New Features in Magento 2.3
-
admin
-
November 29, 2018
-
Magento 2
-
0 Comments
1. Progressive Web Apps 2. Page Builder 3. GraphQL 4. Declarative Database Schema 5. Google ReCAPTCHA 6. Multi-Source Inventory 7. Asynchronous API 8. Import/Export Improvements 9. Two Factor Authentication
Continue Reading
How many design patterns in Magento 2?
-
admin
-
November 28, 2018
-
Magento 2
-
0 Comments
Magento has a total of 12 design patterns. These patterns are given below: Factory Pattern Singleton Pattern Model View Controller Pattern Front Controller Pattern Registry Pattern Prototype Pattern Iterator Pattern Object Pool Pattern Service Locator Pattern Lazy Loading Pattern Observer Pattern Module Pattern
Continue Reading
Remove Advanced Search Link from header in Magento 2
-
admin
-
August 12, 2018
-
Magento 2
-
0 Comments
Path – Vendor_Name/Custom_Theme_Name/Magento_Theme/layout/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=”advanced-search-link” remove=”true”/> </page>
Continue Reading
How to Edit/Change/remove Magento 2 Privacy Policy Page
-
admin
-
August 12, 2018
-
Magento 2
-
0 Comments
Path – Vendor_Name/Custom_Theme_Name/Magento_Theme/layout/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=”footer_links” remove=”true”/> </page>
Continue Reading
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