codeigniter

Using DX Auth for Codeigniter

Has anyone used DX Auth for Codeigniter bundeled examples? After following Installing DX Auth library with bundled examples on http://dexcell.shinsengumiteam.com/dx_auth/installation/index.html I added a route $route['auth'] = "auth"; in config/routes.php, uploaded /controllers/auth.php, added $autoload['libraries'] = array('database'...

Uploading an image in codeigniter

I am trying to upload an image,create thumbnail but i get an error. Here is my controller. <?php class Upload extends Controller { function Upload() { parent::Controller(); $this->load->helper(array('form','url','file')); } function index() { $this->load->view('upload_form'); //Upload Fo...