Welcome Guest, Not a member yet? Register   Sign In
Problem uploading picture
#1

(This post was last modified: 09-16-2019, 06:06 AM by mandiatutti.)

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'))){
    echo 'writable';
}
else { 
echo  (base_url('assets/profiles'). ' ' ."is not writable");} ?>
 This code is always returning me that is not writable, but on terminal i have these permissions on the folder: drwxrwxrwx, which I obtained with chmod 777 profiles/

But let's go on... This is my form: 
PHP Code:
<div class="file btn btn-lg btn-primary">
                            Change photo
                            
<?php echo form_open_multipart('pages/do_upload');?>
                                <input type="file" name="avatar"/>
                                <input type="submit" value="upload"/>
                            </div> 

This is my controller: 
PHP Code:
public function do_upload()
        {       
                $image_path 
= realpath(APPPATH . '.uploaded');
                $config['upload_path']          = $image_path;
                $config['allowed_types']        = 'gif|jpg|jpeg|png';
                $config['max_size']             = 10000000000;
                $config['max_width']            = 1920;
                $config['max_height']           = 1080;

                $this->load->library('upload', $config);
                $this->upload->initialize($config);

                if ( ! $this->upload->do_upload('userfile'))
                {
                        $error = array('error' => $this->upload->display_errors());

                        $this->load->view('user/profile/profile', $error);
                }
                else
                
{
                        $data = array('upload_data' => $this->upload->data());

                        $this->load->view('upload_success', $data);
                }
        

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? 
Reply
#2

Try adding the forward slash to the end of the upload path.

PHP Code:
// change this
$config['upload_path'] = './assets/images/profiles';

// to this
$config['upload_path'] = './assets/images/profiles/'

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 )
Reply
#3

(This post was last modified: 09-11-2019, 11:00 AM by mandiatutti.)

(09-11-2019, 08:14 AM)InsiteFX Wrote: Try adding the forward slash to the end of the upload path.

PHP Code:
// change this
$config['upload_path'] = './assets/images/profiles';

// to this
$config['upload_path'] = './assets/images/profiles/'

See if the works.

If not check your upload path that it is correct.
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?
Reply
#4

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 )
Reply
#5

(09-11-2019, 03:21 AM)mandiatutti Wrote:
PHP Code:
<?php if(is_writable(base_url('assets/profiles'))){
    echo 'writable';
}
else { 
echo  (base_url('assets/profiles'). ' ' ."is not writable");} ?>
 This code is always returning me that is not writable, but on terminal i have these permissions on the folder: drwxrwxrwx, which I obtained with chmod 777 profiles/

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.
CodeIgniter 4 tutorials (EN/FR) - https://includebeer.com
/*** NO support in private message - Use the forum! ***/
Reply
#6

(09-12-2019, 12:58 PM)includebeer Wrote:
(09-11-2019, 03:21 AM)mandiatutti Wrote:
PHP Code:
<?php if(is_writable(base_url('assets/profiles'))){
    echo 'writable';
}
else { 
echo  (base_url('assets/profiles'). ' ' ."is not writable");} ?>
 This code is always returning me that is not writable, but on terminal i have these permissions on the folder: drwxrwxrwx, which I obtained with chmod 777 profiles/

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.
Right, i changed it... now is 'is_wirtable('./directory')' and it says "writable" but is still not uploading the picture.
Reply
#7

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 ?
Reply
#8

(This post was last modified: 09-16-2019, 06:13 AM by mandiatutti.)

(09-16-2019, 05:53 AM)mboufos 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 ?
I 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... 
Reply
#9

I offten up load img at imgur
Hướng dẫn up load https://www.aothuncasau.net/up-anh/
Reply




Theme © iAndrew 2016 - Forum software by © MyBB