用户
 找回密码
 入住 CI 中国社区
搜索
查看: 2265|回复: 2
收起左侧

[已解决] 文件上传类老说我路径错误,求帮看源代码

[复制链接]
发表于 2012-4-26 10:09:19 | 显示全部楼层 |阅读模式
控制器
<?php
class Upload extends CI_Controller {

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

}

function index()
{
  $this->load->view('upload_form', array('error' => ' ' ));
}
function do_upload()
{
  $config['upload_path'] = 'E:/wamp/www/shanchaung/tupian/';
  $config['allowed_types'] = 'gif|jpg|png';
  $config['max_size'] = '100';
  $config['max_width']  = '1024';
  $config['max_height']  = '768';
  
  $this->load->library('upload', $config);

  if ( ! $this->upload->do_upload())
  {
   $error = array('error' => $this->upload->display_errors());
   
   $this->load->view('upload_form', $error);
  }
  else
  {
   $data = array('upload_data' => $this->upload->data());
   
   $this->load->view('upload_success', $data);
  }
}
}
?>

求解决啊
发表于 2012-4-26 10:17:32 | 显示全部楼层
flash ucenter 头像上传剪切 完整版
http://codeigniter.org.cn/forums ... 7&fromuid=12074
 楼主| 发表于 2012-4-26 16:36:11 | 显示全部楼层
下载了,谢谢

本版积分规则