home/dialnqxw/public_html/dialnumber.in/supermart.dialnumber.in/system/storage/vendor/scss.inc.php on line 1753Notice: Trying to access array offset on value of type null in
-
home/dialnqxw/public_html/dialnumber.in/supermart.dialnumber.in/system/storage/vendor/scss.inc.php on line 1753Notice: Trying to access array offset on value of type null in
0 -
Hello,
The error trying to access array offset on value of type null in storage\vendor\scss.inc.php can occur on Opencart 3.0.x.x installed on a server with PHP>=7.4 when the SASS compiler is disabled in the admin panel.
To solve this problem, you need to replace one line in the system file, or rather, add a check there for the presence of the resulting array element.
How to solve it:
Find this file: storage*\vendor\scss.inc.php (the full path to the file is in the error code)Find this line:
$key = $key[1];Replace with it:
$key = isset($key[1]) ? $key[1] : null;Kind regards,
Karapuz
0
Please sign in to leave a comment.
Comments
2 comments