2

我正在尝试在 codeigniter 和 hostgator 中运行以下 cron 作业

/usr/bin/php /home/username/public_html/index.php cronjob contact martin

但没有任何反应,我收到以下电子邮件:

<h4>A PHP Error was encountered</h4>

<p>Severity: Notice</p>
<p>Message:  Undefined index:  REMOTE_ADDR</p>
<p>Filename: core/Input.php</p>
<p>Line Number: 351</p>

<p>Severity: Warning</p>
<p>Message:  Cannot modify header information - headers already sent by (output started at /home/iglesias/public_html/mysite.com/system/core/Exceptions.php:185)</p>
<p>Filename: libraries/Session.php</p>
<p>Line Number: 675</p>

我的控制器如下(只是发送电子邮件进行测试)。

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class Cronjob extends CI_Controller {

function __construct()
{
    parent::__construct();
    $this->cron();
}

function cron()
{
    if(!$this->input->is_cli_request())
    {               
        die();
    }
}

function contact($name)
{
    $this->load->library('email');
    $config['mailtype'] = 'html';
    $this->email->initialize($config);

    $this->email->from('test@gmail.com', $name);
    $this->email->to('test2@gmail.com');
    $this->email->subject('test');
    $this->email->message('test sent');             
    $this->email->send();
}
}

难道我做错了什么?我将衷心感谢您的帮助。

当从 URL 调用时,我更改了 .htaccess 以删除 index.php,我不知道这是否有关系。

谢谢

4

4 回答 4

14

我的答案是很久以后才出现的,但它可以帮助其他人。这个错误显然是众所周知的,但只有一个快速修复它:http ://ellislab.com/forums/viewthread/227672/ 它说它发生在你自动加载会话库时,它调用 CI_Input::ip_address()未初始化或类似的东西。快速修复在输入类中(core/Input.php Line 351 (CI 2.1.2)):

$this->ip_address = $_SERVER['REMOTE_ADDR'];

变得 :

if(isset($_SERVER['REMOTE_ADDR']))
   $this->ip_address = $_SERVER['REMOTE_ADDR'];
else
   $this->ip_address = '0.0.0.0';

希望这可以帮助。

于 2013-07-17T14:50:04.517 回答
0

您是否在 config/routes.php 中设置了正确的路由?尝试从您的浏览器运行脚本(或注释掉执行部分)以确保它可以通过您当前的路由/htaccess 设置访问。

于 2013-04-02T15:46:50.093 回答
0

检查 Hostgator 是否将 Apache 作为 Fast-CGI 而不是模块运行。如果是这种情况,PHP 的运行路径可能与您使用的不同。

如果您检查 phpinfo,您可能会看到相关信息。

于 2013-04-02T15:48:42.670 回答
0

@mariek 的好回答

但是我们也可以通过@在语法前使用符号来做到这一点。

所以只是在“core/Input.php”第 352 行(CI 版本 2.2.2)中做了一点改动

$this->ip_address = $_SERVER['REMOTE_ADDR'];

$this->ip_address = @$_SERVER['REMOTE_ADDR'];

并完成。

于 2015-11-02T11:57:13.690 回答