File: outbox_queue.php

package info (click to toggle)
kalkun 0.8.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, 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-- 254 bytes parent folder | download
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';

file_get_contents($url.'/index.php/daemon/outbox_routine/');