codeigniter上传图片代码url错误

Posted

技术标签:

【中文标题】codeigniter上传图片代码url错误【英文标题】:codeigniter upload image code url error 【发布时间】:2013-01-11 16:09:11 【问题描述】:

这是关于来自

的 codeigniter 图像上传和图像处理第 9 天

http://net.tutsplus.com/tutorials/php/codeigniter-from-scratch-file-uploading-and-image-manipulation/

我认为此代码与最新的 CI 不兼容。

我得到一个错误

“在此服务器上找不到请求的 URL /codeigniter/gallery。”

我的 htaccess 设置为删除 index.php 我已将我的基本 url 设置为 localhost/codeigniter

型号

<?php
class Gallery_model extends CI_Model 

var $gallery_path;
var $gallery_path_url;

function Gallery_model() 
    parent::__construct();

    $this->gallery_path = realpath(APPPATH . '../images');
    $this->gallery_path_url = base_url().'images';


function do_upload() 

    $config = array(
        'allowed_types' => 'jpg|jpeg|gif|png',
        'upload_path' => $this->gallery_path,
        'max_size' => 2000
    );

    $this->load->library('upload', $config);
    $this->upload->do_upload();
    $image_data = $this->upload->data();

    $config = array(
        'source_image' => $image_data['full_path'],
        'new_image' => $this->gallery_path . '/thumbs',
        'maintain_ration' => true,
        'width' => 150,
        'height' => 100
    );

    $this->load->library('image_lib', $config);
    $this->image_lib->resize();



function get_images() 

    $files = scandir($this->gallery_path);
    $files = array_diff($files, array('.', '..', 'thumbs'));

    $images = array();

    foreach ($files as $file) 
        $images []= array (
            'url' => $this->gallery_path_url . $file,
            'thumb_url' => $this->gallery_path_url . 'thumbs/' . $file
        );
    

    return $images;



控制器

<?php
class Gallery extends CI_Controller 

function index() 

    $this->load->model('Gallery_model');

    if ($this->input->post('upload')) 
        $this->Gallery_model->do_upload();
    

    $data['images'] = $this->Gallery_model->get_images();

    $this->load->view('gallery', $data);



    

【问题讨论】:

【参考方案1】:

你用绝对网址试过了吗?

进行测试,而不是 base_url() 使用整个路径 "http://mywebsite.com/path/to/gallery"

如果它与绝对 url 一起使用,则意味着您正在使用 wearg url 路径,然后您可以修复它

【讨论】:

以上是关于codeigniter上传图片代码url错误的主要内容,如果未能解决你的问题,请参考以下文章

Codeigniter 图片上传使用 jquery 和 ajax 错误 [重复]

Codeigniter 上传图片 - 上传路径似乎无效

如何使用 Codeigniter 删除上传的文件?

CodeIgniter 中的 Ajax 上传返回“您没有选择要上传的文件”

用户如何在我的 codeigniter 注册表单上上传个人资料图片

Codeigniter 图片上传忽略允许的类型和文件大小