Get started today!◦ Full contract buyout ◦ Up to $1,000 credit ◦ Free migrations
Chat with us
Home » Magento Guide » Magento Security Guide » Improving Magento 1 maintenance mode: tips and tricks

Improving Magento 1 maintenance mode: tips and tricks

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?

Get fast, reliable hosting for WordPress

Power your site with the industry’s fastest, most optimized WordPress hosting

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.

Ready to get started?

Get the fastest, most secure WordPress.org hosting on the market.

Additional resources

How to clear a Magento cart with a url →

Clear a Magento cart with a url to simplify testing and troubleshooting.

Magento extensions vs plugins →

Compare extensions and plugins to understand how they add features to your store.

How to import Magento products →

Import products more efficiently with tips for organizing and uploading product data.