Friday, May 10, 2024
 Popular · Latest · Hot · Upcoming
28
rated 0 times [  29] [ 1]  / answers: 1 / hits: 59718  / 12 Years ago, tue, september 4, 2012, 12:00:00

I have this site that I need to find the root folder / plus the actual folder its works out of.



My problem here is that during development i have the folder with in my local server that in turn is with in its own folder:



Then online I then have the development site within a folder, so it can all be tested before the live production etc.



LOCAL SERVER:
localhost/mytestSiteA/...



LIVE SERVER TEST FOLDER:
www.asite.com/devbuild/....



Now I can retrieve the root via the



    document.location.hostname 


But i need then to add the folder name after this so that I can load in content etc when in developement mode.



LOCAL SERVER



 document.location.hostname + '/mytestSiteA/'


LIVE TEST SITE



 document.location.hostname + '/devbuild/'


But my issue is, is there an easy way to gain this inner folder rather than setting up variables determined on whether in local dev, live dev or live mode, as can be a pain, and would be nice to gain the current inner folder dynamically rather that manually changing etc so that I can add my paths correctly.



Also would help as if I have a folder within this that also loads in js script it can obtain its full path.



LOCAL SERVER:
localhost/mytestSiteA/subsection/...



LIVE SERVER TEST FOLDER:
www.asite.com/devbuild/subsection/...



I hope I have made this as easy to understand and put across.
Si


More From » path

 Answers
52

try to switch



switch (document.location.hostname)
{
case 'asite.com':
var rootFolder = '/devbuild/'; break;
case 'localhost' :
var rootFolder = '/mytestSiteA/'; break;
default : // set whatever you want
}


and then use



var root = document.location.hostname + rootFolder;

[#83257] Sunday, September 2, 2012, 12 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
khalidkendelld

Total Points: 55
Total Questions: 99
Total Answers: 77

Location: South Korea
Member since Tue, Feb 22, 2022
2 Years ago
;