dourong4031 2015-03-10 08:06
浏览 36
已采纳

php codeigniter上传文件错误

this is my controller function and below is my view file code pleas help to find out the error in my code

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

class Upload extends CI_Controller {

    function __construct(){
        parent::__construct();
    }


    function test(){
        if($this->input->post('submit')){
            $config['upload_path'] = $_SERVER['DOCUMENT_ROOT'].'/assets/uploads/';
            $config['allowed_types'] = 'mp4';
             $this->load->library('upload',$config);

            if ( ! $this->upload->do_upload()){
                $error = array('error' => $this->upload->display_errors());
            }else{
                $data = array('upload_data' => $this->upload->data());
            }
        }   
        $this->load->view('upload/test');
    }

}
?>

and this is my view code->

<form action="" method="POST" enctype="multipart/form-data" >
    Select File To Upload:<br />
    <input type="file" name="userfile"  />
    <br /><br />
    <input type="submit" name="submit" value="Upload" class="btn btn-success" />
</form>

and i m getting errors are -> enter image description here

  • 写回答

1条回答 默认 最新

  • dongpao9437 2015-03-10 15:00
    关注

    Finally i got this working,it took whole day. I was developing this on CI version->3.0 and when i replace my system folder with the new updated CI VERSION->3.0rc2 it worked like a charm in a single go and didn't change a single line in the above code.Both are development version of CI-3.But in the updated version my form validation stopped working, but as in the last version it was working fine so i copied my old version system/library/form_validation.php to new version at the same place and it is working fine now.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 深度学习根据CNN网络模型,搭建BP模型并训练MNIST数据集
  • ¥15 lammps拉伸应力应变曲线分析
  • ¥15 C++ 头文件/宏冲突问题解决
  • ¥15 用comsol模拟大气湍流通过底部加热(温度不同)的腔体
  • ¥50 安卓adb backup备份子用户应用数据失败
  • ¥20 有人能用聚类分析帮我分析一下文本内容嘛
  • ¥15 请问Lammps做复合材料拉伸模拟,应力应变曲线问题
  • ¥30 python代码,帮调试,帮帮忙吧
  • ¥15 #MATLAB仿真#车辆换道路径规划
  • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建