2016-07-27 178 views
1

我要上传的MP3文件,但它显示的消息:“上传的文件超过你的PHP配置文件允许的最大大小”上传文件夹中的mp3文件?

我的文件只有4.5 MB,这是我的控制器:

public function add_audio(){ 

$config['upload_path'] = './musics/'; 
      $config['allowed_types'] = 'mp3|3gp|mpeg'; 
      $config['max_size'] = '999999999999999999999'; 

      $this->load->library('upload',$config); 
      chmod('musics/', 0777); 
      $this->upload->do_upload(); 
      $data['audio'] = $_FILES['userfile']['name']; 




if (! $this->upload->do_upload()) 
{ 
    $data['error'] = $this->upload->display_errors(); 
    print_r($data['error']);  
    //line of codes that displays if there are errors 
} 
else 
{ 
    $data['audio'] = $_FILES['userfile']['name']; 

    $this->load->model('main'); 
    $query = $this->main->insert('audio',$data); 

    if($query == TRUE){ 
     $this->load->view('admin/success'); 
    } 
} 

}//end add 

需要帮助...

回答

0

你需要增加upload_max_filesizepost_max_size在php.ini。更改后,重新启动http服务器以使用新值。

; Maximum allowed size for uploaded files. 
upload_max_filesize = 5M 

; Must be greater than or equal to upload_max_filesize 
post_max_size = 5M 
+0

有两种文件名php.int开发和生产 - 我的XAMPP/PHP的内部,哪个文件,你都指向你能说清楚PLZ? –

+0

在'xampp/php /'目录中应该有'php.ini'。 – sozkul

+0

http://stackoverflow.com/questions/6880749/php-ini-production-vs-development – sozkul