I have some images in
drupal/sites/default/files/images/
How can get the absolute path for an image like abc.jpg placed in this directory.
|
I have some images in
How can get the absolute path for an image like abc.jpg placed in this directory.
| |||
|
feedback
|
|
If Drupal is on its own domain (i.e., If Drupal is in a subfolder (e.g. As I explained in my answer on the same question you deleted, if you are trying to programmatically generate the path (that is, you do not know where the file directory is), you need to use
So if the files are in:
Assuming your previous question is still the use-case, you should be using Using the expected output you provided before, a solution would be:
So, assuming your site is at
But if your site was in a subfolder (e.g.
| ||||
|
feedback
|
|
Just use
In that case you will have a path like "http://www.mywebsite.com/sites/default/files/images/image.jpeg" $uri is an internal path, like "public://images/image.jpeg" This is Drupal 7, enjoy it, love it | |||
|
feedback
|
|
I tried mark's solution and found out that my directory is "/sites/default/files/images/a.jpg" But when i write this into my nodes as img src, it didn't show related images. Besides when i wrote "../sites/default/files/images/a.jpg" It worked :) Because in first case, Drupal tried to find the file in "content/sites/default/files/images/a.jpg" | |||
|
feedback
|