The mount directory is: /mnt/PI
I did make a subdirectory : rrdtemp
So the total directory will be /mnt/PI/rrdtemp
In shell I can read and approach or copy files from the directory mentioned above to a local dir
I try to show the pictures from this directory on a website.
I'm not able to do so.
I'm using this HTML command
Code: Select all
<img src="/mnt/PI/rrdtemp/tmonthly.png" />n
Code: Select all
<img src="../../mnt/PI/rrdtemp/tmonthly.png" />
If I move the directory manually to the local /var/www/rrtemp by shell
and change the HTML code in:
Code: Select all
<img src="/rrdtemp/tmonthly.png" />
So I can only show pictures from the directory /var/www and lower.
Not from a directory anywhere else
How can I read the pictures straight from the mount or other directory in the html code?