File: daemon_engine.php

package info (click to toggle)
kalkun 0.8.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 7,340 kB
  • sloc: php: 30,659; javascript: 30,443; sql: 961; sh: 766; xml: 105; makefile: 40
file content (11 lines) | stat: -rw-r--r-- 261 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
<?php
// Make sure it's run from CLI
if (php_sapi_name() !== 'cli' && ! empty($_SERVER['REMOTE_ADDR']))
{
	exit('Access Denied.');
}

// Please configure this
$url = 'http://localhost/kalkun';

fclose(fopen($url.'/index.php/daemon/server_alert_daemon/', 'r'));