Pokud soubor nebyl nahrán, pole $_FILES bude prázdné. Konkrétně, pokud soubor image
nebyl nahrán, $_FILES['image']
nebude nastaveno.
Takže
$file = $_FILES['image']['tmp_name']; //Error comes from here(here is the prob!)
by mělo být:
if(empty($_FILES) || !isset($_FILES['image']))
aktualizovat
Problémy budete mít také proto, že vám chybí enctype
atribut na vašem formuláři:
<form class="form-horizontal" action="Ressave.php" method="POST" autocomplete="on" enctype="multipart/form-data">