Category Archives: PHP

PHP, which stands for Hypertext Preprocessor, is a widely-used open-source server-side scripting language primarily designed for web development. It was created by Danish-Canadian programmer Rasmus Lerdorf in 1994 and has since become one of the most popular programming languages for web development.

How to compare rates from marketplace ebay, amazon, walmart, new egg etc for same products from other sellers

Comparing rates for the same products across multiple marketplaces like eBay, Amazon, Walmart, Newegg, and others can be a bit of a task due to the different structures of each platform. Here’s a general approach to comparing rates effectively: Identify the Products: Begin by identifying the products you want to compare across different marketplaces. You… Read More »

Magento 2 Elastic Search Vs Open Search difference and usages

Magento 2, an e-commerce platform, supports both ElasticSearch and OpenSearch for its search functionality. Here are the key differences and usages: Elasticsearch: Elasticsearch is an open-source search and analytics engine built on top of Apache Lucene. It’s known for its speed, scalability, and distributed architecture. Magento 2 initially integrated Elasticsearch as its default search engine,… Read More »

Which carrier is best between UPS vs FedEx with rates and on time delivery

Determining the “best” carrier between UPS and FedEx depends on various factors including your specific shipping needs, the destination of your shipments, package size, weight, and urgency of delivery. Both UPS and FedEx are reputable carriers with extensive domestic and international networks. Here’s a comparison of UPS and FedEx based on rates and on-time delivery:… Read More »

Algolia Magento 2 MySQL adapter: Missing required configuration option ‘host’

The error message you’re encountering, “Missing required configuration option ‘host’”, suggests that the Algolia Magento 2 MySQL adapter is expecting a configuration option called ‘host’, but it is not provided. This typically indicates an issue with the configuration settings for the Algolia extension in your Magento 2 installation. Algolia Magento 2 Common Error Message on… Read More »

How do I make Git ignore file mode (chmod) changes?

To make Git ignore file mode (chmod) changes, you can use the git config command to set the core.fileMode configuration option to false. This will make Git ignore changes to the file permissions (chmod) when determining if a file has been modified. Here’s how to do it: git config core.fileMode false You can run this… Read More »

Magento 2 how to create custom payment method

To create a custom payment method in Magento 2, you will need to follow the following steps: Create a custom module for your payment method by creating a directory with the name of your module under app/code directory of your Magento installation. Create a registration.php file in the root of your module directory with the… Read More »