Codeigniter - 上传时允许的内存大小耗尽

时间:2012-10-22 23:16:57

标签: php codeigniter

我注意到有类似的问题,但我尝试了提出的解决方案,但无法提出解决方案。

这是我的开发环境:

  • PHP 5.3.10-1ubuntu3.4 with Suhosin-Patch(cli)
  • 服务器版本:Apache / 2.2.22(Ubuntu)
  • Codeigniter_2.1.2

我要做的是图片上传的基本示例。这是控制器:

<?php

class Entry extends CI_Controller {

    function __construct() {
        parent::__construct();
        ini_set('memory_limit', "256M");
    }

    function index() {
        $this->load->view('upload_form');
    }

    function upload() {

        $config['upload_path'] = './uploads/';
        $config['allowed_types'] = 'gif|png|jpg';
        $config['max_size'] = 2048;
        $config['max_width'] = 1024;
        $config['max_height'] = 768;

        $this->load->library('upload', $config);

        if (! $this->upload()->do_upload('file')) {
            $error = array('error' => $this->upload->display_errors());

            $this->load->view('upload_form', $error);
        }
    }

}

?>

我的视图文件就像这样:

<?php
    echo form_open_multipart('entry/upload');
    echo form_upload('file');
    echo form_submit('submit', 'Upload Fille');
?>

在控制器中,你可以看到我已经尝试将内存限制设置为256MB,我也尝试了-1选项。当我将memory_limit设置为-1时,计算机疯了,它冻结了((:

以下是我尝试上传时出现的错误。

PHP Fatal error:  Allowed memory size of 134217728 bytes exhausted (tried to allocate 523800 bytes) in /var/www/giydir/system/core/Common.php on line 358, referer: http://localhost/giydir/entry

错误显示的行对我来说很有意思

$_log =& load_class('Log');

3 个答案:

答案 0 :(得分:0)

根据你的反馈,你的内存限制达到了128M ......你的256M的脚本设置似乎并不坚持。尝试直接编辑你的ini文件来增加内存吗?

答案 1 :(得分:0)

抱歉,这是我的错误。它现在解决了。

该行

if (! $this->upload()->do_upload('file')) {

应该是

if (! $this->upload->do_upload('file')) {

答案 2 :(得分:0)

php.ini文件中增加内存大小。它会解决你的问题。

memory_limit = 12M