Thank you as usual for the reply
I've solved the special chars issue modifying the Utf8.php file in \fuel\codeigniter\core as written in the second link you included, changing the line
$str = @iconv('UTF-8', 'UTF-8//IGNORE', $str);
in
$str = !m…
Thank you for the reply Now I've installed the 1.0beta version and using the new model relationships. I've had some problem with the $foreign_keys property:
in my Products model, I've set
public $foreign_keys = array('manufacturer_id' => array…