menatwork / maxmind
MaxMind GeoIP cronjob and integration for Contao
Installs: 28
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 7
Forks: 0
Open Issues: 0
Type:contao-module
Requires
- php: >=5.3
- contao-community-alliance/composer-installer: *
- contao/core: >=3.2,<4
- menatwork/geolocation: 1.*
Suggests
- terminal42/notification_center: Provide a central and flexible way for Contao developers to send notifications via their extensions.
README
Die MaxMind Extension ist als genereller Cronjob für die Übertragung von GeoIP Daten gedacht. Mit Hilfe der Backendkonfiguration kann eine ZIP-Datei automatisiert heruntergeladen und verarbeitet werden. Auch kostenpflichtige ZIP-Dateien können mit einem optionalen Lizenzkey verarbeitet werden.
The MaxMind extension is intended as a general cronjob for the transmission of GeoIP data. Using the backend configuration, a zip file will be downloaded automatically and processed. Also paid ZIP files can be processed with an optional license key.
Konsole / Console
cd /var/www/contao/system/modules/maxmind
php MaxMindCaller.php
Parameter
--verbose // Print log msg on screen --dry-run // Don't import into database, just download it. --no-mail // Send no mail notification --force // Always import into database. Don't work with dry run. --language "de" // Contains the language for the backend.
HTTP Aufruf / HTTP Request
Da Contao 3.x sämtliche Ordner in system/modules schützt, ist ein direkter Aufruf ohne Anpassungen (wie z.B. Änderung der .htaccess im Root oder dem Ablegen einer .htaccess in system/modules) nur in Contao 2.11 möglich.
As Contao 3+ protects all subfolders within system/modules, direct requests into there are possible only in Contao 2.11 without adjustments (such as a change in the .htaccess of the root or adding an own .htaccess within a designated folder to be whitelisted).
http://www.example.com/system/modules/cleanup/MaxMindCaller.php
Contao Cronjob
Contao bietet die Möglichkeit sich in die systemeigenen Cronjobs zu integrieren. Dafür muss man nur eins der 5 möglichen Beispiele aus der config.example.php in die dcaconfig.php oder in die config.php der eigenen Extension übernehmen und einkommentieren. Der stündliche und minütige Aufruf ist in Contao 2.11 nicht vorhanden.
Contao provides the ability to integrate own requests into the native system cron jobs. Therefore you have to take over one of the following 5 examples from the config.example.php and paste them into the dcaconfig.php or config.php of your own extension. The hourly and minute request is not available in Contao 2.11.
$GLOBALS['TL_CRON']['monthly'][] = array('MaxMind\MaxMind', 'run'); $GLOBALS['TL_CRON']['weekly'][] = array('MaxMind\MaxMind', 'run'); $GLOBALS['TL_CRON']['daily'][] = array('MaxMind\MaxMind', 'run'); // Contao 3 only $GLOBALS['TL_CRON']['hourly'][] = array('MaxMind\MaxMind', 'run'); $GLOBALS['TL_CRON']['minutely'][] = array('MaxMind\MaxMind', 'run');