How to improve Magento 1 maintenance mode by modifying the index.php file to allow access to a range of IP addresses.
Magento 1 maintenance mode allows you to restrict customer access to your store while performing site maintenance. Unfortunately, it also freezes you out of the store. Add the following code to your index.php file to allow you to work on your site while everyone else sees Magento 1 maintenance mode displayed.
Read Magento 1 vs Magento 2: Should You Stay or Should You Go?
Method to improve Magento 1 maintenance mode
- Open index.php. Above line 64, add the following and include the IPs to retain access to the site in the "allowed" array:
ip = $_SERVER[’REMOTE_ADDR’]; allowed = array(’1.1.1.1’,’2.2.2.2’);
- Locate and change the line:
if (file_exists($maintenanceFile)) { to if (file_exists($maintenanceFile) && !in_array($ip, $allowed)) {
- Save the file.
Cloudflare method to improve Magento 1 maintenance mode
If using Cloudflare, add the following code to you index.php file instead:
ip = $_SERVER[’HTTP_CF_CONNECTING_IP’]; allowed = array(’1.1.1.1’,’2.2.2.2’);
For 24-hour assistance any day of the year, contact our support team by email or through your Client Portal.