Download the PHP package triopsi/banned-tool without Composer
On this page you can find all versions of the php package triopsi/banned-tool. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download triopsi/banned-tool
More information about triopsi/banned-tool
Files in triopsi/banned-tool
Package banned-tool
Short Description Ban tool plugin for CakePHP. A quick way to ban IP addresses.
License MIT
Informations about the package banned-tool
Ban IP Address plugin for CakePHP
A quick way to ban IP addresses. It`s a plugin for CakePHP 4.x.
Installation
You can install this plugin into your CakePHP application using composer.
The recommended way to install composer packages is:
Database migration
Run the following command in the CakePHP console to create the tables using the Migrations plugin:
Load Plugin
Via the Load task you are able to load plugins in your config/bootstrap.php. You can do this by running:
Manually
Put this in the application.php in the bootstrap method:
Install middleware
To use the tool you need to add the following code snippet to your Application.php in the middleware section. eIt is not always recommended to put the Banned Middleware first.
Customizing
Make sure you have a template file in 'templates' . DS . 'Error' . DS
named banned.php
.
Configs:
- 'className' => View::class,
- 'templatePath' => 'Error',
- 'statusCode' => 403,
- 'templateLayout' => false,
- 'templateFileName' => 'banned',
- 'templateExtension' => '.php',
- 'contentType' => 'text/html'
Those can be used to adjust the content of the banned page.
Ban Component
This component adds functionality on top:
- Add ip Address to the banlist
- Remove ip Address from the banlist
- Check if the IP address is in the banlist
- List all banned ip addresses
How to setup
Ban Commands
This should be the preferred way of enabling and disabling the maintenance mode for your application.
Commands
- add ban
- rm ban
- list bans