所以我不断收到错误消息,说我没有选择要上传的文件。我按照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>