Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8495601
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T23:37:04+00:00 2026-06-10T23:37:04+00:00

I’m trying to set a site up so I can upload images using a

  • 0

I’m trying to set a site up so I can upload images using a web form in Code Igniter(CI). I’m not getting any errors but the file is not being saved either. I wanted to know if those that were successful in uploading images could help explain what might be the issue?

View:
<?php
    echo form_open_multipart('admin/galleryUpload') . "\n";
    echo "<div class='span-8'><span class='text'>Image:</span>" . form_upload('uploadImg') . "</div>";
    foreach ($gallery as $picture)
    {
        $order[] = $picture->order;
    }
    $order[] = count($order) + 1;
    echo "<div class='span-6 last'><span>Image Order #:</span>" . form_dropdown('order', $order) . "</div><div class='span-14'>&nbsp;</div>";
    $conf = array('name' => 'alt_text', 'size' => '75');
    echo "<div class='span-14 last'><span>Discription:</span>" . form_input($conf) . "<br /></div>";
    echo form_hidden('propertyID', "$propertyID");
    echo form_submit('upload', 'Upload');
    echo form_close();
?>

Controller:
class Admin extends Controller
{
    function galleryUpload()
    {
        if (! $this->session->userdata('is_admin'))
        {
            redirect('admin/index');
        }
        else
        {
            $this->load->model('admin_model');
            $this->admin_model->imgUpload();
        }
    }
}

Model:
class Admin_model extends Model
{
    function imgUpload()
    {
        $id = $this->input->post('propertyID');
        $order = $this->input->post('order');
        $alt_text = $this->input->post('alt_text');

        $config = array(
                'allowed_types' => 'jpg|jpeg|gif|png',
                //'upload_path' => '../' . $this->imgPath($id),
                'upload_path' => '../img/galleries/temp/',
                'max_size' => '5000', // 5MB files max
                );

        $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->imgPath($id) . '/thumbs',
                'maintain_ratio' => TRUE,
                'width' => '60'
                );
        $this->load->library('image_lib', $config);
        $this->image_lib->resize();
    }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T23:37:06+00:00Added an answer on June 10, 2026 at 11:37 pm

    From the user guide:

    By default the upload routine expects the file to come from a form
    field called userfile, and the form must be a multipart type

    So you either have to change the name of the form field to userfile:

    form_upload('userfile')
    

    or pass the name of your form field to do_upload:

    $this->upload->do_upload('uploadImg');
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm new to using the Perl treebuilder module for HTML parsing and can't figure
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I am using Paperclip to handle profile photo uploads in my app. They upload
I am trying to understand how to use SyndicationItem to display feed which is
Basically, what I'm trying to create is a page of div tags, each has
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I am reading a book about Javascript and jQuery and using one of the
I have this code to decode numeric html entities to the UTF8 equivalent character.
I am trying to render a haml file in a javascript response like so:

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.