1

そのため、アップロードするファイルを選択していないというエラーが表示され続けます。私は codeigniter のサイトの例に従い、多くのトピックを検索しましたが、成功しませんでした。足りないものや間違っているものを特定するのを手伝ってください。これは、数 kb のような xml を単純にアップロードするだけです。

コントローラー:

<? 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 に答える