Magento 1.9.3 doesn’t run with PHP 7, it will show error like below:
1 2 |
Fatal error: Uncaught Error: Function name must be a string in app\code\core\Mage\Core\Model\Layout.php |
Find the below line in app/code/core/Mage/Core/Model/Layout.php file (line: 555)
1 |
$out .= $this->getBlock($callback[0])->$callback[1](); |
And Replace it with below line:
1 |
$out .= $this->getBlock($callback[0])->{$callback[1]}(); |
If you want get query string params in controller file,...
Create di.xml and add the below code Magemonkey/Redirect/etc/frontend/di.xml [crayon-628471a04680d132608183/] Create...
You can try below code to change local date to...
Step 1: First you need to add registration.php file in...
Step1 : Override message.js in current theme file on the...