I have deleted the cache and made the cache, dwoo, compile all 755 and now i get
An Error Was Encountered
You must make the cache folder /var/www/vhosts/aircm.aero/httpdocs/fuel/application/cache/ writable.
any ideas?
I have encountered a problem with a headers already sent error, I am putting the code within the fuel module -> controllers -> enquiry.php
<?php require_once('module.php'); class Enquiries extends Module { function __construct() { p…
FIXED! The problem seems to come if you name a field in your table to options.
using $fields['options'] causes the error. Looking at the html source the name='options' value='options' cause a problem.
I renamed the field to product_options and all…
To your above reply I have no logic in the code that redirects to a 404, its happening before.
also how im calling it
http://www.website.co.uk/shop/index.php/product/2
No the page isnt connected to any controller its going from view to view.
I have a product page in the CMS with no body which uses a layout of product, in the product layout its loading the viewfiles header | product view code | footer etc
I would…
Thanks for the quick reply. I have done exactly this and visiting anything product/* still gives me a 404 error. Could it be anything else in the configs?
Sorry for the bad explanation.
OK using the code you provided did the trick, I am now able to give the user the option to either upload from their computer (locally) or use the other field ( SELECT ) to which the user can click the select button an…
Thanks that seems to work, problem is though..on after post i have
$CI =& get_instance();
$CI->load->library('image_lib');
$delete=$this->input->post('delete');
if($delete==false) {
// IF AN IMAGE IS U…