Magento 2: Enabling/Viewing Full Error Display

In Magento 2.x, the full error display on frontend is disabled by default. This article shows different methods on how you can see the full error message in your Magento 2 website. I have written another article on how to Enable/View Full Error Display on Magento 1.x. This one is a similar article for Magento … Read more

Magento 1.x: Enabling/Viewing Full Error Display

In Magento 1.x, the full error display on frontend is disabled by default. This article shows different methods on how you can see the full error message on your Magento 1 website. Method 1: View full error from var/report folder By default, you will see the following message if any Magento-related error happens in your … Read more

Magento 2 Admin Error: Exception #0 (ReflectionException): Class Authorization Model Acl GroupFactory does not exist

Problem: Opened Magento 2 Admin Entered the correct admin login information And then, got the following error: Exception #0 (ReflectionException): Class Magento\Authorization\Model\Acl\Role\GroupFactory does not exist Cause: It’s related to the factory classes that Magento generates inside var/generation directory. Solution: Clearing var/generation directory solved the error. Open terminal/command-prompt Go to your Magento root directory Run the … Read more

Magento Error: Item (Mage_Core_Model_Store) with the same id “0” already exist

Problem: I transferred my Magento site files from one computer to another (it can be from local computer to online or from development site to production site). I imported the database. Now, when I try to browse the new location’s site, I get the following error: There has been an error processing your request Item … Read more

Laravel: Enable Proper Error Display

By default, you will see the following message in case any error occurs in your Laravel application: Whoops, looks like something went wrong. Whoops, looks like something went wrong. To show the exact error message details, you need to follow the steps below: Go to your Laravel root folder Rename .env.example to .env After this, … Read more

[SOLVED] Laravel Error: Failed to open stream: No such file or directory bootstrap/autoload.php

You might get the following error while trying to run Laravel for the first time. Warning: require(/var/www/laravel/bootstrap/../vendor/autoload.php): failed to open stream: No such file or directory in /var/www/laravel/bootstrap/autoload.php on line 17 Fatal error: require(): Failed opening required ‘/var/www/laravel/bootstrap/../vendor/autoload.php’ (include_path=’.:/usr/share/php:/usr/share/pear’) in /var/www/laravel/bootstrap/autoload.php on line 17 Problem Scenario: This error generally occurs when you download/clone Laravel from … Read more

Magento 2: [InvalidArgumentException] There are no commands defined in the “setup” namespace

I am getting the following error while adding a new module to my Magento 2 installation and running the command on terminal php bin/magento setup:upgrade. [InvalidArgumentException] There are no commands defined in the “setup” namespace The same kind of error will be displayed in terminal when I try to run other commands like php bin/magento … Read more

[SOLVED] Magento Fatal error: Call to a member function toOptionArray() on boolean Adminhtml System Config Form

This article provides a solution to the error occurred while accessing Payment methods section in Magento admin panel. Problem: In Magento admin, I tried to go to a configuration settings page, System -> Configuration -> SALES -> Payment Methods and it showed the following fatal error: Fatal error: Call to a member function toOptionArray() on … Read more

Joomla Error – “JFolder::create: Could not create directory” while installing extension

Problem: I recently got the following error while trying to install a custom extension on Joomla. JFolder::create: Could not create directory Solution: This kind of error is generally related with folder permission. I checked for the folder permission in my Joomla installation and it seems to be fine. The folders have 755 permission. The other … Read more