Link to home
Start Free TrialLog in
Avatar of Simon Cripps
Simon CrippsFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Finding the root Link

I'm having a bit of trouble geting my head arround relative links.
I use a template in dreamweaver which points to a file, within a php function" named "../../Community/NewsRss/Google_Feed.xsl" .
Now if the template is used in a file which is located in the /NewRSS folder it can read the XML file, however if it is in the root folder I get the message "The specified file ../../Community/NewsRss/Google_Feed.xsl could not be found."

I would have thought that ../../ would work where ever.
Any clues to where I am going wrong.
Avatar of Bernard Savonet
Bernard Savonet
Flag of France image

If you are using "../../Community/NewsRss/Google_Feed.xsl" from within NewsRss... you could probably in that case use "Google_Feed.xsl" directly....

Now if you are using from 2 levels above, you should use instead "./Community/NewsRss/Google_Feed.xsl"

And if this "2level above" is also the home/root dir, then "/Community/NewsRss/Google_Feed.xsl" should be the link to use
Avatar of Simon Cripps

ASKER

Part fixed, part broke.
If I use "./Community/NewsRss/Google_Feed.xsl" in the template then files in the root directory are able to read the file but not in the NewsRSS folder.
However for this to work on files in the NewsRSS folder I need to change the template to "../../Community/NewsRss/Google_Feed.xsl" .
The problem is that as this for two pages, in different folders, using the same template I have to use one or another. Do you know why "./" works in the root folder and "../../" NewsRSS folder.
- Just to be sure: is it NewsRSS or NewsRss? Unix is case sensitive, while it does not matter under Windows

- The path thing.
It depends on where you are.
-- If you are in the root folder, then 'mydir', './mydir' and '/mydir' all point to the same place.
-- If you are in /mydir folder, then 'mydir1', './mydir1', '/mydir/mydir1' and '../mydir/mydir1' all point to the same place.

When the address start with / then this is an "absolute" address and is given relative to the root
In all other cases the adress is relative to the current directory, for which the conventional shortcut is a single dot '.'
The 'father' directory of the current directory is conventionally '..'

This is why it is coherent that in root "./Community/NewsRss/Google_Feed.xsl" works fine while in directories 2 levels under, such as NewsRss you need '../../' (to go up 2 levels).
What happens when you use in both situations "/Community/NewsRss/Google_Feed.xsl" ?
All makes complete sence, but does not appear to work. if I use  "/Community/NewsRss/Google_Feed.xsl" then the error appears in the pages in both locations.
So I still need to refer to ./Community/NewsRSS/ folder in root and ../../Community/NewsRSS/ from the NewsRSS folder.
Could it be because these are being defined in PHP?
ASKER CERTIFIED SOLUTION
Avatar of Bernard Savonet
Bernard Savonet
Flag of France image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
This may also be as I am using the parameter in dreamweaver MM_XSLTransform() rss reader. as this does not affect any other of my links in the template. I now set the directory in the editable area at the top of the template so I can change it for each page
B-)) glad this is solved. Thx for the points and grade