Cześć,
wybaczcie, juz publikowałem zapytanie o edycję editAction() w Symfony , gdzie akcja ta miałaby edytowac m.in wgrywany na serwer obrazek do bloga. Nadal niestety nie rozumiem jak to zrobić.
/**
* Displays a form to edit an existing blog entity.
*
* @Route("/{id}/edit", name="blog_edit")
* @Method({"GET", "POST"})
*/
public function editAction(Request $request, Blog $blog)
{
$blog->setImage(
new File($this->getParameter('image_directory').'/'.$blog->getImage()));
$deleteForm = $this->createDeleteForm($blog);
$editForm = $this->createForm('AppBundle\Form\BlogType', $blog);
$editForm->handleRequest($request);
if ($editForm->isSubmitted() && $editForm->isValid()) {
$this->getDoctrine()->getManager()->flush();
return $this->redirectToRoute('blog_edit', array('id' => $blog->getId()));
}
return $this->render('blog/edit.html.twig', array(
'blog' => $blog,
'edit_form' => $editForm->createView(),
'delete_form' => $deleteForm->createView(),
));
}
cały czas mam problem ze ścieżką:
"The file "G:\xampp5.6\htdocs\future\future/web/uploads/images/G:\xampp5.6\tmp\phpB0E6.tmp" does not exist" .