1

所以我不断收到错误消息,说我没有选择要上传的文件。我按照codeigniter的站点示例,搜索了很多主题,但没有成功。请帮助我确定我缺少什么或做错了什么。这只是一个简单的 xml 上传,就像几个 kb 的。

控制器:

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

class upload extends CI_Controller{

    function __construct()
    {
        parent::__construct();
        $this->load->helper(array('form', 'url'));
    }

    function index(){

        $this->load->view("uploadPage", array('error'=>''));

    }

    function theUpload(){
        echo "uploading";
        $config['upload_path'] = "./uploads/";
        $this->load->library('upload', $config);

        if(!$this->upload->do_upload('userfile')){
            $error=array('error'=>$this->upload->display_errors());
            $this->load->view("uploadPage", $error);
            echo "no upload";
        } else{
            echo "file uploaded";

        }
    }       
}
?>

的HTML:

<body>

    <?php echo $error;?>
    <?php echo form_open_multipart('upload/theUpload');?>
    <input type="file" name="userfile" id="userfile"/>
    <input type="submit" name="submit" value="Upload File">
    </form>
</body>

如果有帮助,这是我的 htaccess

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /kayokee/ci/
#Additionally this will allow you to create a System.php controller,
#previously this would not have been possible.
#’system’ can be replaced if you have renamed your system folder.
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php?/$1 [L]

#When your application folder isn’t in the system folder
#This snippet prevents user access to the application folder
#Submitted by: Fabdrol
#Rename ’application’ to your applications folder name.
RewriteCond %{REQUEST_URI} ^application.*
RewriteRule ^(.*)$ /index.php?/$1 [L]

#Checks to see if the user is attempting to access a valid file,
#such as an image or css document, if this isn’t true it sends the
#request to index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>

<IfModule !mod_rewrite.c>
# If we don’t have mod_rewrite installed, all 404′s
# can be sent to index.php, and everything works as normal.
# Submitted by: ElliotHaughin

ErrorDocument 404 /index.php
</IfModule>
4

2 回答 2

0

您为什么不尝试以下方法:

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

class Upload extends CI_Controller{

    function __construct()
    {
        parent::__construct();
        $this->load->helper(array('form', 'url'));
    }

    function index(){

        $this->load->view("uploadPage", array('error'=>''));

    }

    function theUpload(){
        echo "uploading";
        $config['upload_path'] = "./uploads/";
        $this->load->library('upload', $config);
        $filedata = array(        
          'userfile_name' => $_FILES['userfile']['name'],
          'userfile_size' => $_FILES['userfile']['size']
        );
        if(!$this->upload->do_upload($filedata)){
            $error=array('error'=>$this->upload->display_errors());
            $this->load->view("uploadPage", $error);
            echo "no upload";
        } else{
            echo "file uploaded";

        }
    }       
}
?>

确保 userfile 是您在 HTML 中输入的文件类型的名称!

于 2013-04-04T06:01:32.500 回答
0

控制器类名上传的第一个单词应该是像 Upload 这样的大写。文件夹必须是可写的,并且路径可以是绝对的或相对的。喜欢 class Upload extends CI_Controller

于 2013-04-04T06:04:40.247 回答