Nexcess Logo

How to improve Magento 1 maintenance mode

Knowledge Base Home

Notice anything different?

We've enhanced the appearance of our portal and we're working on updating screenshots. Things might look different, but the functionality remains the same.
September 11, 2019

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

  1. 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’);
  2. Locate and change the line:
    if (file_exists($maintenanceFile)) { to
    if (file_exists($maintenanceFile) && !in_array($ip, $allowed)) {
  3. 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.

Jason Dobry
We use cookies to understand how you interact with our site, to personalize and streamline your experience, and to tailor advertising. By continuing to use our site, you accept our use of cookies and accept our Privacy Policy.