Problem uploading picture |
hi everyone! I have a profile view in which you can change the profile picture. I'd like to create this behaviour:
- The relative pic path will be saved in the user table under the avatar column, - The actual picture will be saved on the server in assets/profiles folder So i read the tutorial, and I have some problem making the folder writable apparently (I'm on mac) PHP Code: <?php if(is_writable(base_url('assets/profiles'))){ But let's go on... This is my form: PHP Code: <div class="file btn btn-lg btn-primary"> This is my controller: PHP Code: public function do_upload() Now, I know that it's not doing what I want (yet), since I'm firstly trying to upload the picture... Later I'll think of storing the path in my table, and deleting the old profile pic, but I think I'm capable of thing it... The problem is uploading the damn picture xD UPDATE: I keep getting a message 'The upload path does not appear to be valid.' But according to my computer I have permissions... Could it be a problem related to docker or lamp server?
Try adding the forward slash to the end of the upload path.
PHP Code: // change this See if the works. If not check your upload path that it is correct. What did you Try? What did you Get? What did you Expect?
Joined CodeIgniter Community 2009. ( Skype: insitfx )
(09-11-2019, 08:14 AM)InsiteFX Wrote: Try adding the forward slash to the end of the upload path.I made it even simpler... I changed my path in './uploads/' (as in codeigniter tutorial) but nothing... Moreover i created that folder with the command 'mkdir 777 uploads'. Still not working tho... Can it be related to .htaccess file?
Could be but I use an assets folder under my public_html and have no problems
accessing it. What did you Try? What did you Get? What did you Expect?
Joined CodeIgniter Community 2009. ( Skype: insitfx )
(09-11-2019, 03:21 AM)mandiatutti Wrote: is_writable check if a local file or a directory is writable but you pass an URL! Don't use base_url, pass the path to the local directory.
(09-12-2019, 12:58 PM)includebeer Wrote:Right, i changed it... now is 'is_wirtable('./directory')' and it says "writable" but is still not uploading the picture.(09-11-2019, 03:21 AM)mandiatutti Wrote:
https://codeigniter.com/user_guide/libra...ading.html
from the example can you post the error ? if ( ! $this->upload->do_upload('userfile')) { $error = array('error' => $this->upload->display_errors()); $this->load->view('upload_form', $error); } can you post here the errors ? and also i guess the form will be closed right ?
(09-16-2019, 05:53 AM)mboufos Wrote: https://codeigniter.com/user_guide/libra...ading.htmlI updated my controller code in my question. I solved the error about the path (it said that the path didn't exist... look at controller to see how i solved it). Although, now i'm getting another error: The upload destination folder does not appear to be writable. Now, I'm running a docker container called lamp. From the container exec i created the folder in which i'd like to upload the pictures with this syntax: mkdir 777 folder_name. I assigned the permission also to my user account, but it appears is not writable...
I offten up load img at imgur
Hướng dẫn up load https://www.aothuncasau.net/up-anh/
|
Welcome Guest, Not a member yet? Register Sign In |