Posts

Showing posts with the label admin

How to remove Security Notification of renaming "admin" folder name in opencart version 4.x

Image
 If you are facing issue like  "Please type in a new admin directory name in the field below."  as a   " Important Security Notification! "   in opencart admin panel like this given below screenshot.  Solutions:          1. Go to this File:- admin  =>   controller => common  =>            2. Edit this file " security.php "          3. Find this line  return $this->load->view('common/security', $data);                   probabally you can find this line in Line No: 50           4. Replace this line with  return ' ';         Now everything is fine and working great.           Happy Coding !!! 😅

Openart 3.0.3.3 Error " Notice: Trying to access array offset on value of type null in vendor\scss.inc.php on line 1753"

Image
 Hi, I was getting a lots of errors while doing disable the cache from opencart admin by clicking on this button. like this "Notice: Trying to access array offset on value of type null in vendor\scss.inc.php on line 1753" to fix this error. I did change this code in the following files storage->vendor->scss.inc.php $key = $key[1]; to $key = isset($key[1]) ? $key[1] : null; Now everything is fine and working great 😅