Problem with move() and file exists (SOLVED) |
English:
(sorry for my bad english) Hello, I have a problem with the file exists function, after a file move(). This one tells me each time the file does not exist Cannot then resize an uploaded image, however the image is well saved in the local directory, so the file exists function should output "true" Does somebody have an idea ? Thanks in advance French : Bonjour, J'ai un probleme avec la fonction file exists , après un move() de fichiers. Celle ci m'indique a chaque fois que le fichier n'existe pas Impossible ensuite de redimensionner une image uploadé , pourtant l'image est bien enregistrée dans le repertoire local, la fonction file exists devrait sortir "true" Quelqu'un a t-il une idée ? Merce d'avance PHP Code: private function manageFiles($files, $id, $thumb = false) { PHP Code: // just before the if statement. See if your getting the correct path. What did you Try? What did you Get? What did you Expect?
Joined CodeIgniter Community 2009. ( Skype: insitfx )
Thank you for your reply.
For the following source code: PHP Code: private function manageFiles($files, $id, $thumb = false) It give me the correct image path, this path points to an image, the browser finds it when I try to search for it with. As the following screenshot shows: ![]() In this topic, we can read the following: file exists doesn't work with http address https://stackoverflow.com/questions/6930...does-exist
CodeIgniter 4 User Guide - Uploaded Files
What did you Try? What did you Get? What did you Expect?
Joined CodeIgniter Community 2009. ( Skype: insitfx )
Hi,
I found the problem: this is to use $ _SERVER['DOCUMENT_ROOT'] instead of base_url(), because the function does not accept HTTP requests and neither does the resize function. Solved ! (11-20-2020, 02:28 PM)neoneeco Wrote: Hi, Isn't it a better idea to use the core constants provided in CI4? > https://codeigniter.com/user_guide/gener...-constants |
Welcome Guest, Not a member yet? Register Sign In |