- The Cost Difference
- Customer Segmentation and Targeted Promotions to Drive Conversions
- Customer Attribute Management for Advanced Personalization
- Recommend, Up Sell and Cross Sell More Products with Rule Based Product Relations
- Visual Merchandizer to Boost Conversions
- Powerful Search to Drive Conversions
- Limited Catalog Access to Display Products by Customer Group
- Add to Cart by SKU to Improve Conversions
- Streamline Returns with Advanced RMA
- Drive Customer Loyalty and Rewards
- Convert Returns into Future Sales with Store Credits
- Keep Customers Coming back with Gift Cards
- Promote Return Visits with Multiple Wish Lists
- Increase Sales and Loyalty with a Custom Gift Registry
- Private Sales and Personalized Shopping Experience
- Increase Sales with Automated Email Reminders
- Advanced Content Management Systems
- Order Archiving to Make Store Management Convenient
- Advanced Permissions for Improved Control
- Support Tools to Quickly Diagnose and Resolve Issues
- Content Staging and Preview
- Architecture that Scales with your Business
- MySQL Cluster Support for High Availability
- Drive Performance with Message Queues
- Support for Alternate Media Storage – CDN and Database
- You are in Safe Hands with Strong Data Encryption, Hashing and Key Management
- Dedicated Support for the Difficult Times
Tag Archives: eCommerce
Magento 2 Module Development
Follow the below steps to create a Magento 2 module – PHPcodez_First
Step 1: Create the folder for the module
Step 2: Create etc/module.xml file
Step 3: Create etc/registration.php file
Step 4: Enable the module Continue reading Magento 2 Module Development
Deploy Static Content Magento 2
The static view files deployment command enables you to write static files to the Magento file system .
The term “Static” means it can be cached for a site( images ,JS and CSS )
The term “View” refers to the presentation layer (from MVC).
Static view files are located in the pub/static directory, and some are cached in the var/view_preprocessed directory as well.
Static view files deployment is affected by Magento modes as follows:
Default and developer modes: Magento generates them on demand, but the rest are cached in a file for speed of access.
Production mode: Static files are not generated or cached.
You can deploy the static content by running the below command.
php bin/magento setup:static-content:deploy
Magento 2 Upgrade Database
Run the following command to upgrade database.
php bin/magento setup:upgrade
Disble module in magento 2
You can disable the module by running the below command.
php bin/magento module:disable Vendorname_Modulename
Or other way, you can access the file app/etc/config.php
You will see a long list of modules there, just set the value 0 for the module ‘Vendorname_Modulename’ => 0,
Your module should be disabled now.
Enable module in magento 2
You can enable the module by running the below command.
php bin/magento module:enable Vendorname_Modulename
Or other way, you can access the file app/etc/config.php
You will see a long list of modules there, just add your module as well ‘Vendorname_Modulename’ => 1,
Your module should be available now.
magento 2 technical problem with the server created an error
I have faced the same issue and its like the system was throwing the below error
Magento ver. 2.2.0-dev – A technical problem with the server created an error. Try again to continue what you were doing. If the problem persists, try again later
To fix the issue I have deployed the static content again and done reindexing and cache clearing
php bin/magento setup:static-content:deploy
php bin/magento indexer:reindex
php bin/magento cache:flush
Magento 2 CSS,images and js not loading
I have faced the same issue and its like the css,js and images were not loading after Magento 2 installation.
Below commands were issued from command line and that solved the issue.
php bin/magento setup:static-content:deploy
php bin/magento indexer:reindex
php bin/magento cache:flush
Magento Delete Shopping Basket Items Of Customer
You can delete it using the below query
UPDATE sales_flat_quote SET is_active=0 WHERE customer_id =CUSTOMERID ;
Magento Customer Address Add/Edit Form Not Showing All Countries
We can add more countries from System -> Configuration-> General-> Country Options -> Allow Countries