CodeIgniter Forums
uploading images - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24)
+--- Thread: uploading images (/showthread.php?tid=65640)



uploading images - davy_yg - 07-05-2016

Hello,

I am trying to create codes to upload pictures with CI.  This is what I tried:

(Trying to follow this tutorial:  https://codeigniter.com/user_guide/libraries/file_uploading.html )


views/uploadform.php



PHP Code:
<html>
<
head>
<
title>Upload Form</title>
</
head>
<
body>

<?
php  echo $error?>

<?php  echo form_open_multipart('upload/do_upload'); ?>

<input type="file" name="userfile" size="20" />

<br /><br />

<input type="submit" value="upload" />

</form>

</body>
</html> 


controllers/cpages.php


PHP Code:
    public function uploadform() { $this->load->view('uploadform'); } 



config/routes.php


PHP Code:
$route['cpages/uploadform'] = 'cpages/uploadform'



I receiving this error messages:




404 Page Not Found
The page you requested was not found.

Any clue how to fix this error message?