skip to Main Content

I have to upload images through Magento admin/dashboard.
And use those images in a menu. I want to know the directory in which product images are uploaded and the path to that directory.
Or if there is any standard way to upload images and media to Magento for general use like logos and GUI elements etc.
note: I do not have ftp logins of the site.

2

Answers


  1. Magento product images are uploaded in media folder at the magento root. In that folder there will be product folder and subfolder according to the image name. You can get that path using:

    Mage::getBaseUrl('media')
    

    Also, you can use config fields in the admin section by using this link link

    Thanks

    Login or Signup to reply.
  2. I was able to upload images to media storage root by going to insert image option in create new page you can reach there from Editor while editing pages or static blocks etc.

    enter image description here

    Following the above steps media storage is opened where we can upload media in root or new or old sub folders.

    And then I used absolute paths to access the images like this https://<&lt;.examplesite.com>>/media/wysiwyg/bird.jpg

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search