Just downloaded the plugin and when uploading videos it was confirming it was uploading and not adding to database. Had a little debug and it appears on line 832 in fixedly.php the insert statement is missing an order_id insert. Fixed by changing to:
$wpdb->insert(FIXEDLY_MEDIA_DB_TABLE,
array(“title” => $title_santzd,
“link” => $link_santzd,
“description” => $description_santzd,
“screenshot” => $screenshot_santzd,
“type” => $type_santzd,
“status” => “visible”,
“timestamp” => current_time(“mysql”),
“gallery_id” => $gallery_id_santzd,
“order_id” => 0));
}
Just thought I would let you know as the order column did not have a default value so the data would not insert.