Author: naveenos
-
Convert VueJS site to NuxtJS
To convert a Vue.js website to Nuxt.js, you need to follow a few steps. Nuxt.js is a framework built on top of Vue.js that provides server-side rendering (SSR) and other useful features for building universal web applications. Here’s a general process to convert your Vue.js website to Nuxt.js: Set up a new Nuxt.js project: Create…
-
Magento2 Admin login not working
Generally we faced one issue on creating a clone of our any production site or staging server. The issue is that after setup the project, we are unable to login to admin while we entering the correct username and password. To fix this issue, follow the step: Go to PhpMyadmin Open table core_config_data Run this…
-
Install Latest or Old version of Magento2 via Composer
To get the Magento metapackage: Log in to your Magento server or localhost path where you would like to install the Magento. Make sure you have proper permissions to use that folder. Change to the web server docroot directory or a directory that you have configured as a virtual host docroot. Create a new Composer…
-
Magento 2: Static files are present but shows 404 Error
Instead of look on the server directly, we should check first the Magento setup. Generally, this errors comes when the setup missing the .htaccess file in the pub/static folder. Here below I mentioned the .htaccess file code. You can copy it and create a .htaccess file inside pub/static folder and paste. Tweet This Post
-
Magento2 Wrong create options MYSQL Error
On transferring a Magento website Database running on MySQL 5.7.34 to MariaDB 10.2.39, I get the following error: SQL Strict mode was already off on this MySQL server. To fix the problem, edited the db.sql file, added below line at the top of the file. After this change, the restore worked without any error. Tweet…
-
Magento2 Folder and Files Permissions
We all are developers and generally we do mistake in files and folders permission. It might be intentionally to fix any issue or by mistake. But how to fix the permissions back when it happened. Just go to your Magento setup root folder and run these all commands: Tweet This Post
-
Magenta Connect – Access is locked. Please try again in a few minutes
Getting error on Magento connect manager “Access is locked. Please try again in a few minutes.” Go to var/ folder and open file /var/brute-force.ini Change the following two first lines to: brute-force-bad-attempts-count = 0 brute-force-diff-time-to-attempt = 180 and remove all other lines and Save. Tweet This Post
-
How to replace string in parentheses using regex
PHP, Java and other languages provide replace all functionality to replace any character by any specific character. But REGEX is best method to replace or remove any specific value using pattern. Suppose, we have input string is $xyz = “This is my best (friend)”; and we want to remove words from “()”. So it so…
-
How to programmatically add shipment with a tracking number to any order : PART II
In my previous post [How to programmatically add shipment with a tracking number to any order : PART I], you found that how can we generate shipment for an order programmatically. Here we are going to learn next step to add tracking number with generated shipment. We are assuming that you are going to use…
-
How to programmatically add shipment with a tracking number to any order : PART I
We are assuming that we have an order incremented id. and we want to make shipment for this order. Here also we are assuming that invoice has been generated for order already. so we are going to generate only shipment. $orderId = ‘1000001’; $order = Mage::getModel(‘sales/order’)->loadByIncrementId($orderId); Here we are checking the current status of order…
-
How to get ordered Items and their detail for an order ID in Magento?
I tried to wrote this code when I was working on a cron file for all orders. My client wants a cron file that get all orders information including all ordered item and their detail. First, I searched on google but I didn’t found any exact solution then I tried below code: By below code…
-
How to add custom layout template in Magento
Magento provides following types of page layout in default. 1column, 2columns-left, 2columns-right, 3columns, empty, and print. But sometimes we need to change design in layout and we do not want to affect on other pages. For example, we want to use different layout for all static pages. and we want to use 2columns-left layout style…
-
Magento: How to merge multiple fields in a colum in Magento admin panel grid?
Magento provides lot of inbuild functionalities. Using “protected function _prepareColumns()” function we can create or add new column to the grid. Like: protected function _prepareColumns() { $this->addColumn(‘first_name’, array( ‘header’ => Mage::helper(‘custommodule’)->__(‘First Name’), ‘align’ => ‘left’, ‘width’ => ’50px’, ‘index’ => ‘first_name’, )); $this->addColumn(‘last_name’, array( ‘header’ => Mage::helper(‘custommodule’)->__(‘Last Name’), ‘align’ => ‘left’, ‘width’ => ’50px’, ‘index’…
-
Fatal error: Call to a member function addFieldToFilter() on a non-object in magento
Have you upgraded your magento version OR installed any module/extension manually? If you getting this error: “Fatal error: Call to a member function addFieldToFilter() on a non-object ……” after doing any step above then you have to following steps to solve: Step 1: Re-index the all tables. a) To re-index Go to your site admin…
-
Magento: Fatal error: Call to a member function getModelInstance() on a non-object in appMage.php on line
Today we are working on cron file that will call all model methods of my custom module. But we are getting error: “Magento: Fatal error: Call to a member function getModelInstance() on a non-object in appMage.php on line 141”. when we are using: require_once ‘app/Mage.php’; $customobj = Mage::getModel(‘custommodule/custommodule’); It was amazing for us that we…
-
Magento: Free shipping without shipping method
Sometimes we need to give free shipping on some specific conditions but we do not want to enable free shipping method. Then what to do? After did much R&D and read many blogs I found a solution. It was so simple, it is possible by shopping cart price rule. First disable to Free shipping method…