I created a website and inserted:
- .JS files in Scripts folder
- .CSS in Stylesheets folder.
and created new folder for images called "imgs"
so I access it like that "../imgs/name.jpg" from the HTML
Now that website is published and I want to insert a new page, so
- created the template
- inserted the JS files in Scripts folder
- and CSS in Stylesheets folder.
The problem is:
How can I insert the images in to the "imgs" folder that I created.
Note: I want to do that from the back-end "http://mysite.com/umbraco/umbraco.aspx#settings"
The images you upload using Umbraco are going to be placed in the "media" folder and you will need to use either XSLT or Razor to fetch the images using an extension/helper to render it.
If the images are used for building your design then you can simply just place them in what folder you fancy.
Access Images from the Back-End
Hi,
I created a website and inserted: - .JS files in Scripts folder - .CSS in Stylesheets folder. and created new folder for images called "imgs" so I access it like that "../imgs/name.jpg" from the HTML
Now that website is published and I want to insert a new page, so - created the template - inserted the JS files in Scripts folder - and CSS in Stylesheets folder.
The problem is: How can I insert the images in to the "imgs" folder that I created.
Note: I want to do that from the back-end "http://mysite.com/umbraco/umbraco.aspx#settings"
Hi Tenno
The images you upload using Umbraco are going to be placed in the "media" folder and you will need to use either XSLT or Razor to fetch the images using an extension/helper to render it.
If the images are used for building your design then you can simply just place them in what folder you fancy.
Hope this helps.
/Jan
Hi Jan,
Thanks for your reply,
I did that, I Created a folder for images "/imgs" which is used in design building, and I want to access it somehow from the back end.
The website is published and I don't have the permissions or required software to access that folder on the server.
Thanks!
Hi Tenno,
Try to add permissions like here: http://our.umbraco.org/wiki/reference/files-and-folders/permissions
is working on a reply...