And get this error when i want save:protected function addImage($id = null, $file = null){
$imagen = Model_Imagen::find_by_id($id);
if(!isset($imagen)){
$imagen = Model_Imagen::forge();
}
$archivo = $file;
$file = File::open_file($archivo,"r");
$file_store = file_get_contents($archivo);
$mimetype = getimageSize($archivo)['mime'];
$imagen = Model_Imagen::forge(
array(
'imagen' => $file_store,
'mimetype' => $mimetype,
));
File::close_file($file);
$imagen->save();
$id_imagen = $imagen->id;
return $id_imagen;
}
Fuel\Core\Database_Exception [ 22001 ]:
COREPATH/classes/database/pdo/connection.php @ line 253
248 {
249 $error_code = 0;
250 }
251 }
252
253 throw new \Database_Exception($e->getMessage().' with query: "'.$sql.'"', $error_code, $e);
254 }
255 }
256
257 // no more attempts left, bail out
258 else
It looks like you're new here. If you want to get involved, click one of these buttons!