• its uploading the file url not correct it gives me

    /uploads/2020/09imgname.jpg

    But need to be

    /uploads/2020/09/imgname.jpg

    doesnt find my image how can i change this to /uploads/2020/09/imgname.jpg

    Hope u can help me.

Viewing 2 replies - 1 through 2 (of 2 total)
  • In the plugin file ImageUploader.php look for a section of code that is:

    $image['path'] = $image['base_path'] . DIRECTORY_SEPARATOR . $c . '_' . $image['filename'];
                $image['url'] = $image['base_url'] . '/' . $c . '_' . $image['filename'];
                $c++;

    You might need to add .'/'. right before the part $image['filename']

    Plugin Contributor iranimij

    (@iranimij)

    Could you please explain more about your problem ? what’s your address value in settings page ?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘file url not correct’ is closed to new replies.