aronkerr / no-ie
A module for blocking access to an application if the user agent is Internet Explorer.
Installs: 117
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Language:HTML
Requires
- php: >=5.3.3
- zendframework/zend-http: ~2.1
- zendframework/zend-loader: ~2.1
- zendframework/zend-modulemanager: ~2.1
- zendframework/zend-mvc: ~2.1
- zendframework/zend-view: ~2.1
Requires (Dev)
- phpunit/phpunit: >=3.7,<4
This package is not auto-updated.
Last update: 2025-03-29 19:33:11 UTC
README
Introduction
A ZF2 module that keeps users from accessing an application if they are using Internet Explorer. If a user using Internet Explorer attempts to access the application a status code 406 will be returned and a custom 406 error template will be displayed. The message returned is designed to look like exactly like the normal IE errors and explains that IE doesn't properly support internet standards. The user is given to options to correct the error, go back or download Google Chrome.
Requirements
- Zend Framework 2 (latest master)
Features / Goals
- Keep users who use Internet Explorer for accessing the application [COMPLETE]
Installation
Main Setup
By cloning project
- Clone this project into your
./vendor/
directory.
With composer
- Add this project in your composer.json:
"require": { "aronkerr/no-ie": "dev-master" }
- Now tell composer to download NoIE by running the command:
$ php composer.phar update
Post Installation
- Move the files contained in this projects public directory to your
./public
directory. - Enable the module in your
applicatiion.config.php
file.
<?php return array( 'modules' => array( // ... 'NoIE' ), // ... );