Files
emlog_autopub/autopub_cron.php

17 lines
355 B
PHP
Raw Permalink Normal View History

2013-04-02 01:03:02 +08:00
<?php
/**
* 自动发布插件
* @copyright (c) xiaosong.org All Rights Reserved
*/
ignore_user_abort(true);
set_time_limit(0);
2013-08-25 18:31:23 +08:00
require_once('../../../init.php');
2013-04-02 01:03:02 +08:00
do {
2013-08-25 18:31:23 +08:00
clearstatcache();
$run = EMLOG_ROOT.'/content/plugins/autopub/autopub_cron_pid.php';
if(!file_exists($run)) die('do nothing');
doPub();
sleep(30);
} while (true);