Related links

Hi,
I would like to mimic the design of the user administration functionality for my application.  however, I am having problems managing the related links in the detailed navigation. The links open in a new window, and I wish them to open in the cenral area.  Also, I don't wish to have the black page tabs at the top, only th elinks.  Does anyone have a solution.
thanks in advance,
Mariana

Hi
Permanent display is within the default framework, not your Page. It can be found in PCD>Portal Users>Standard Portal Users>Default Framework Page
Thanks and regards
Kwong Tat

Similar Messages

  • Remote and testing server don't see root relative links the same

    My site works fine on my testing server (Apache, MYSQL,
    PHP). I use root relative links in a library
    file (include file) so that it will work with all pages. For the testing server these links look like this:
    /my_sites_root_folder/aaa/bbb/ccc etc.
    If I use these same links on the remote server they won't work. To get hem to work I have to change all these links to the form
    /aaa/bbb/ccc etc.
    When dreamweaver uploads files to the remote server, the site name folder  (my_sites_root_folder) doesn't go along for the ride--just the files in it. So on the remote all the site files are stored in htdocs. On my testing server, the files are stored in htdocs/my_site_root_folder.
    I think it must have something to do with the way I'm setting up the remote and testing servers, but I'm read a hundred pages of instructions without being able to figure it out. I think I'm just seeing something wrong, but I've already spent days on this. Can someone please point me in the right direction?
    I'm using DWCS5. Internet explorer 8, Windows 7.

    Thank you for your prompt response. I'm afraid I'm still totally puzzled here. It sounds like you're very knowledeable about your comments, but I would like to know more. I accept that using the local site root in links would be bad, but I'm not clear WHY. Structuring the links as I have doesn't cause any links to break. I've structured them this way because it's the only way I can find that everything works. But I still do not understand WHY I have to do it. Using different libary include files doesn't seem like a good way to go, though
    You suggest that if I use any root relative links at all, I need to use vitual hosts. I'm not finding any good coverage of what these are, and especially why they are necessary. If this is the case, does that imply that templates (which use root relative links) also will not work on the test server (at least without vitual hosts)? The conclusion I'm coming up with, given your remarks, is "Dreamweaver doesn't work with root relevant links when you're trying to test a site with a test server." Is this right?

  • Root-relative links & local testing server

    Yesterday I figured out that I'd have to use root-relative links in an included SSI file so that it would work from both templates and pages in my main directory (or other directories, for that matter), e.g., 'src=/image/picture.jpg'. However, since my site is PHP, in order to test the pages or even to use Live View, I have to make use of a "testing server". I did this without much trouble using a package called EasyPHP, which sets up a local web server as well as the PHP module, MySQL support, etc. This all works very well.
    The problem is that, in order to support several web sites, I have to use a "virtual directory" spec to direct the web server to the correct location for my site's files. In the setup for the testing server, I therefore have to specify a URL prefix such as 'http://localhost/corinthian' for this particular site. That has worked previously, but breaks when using root-relative links since the server sees the "root" as being the main "localhost" directory instead of "localhost/corinthian". So now my SSI doesn't display correctly because it's not being resolved to the correct directories.
    I don't think that this is fixable unless someone else has run into it and can think of some gimmick I could try. Anyone? Breaking out some of my code into an SSI has definitely been more of a challenge than I expected!

    I use 1&1 Internet as my hosting service. They apparently have my site set up in a virtual directory / virtual host fashion. Going to http://corinthian241.org, the root directory for root-relative links would have to be the directory pointed to by the URL. However, running phpinfo.php on the site shows the following result for $_SERVER['DOCUMENT_ROOT']: '/kunden/homepages/29/d246935068/htdocs/corinthian'.
    So I'm pretty sure that a link from a page in my site home directory using this as a prefix would definitely not work, since the first "/" implies starting in the "corinthian" subdirectory -- not the real root of the server itself. Correct?
      Doug

  • Site-relative links fail on local testing server

    Using CS4/WAMP/XP, I have a testing server set up. All works well except that when I specify site-relative links, on the testing server they go back to localhost, not localhost/Frances. They work fine on the live site, but not on my testing server.
    This prevents me from using (well, testing) 'include' files for things like menus when parts of the site are in different folders.
    I have my site setup as follows:
    Local Info
    Site name "FFG2009"
    Local root folder C:\wamp\www\Frances\
    Default images folder C:\wamp\www\Frances\images\
    HTTP Address: http://localhost/Frances/
    Testing Server
    Server model: PHP/MySQL
    Access: Local/Network
    Testing Server Folder: C:\wamp\www\Frances testing\
    URL Prefix: http://localhost/Frances/
    In my Apache config file I have a virtual directory set up like this
    Alias /Frances/ "c:/wamp/www/Frances/"
    <Directory "c:/wamp/www/Frances/">
        options all +includes
        AllowOverride all
        Order allow,deny
        Allow from 127.0.0.1
    </Directory>
    I have been advised that I could temporarily change the Apache webroot folder to my "Frances" folder, but that stops other things like PHPMyAdmin from working. Also I have other sites within my www directory and I'd rather not have to change the Apache rootweb directory every time I need to work on a different site.
    Is there a way to set up my site in CS4 so that site root links go to localhost/Frances rather than just localhost?
    Thanks
    Tone'z

    Many thanks Mark.
    I fact I spent all yesterday coming to the same solution. Finally at around 12:30am this morning it worked!
    Early in the day I found the same reference you mentioned in an on-line copy of David Power's book where he exactly described the very problem I had - and with the VH solution.
    However, I had a problem with an obscure syntax error in the virtual hosts include file. I still don't know what it was. The flag to perform a syntax check on HTTPD startup didn't discover it. The problem actually prevented the Apache service from starting at all but that little point escaped me for a long time because the WAMP system tray icon is so small I didn't spot that it was telling me "some services are running" (half yellow) instead of "all services are running" (white).
    It wasn't until I ran (in desperation!) Apache Monitor that it became obvious that Apache was tripping over this virtual host definition and failing to start.
    It also seems that if you have any virtual host directive in an include file, then it negates the localhost directive in the Apache config file. So when I define the Frances virtual host, I also need to have localhost defined in the include file.
    It was this localhost directive that was causing the problem. I found it by having Apache Monitor running so I can see the true state of the Apache service and, after pointing the config file 'include' directive to a vhosts file...
    empty the vhosts file - Apache starts - 'localhost' works, frances doesn't - makes sense.
    add the frances virtualhost definition to the vhosts file - Apache starts -  'frances' goes to the frances site, 'localhost' does too (dam')
    add the localhost virtualhost definition to the vhosts file - Apache fails to start - "IE cannot display this page"
    pull out the localhost definition - Apache starts... hmmmm... .
    find an example localhost definition from somewhere else - to all intents and purposes identical to mine - add it in - Apache starts!
    Both localhost and frances now work! Maybe there was a space where no space should be - I don't know.
    Of course I also had to add entries into windows/system32/drivers/etc/hosts to point to 127.0.0.1.
    Oh yes, virtualhosts are fussy about folder names. You cannot have spaces in a folder name.
    Thanks
    Tone'z

  • Issues with using relative links in Captivate 8

    Is anyone else having issues with using relative links in Captivate 8?  These links all used to work in the previous version of Captivate. And I could have sworn this was fixed already once in Captivate 8 but it's popping up again for us. Here is the situation... We have courses that are made up of multiple lessons which as separate Captivate files. Within those lessons are buttons to link to external documents (which live in a shared document folder), demonstrations, etc.  We use relative links because we post these to our amazon servers and we also sell them to clients where they can post them on their own web servers or in their LMS.  SO we can't put in full paths for the links or we'd have to change them constantly.  So an example is that the link for a button might be "../Document/nameofdoc.pdf"  This would be going to a user guide or something that is posted in the "Document" folder that lives at the same level as the lesson's folder. But now, all of the sudden, none of our bazillion links is working. And I've tried buttons, hyperlinks, and even the old click box. Nothing works with relative links. And I did check the permissions on every file and folder on our Amazon server to verify nothing changed there as well.   Any suggestions?

    I have the same issue with relative links using Captivate 8.  I am trying to load Captivate modules into an LMS using relative links to document files within the LMS.  The links work fine during a site page test so not an issue in the LMS, but from the Captivate module they aren't working....
    Help?

  • How to make site root-relative links work in DW and Server both?

    See details on buggy DW image link behavior, below. My question is:
    1) how to make site root-relative links work in DW and Server both? Or…
    2) how to reliably automate the change of several hundred legacy root-relative links of the form
    /images/image.jpg  to document-relative?
    That is, to
    ../images/image.jpg or
    ../../images/image.jpg or
    ../../../images/image.jpg etc…depending on where the directory is.
    The old format (/images/image.jpg ) used to work fine in my previous DW 8 configuration but appear grey in DW after “upgrading” to DW cs5.5 mac. (they look fine on the server, but it’s hard to edit image-heavy pages locally when they are all grey).
    I tried changing the files to how DW creates root relative links now:
    /public_html/images/image.jpg, which is a very easy, attractive root flow since there’s a one-to-one mapping. These look great in DW but are broken on the server!
    I looked at the “advanced” site setup, and it looked like it might be possible to nuke the /public_html/ part of my server info…but it also looked like there was the potential for doing damage changing these settings, which are automatically generated from our server connection settings, which seem to work.
    The “links relative to document/ site root” toggle…does that change how DW interprets existing links, or just change the default when you are adding a link?  I have made 80% of the file links document relative…before wondering if root-relative isn’t better?
    It sure seems less ambiguous for all those images if theres a way to make root relative work for DW design view, DW link check, and server.
    Summary of buggy behavior: (see test with images here)
    "old style" site root link
          /images/img_book/WScover120x150_NEW.jpg
          Design veiw in DW: broken (grey w/ broken icon)
          Link check in DW: "external link" (i.e., uncheckable, + file could appear orphaned)
          Browser: good
          Ease of switching: n/a (existing format)
    "new style" site root relative link
          /public_html/images/img_book/WScover120x150_NEW.jpg
          Design veiw in DW: good
          Link check in DW: good
          Browser: broken
          Ease of switching: easy
    Document relative link
          ../../images/img_book/WScover120x150_NEW.jpg
          Design veiw in DW: good
          Link check in DW: good
          Browser: good
          Ease of switching: hard (how to automate?)
    Absolute link
          http://www.oasisdesign.net/images/img_book/WScover120x150_NEW.jpg
          Design veiw in DW: broken (grey w/ broken icon)
          Link check in DW: external (i.e., uncheckable, + file could appear orphaned)
          Browser: good
          Ease of switching: n/a...not a real option
    Thanks!
    Similar discussion on "/"

    Hello again Jon!
    Thanks for jumping on this.
    All clear and understood about where publc_html is etc.
    No contemplation of nuking the actual public_html directory on the server, just the "/public_html" text string at the start of the DW-generated links.
    "/public_html" is automatically added to the front of the link in DW if I create the link with any of the GUI tools, if I have "site root relative" selected. And ""/public_html" ends up in the code, and gets uploaded that way to the server, where it (obviously) doesn't work.
    Doesn't sound like it is supposed to work this way. Also, what seems to be the usual root relative format (/images/image.jpg) shows as a broken link in the GUI and an external link in the DW link check. All this togther makes me thinkI have some obscure setting incorrect?
    The setting that caught my eye is manage sites/ site setup/ advance settings/ local info/ web url,  which is automatically set to http://www.oasisdesign.net/public_html/
    it gives an option to change it but it makes every effort to make this NOT look like something users should mess with:
    Having gone through the more careful thought process during this post, I'm ready to do the experiment of changing the remote server web URL (why is it wrong by default?)...think I'll eat dinner first so there's 45 min to avert disaster if anyone knows this to be a bad idea!
    Art
    PS--don't  have a local testing server...don't think this will solve the GUI broken link/ link shows as external problems.
    Is there an easy, automated way to change links sitewide from document to root relative?

  • How do I code relative links as function parameters within Templates?

    I am a newcomer looking for best practices for a "How Do I?" properly code relative links as function parameters within an Adobe template (DWT) which accomodates page creation at 2 different level of folders. Dreamweaver doesn't appear to handle auto-correction of relative links as function parameters as far as I can see.  It's not clear to me what the best practice I should be following.  While this is not exactly a SPRY question, I am hoping that someone using the Spry.Data.XMLDataSet had already found the best practice to use.
    My Site
    -- Multiple pages at this level    and the parameter needs to be "_includes/UnitSideNavigation.xml"
    SubFolder
    -- Other pages at this level.       and the parameter needs to be "../_includes/UnitSideNavigation.xml"
    And this is the particular code snippet within a non edtable template area I would like to work for 2 levels of pages created from the template.
    <script type="text/javascript">
    var dsItems1 = new Spry.Data.XMLDataSet("_includes/UnitSideNavigation.xml", "/links/firstlevel");
    var dslinks = new Spry.Data.NestedXMLDataSet(dsItems1, "secondlevels/secondlevel");
    </script>
    My environment is Windows/Vista using latest CS4 dreamweaver.
    Any pointers appreciated. This is learn time for me. Hope I have made myself clear. Andy

    I use serverside includes instead of DWT for exactly that reason. Not only that, if you change anything within the template you must re-upload all of the files affected by the change; only the modified include file needs to be uploaded.

  • How to remove bullets and spacing for url links in the Related Links iview?

    I tried to look for a property that I can edit the look-n-feel of the url links in the Related Link iView using "Theme Editor".
    All I need is to remove the bullets and increase some vertical spacing between the links.
    Currently, it looks like this:
    URL iView A
    URL Iview B
    I go through the whole section of Related Links properties, none of them seems to do what I want.
    Here are the list of properties in Related Link section (of Navigation Panel):
    Link Color
    Text Decoration of Link
    Hover Color
    Text Decoration of Hovered Link
    Initially, I thought "Text Decoration of Link" should be the right property I should look at. But there are a drop-down with 5 options: None, Underline, Blinking, Overline and Line-Through, which really can't achieve what I want.
    Thanks for advice.
    Kent
    Post with Diagram Illustration:
    <a href="http://sapnetweaverforum.blogspot.com/2006/11/how-to-remove-bullets-and-spacing-for.html">How to remove bullets and spacing for url links in the Related Links iview?</a>
    Message was edited by: Kent C.

    Hi, Kai.
    I checked the Related iView properties (URL Template), I don't see what layoutset it is really using. I am not sure, is that a layout set apply to the Related Link Iview?
    For the regular KM iView, I will see what Layout Set I want to apply, then I can go and change the properties (of layout coontroller, collection renderer & resource renderer)you mentioned. But for this Related Link iView, I really don't know. I guess it may be in the code itself.
    If there is a layout set for Related Link iView (or the place to apply layout set to it), can you point to me which one is that? (I did a search through the layout set names, I only find the AppQuicklinkExplorer (I used this for Dynamic Nav. Link iView before), if I can aply this layout set to Related Link iView, my problem will be solved.)
    Thanks for help.
    Kent

  • Moving a SWF containing relative Links no longer work

    Hi
    I've come to the experts.
    I created a Flash Catalyst Project that contains external URL links. I actual want them to be internal relative links.
    I've followed the process of using to Flash Builder to edit the Main.mxml file to change to a relative path.
    I hit the Project/Export Release Build...
    I open the SWF file in Flash Player from with in the 'bin-release' folder and it all works great. However when I move the swf file to another folder that actually contains what would be the same relative path to the files I want to link it no longer works.
    If I look at the content of the swf file in a third party editor/viewer app the relative path is correct.
    I'm probably missing something very fundamental but just can't 'click' to it, pun intended.
    Thanks for your assitance
    David

    Hi Bear
    Thanks for your help.
    I've referred to both the references your below. Both were useful but still the issue remains.
    When I relocate the swf file with all the associated src files it doesn't work
    As a further test I pointed the 'Project Export Release Build' from Flash Builder to the actual folder I wanted the swf file in and again it didn't work
    If however I point the 'Project Export Release Build' to //documents/Adobe Flash Builder 4/bin-release  it does work
    Any thoughts would be greatly appreciated.

  • My Relative links no longer work in Captivate 7

    My Relative links no longer work in Captivate 7. They worked in the 5.5 versions of the exact same lessons. But they do not work after saving and re-publishing in Captivate 7. What's up with that? Any suggestions?
    Just found out from Adobe it's a reported bug that is not yet resolved...
    Bug Number : 3603218

    This is typically an issue of setting the web preference in the WINDOWS preferred programs. In Win7 this is accessed from Control Panel>Default Programs>Set Program Access...>Custom. Maybe these options will give you an idea of the problem.

  • Opening a pdf file in a relative link / local

    Maybe this sounds simple.
    But I get used to AS2 code to open  a pdf file like the code below:
    getURL("pdfDocuments/pdfname.pdf","_blank")
    As I search uncle Google I'm stuck to this as equivalent to getURL in AS2.
    btn.addEventListener(MouseEvent.CLICK, btnClick);
    function btnClick(e:MouseEvent):void {
              navigateToURL( new URLRequest("pdfDocuments/pdfname.pdf"), "_blank");
    But still it did'nt work.
    Before in AS2 getURL working on mailto, pdf on a relative link and a typical url's.
    But as to AS3 navigateToURL function only works on mailto and typical url.
    Any tweaks to the code above, to get it to work? will much appreciated.
    Thanks,

    There's numerous examples if you google "call javascript from actionscript".
    Here's 1 that sums it up pretty simply, just import flash.external.ExternalInterface; then use it statically via its call() method to call javascript. Then in the javascript simply do what you want.
    http://www.hardcode.nl/archives_155/article_334-call-javascript-function-from-as3-and-vice versa.htm
    e.g. ACTIONSCRIPT:
    import flash.external.ExternalInterface;  // call javascript function passing to load relative URL "pdfs/some.pdf"ExternalInterface.call("loadPDF","pdfs/some.pdf");
    e.g. HTML
    <html><head><script type="text/javascript">// <!-- // function with the called namefunction loadPDF(pdfName){     // open a new window (or tab) to the PDF requested from AS     window.open(pdfName,"_blank"); } // --></script><body> </body></html>
    Nothing really much to it.
    Here's a reference to window.open() if you want to customize the opened window:
    http://www.w3schools.com/jsref/met_win_open.asp

  • New From Template Changes Relative Links to Local Root?

    Thank you for taking the time to read and understand my plight with Dreamweaver CS3 for Mac. I apologize for the lengthy question, but in the effort to provide detail I shall go. First the background:
    I'm updating, editing, and appending an existing site that was previously created with Dreamweaver.
    I'm new to Dreamweaver but have a pretty good understanding of things
    I created a new site on the local drive on my MacBook Pro and then downloaded the entire site via FTP (live site: domain.com)
    I then replicated the site and exact file structure using FTP to a staging server (staging.domain.com)
    There are three existing .dwt templates. I've successfully updated the template file and auto updated all other pages that were based on this template.
    But my problem comes from creating new pages FROM the template. It appears that while the .dwt template file shows relative links (../xxxx) in the code, when create a new file from the template the url of these links is replaced by the path to the file on my local drive... I want non of this (.../xxxx) is fine.
    What is happening is that a javascript drop down menu is disappearing when I create new from template. I am assuming it's because of the path changes.
    This is the ORIGINAL (good) code from the .dwt:
    <!-- Top Navigation -->
    <tr>
         <td height="31">
              <table width="718" border="0" cellpadding="0" cellspacing="0">
                   <tr>
                        <td width="24"><img src="../images/L-Header-Corner.gif" width="30" height="50" border="0"></td>
                        <td width="342" style="background-image: url(../images/Header-BG.gif);"><img src="../images/spacer.gif" alt="" width="337" height="1" border="0"> </td>
    But when I create a NEW page from the above template the code is changed to the local path: 
    <!-- Top Navigation -->
    <tr>
         <td height="31">
              <table width="718" border="0" cellpadding="0" cellspacing="0">
                   <tr>
                        <td width="24"><img src="file:///Grasshopper/Users/allan/Documents/clients/site/site staging master/images/L-Header-Corner.gif" width="30" height="50" border="0"></td>
                        <td width="342" style="background-image: url(file:///Grasshopper/Users/allan/Documents/clients/site/site staging master/images/Header-BG.gif);"><img src="file:///Grasshopper/Users/allan/Documents/clients/site/site staging master/images/spacer.gif" alt="" width="337" height="1" border="0"> </td>
    To be sure all links in the template file are changed too.
    This is the .dwt file itself
    This is a random page created from the above template.
    And this page was created by simply altering the .dwt template file linked above and then SAVING AS. You can see the relative links remained and the navigation bar looks and operates as normal.
    To provide easier visual reference I offer the following:
    This is the .dwt file when opened in dreamweaver:
    Note the black area where the javascript drop down menu is in the top navigation when the page is correct:
    But when I create a NEW page from template this is what I get in the top navigation bar:
    And then this is what it looks like when posted:
    Ultimately what I'm trying to do is:
    1) work on site files on my local drive
    2) sync the local drive with staging.domain.com so my client can proof and approve
    3) sync to the actual live site at domain.com
    I assume I could simply do this by changing the ftp info and given the site structure and all files are same and ideally all links are relative this should be accomplished easily.
    Though perhaps my problem stems from the fact my local site is buried several layers deep on my local drive Local Drive/Users/Me/Clients/Client.... etc... but I haven't checked this yet.

    Great... Thanks for your patience....
    Here are links to all questioned files on the staging server:
    This is the .dwt file itself
    This is a random page created from the above template that shows the image/navigation incorrect.
    And this page was created by simply altering the .dwt template file linked above and then SAVING AS. You can see the relative links remained and the navigation bar looks and operates as normal. (obviously the wrong thing to do.
    And this page is one that was created prior to my working on the site and was based on the subpage template and displays correctly.
    Now bear with me here as I notice this behavour too.
    In the code snipped taken directly from the DW .dwt template (linked above)
    <td width="24"><img src="../images/L-Header-Corner.gif" width="30" height="50" border="0"></td>
                        <td width="342" style="background-image: url(../images/Header-BG.gif);"><img src="../images/spacer.gif" alt="" width="337" height="1" border="0"> </td>
    you'll notice there are two images L-Header-Corner.gif and one that is Header.BG.gif.
    The difference here is that the BG gif has a style attributed to it "Background-Image) which is followed by some strange code that says (url)../
    Opening that file Background Image and it's a tiny slice of what I think is part of the entire missing gray bar:
    In a page that displays correctly the code looks like this:
    <td width="24"><img src="../images/L-Header-Corner.gif" width="30" height="50" border="0"></td>
                        <td width="342" style="background-image: url(../images/Header-BG.gif);"><img src="../images/spacer.gif" alt="" width="337" height="1" border="0"> </td>
    And in a page that is displaying incorrectly the code appears like this:
    <td width="24"><img src="../images/L-Header-Corner.gif" width="30" height="50" border="0"></td>
                        <td width="342" style="background-image: url(file:///Grasshopper/Users/allan/Documents/clients/koolfog/koolfog website staging/images/Header-BG.gif);"><img src="../images/spacer.gif" alt="" width="337" height="1" border="0"> </td>
    So you can see that the link in this case (with the URL and style) has actually been converted to a site (my hard drive) relative link when saving.
    So the pressing question stands: Why doesn't dreamweaver convert that URL link when saving a page created from a template back to the same directory?
    Also, it appears that in that .DWT all the links have the leading periods and therefore are document relative... since I didn't set this up, how do you think this happened?

  • Relative Links and Microsoft  IIS not working, why?

    I've searched high and low for the solution to this problem
    and no one seems to give a definite answer.
    I have a typical home server set up using Microsoft IIS on
    Windows 2000 as a test server for websites.
    The typical folder structure of the IIS is Inetpub >
    wwwroot > content
    Since I am working on multiple websites at a single time I
    place my websites as such Inetpub > wwwroot > websiteFolder1
    with multiple websites under wwwroot
    Now I setup the dreamweaver sites with the root directory as
    websiteFolder1 but when I go to use relative links, dreamweaver is
    looking at the wwwroot level instead and the relative links won't
    work. So incase that seems hard to understand when I have a css
    file that is in Inetpub > wwwroot > websiteFolder1 >
    library and I want to relatively link to it, dreamweaver is instead
    of seeing websiteFolder1 as the main, it is starting with wwwroot
    and that makes the file not found.
    How do I get the relative links to see the folder under
    wwwroot as the root directory instead of wwwroot?
    Thanks Much!

    You would have to set up virtual sites in your IIS
    installation. Google
    that term, and I'm sure you will find lots....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Visionology" <[email protected]> wrote in
    message
    news:ee18ce$jej$[email protected]..
    > I've searched high and low for the solution to this
    problem and no one
    > seems to
    > give a definite answer.
    >
    > I have a typical home server set up using Microsoft IIS
    on Windows 2000 as
    > a
    > test server for websites.
    >
    > The typical folder structure of the IIS is Inetpub >
    wwwroot > content
    > Since I am working on multiple websites at a single time
    I place my
    > websites
    > as such Inetpub > wwwroot > websiteFolder1 with
    multiple websites under
    > wwwroot
    >
    > Now I setup the dreamweaver sites with the root
    directory as
    > websiteFolder1
    > but when I go to use relative links, dreamweaver is
    looking at the wwwroot
    > level instead and the relative links won't work. So
    incase that seems
    > hard to
    > understand when I have a css file that is in Inetpub
    > wwwroot >
    > websiteFolder1 > library and I want to relatively
    link to it, dreamweaver
    > is
    > instead of seeing websiteFolder1 as the main, it is
    starting with wwwroot
    > and
    > that makes the file not found.
    >
    > How do I get the relative links to see the folder under
    wwwroot as the
    > root
    > directory instead of wwwroot?
    >
    > Thanks Much!
    >

  • Root Relative Linking not possible?

    I'm trying to set up my site so that the links are relative to the Site Root, but it doesn't seem to allow me to do that.  I can click on the Site Root button in Local Info, but when I click Save and then go back to it, it has reverted back to Document-relative links.  I don't have a Web URL that I can enter in, and I do need to use the root-relative linking (I can go into detail as to why, but I'll save that for now). 
    Is there something I'm missing that allows me to do that? 
    I'm using the Mac version of Dreamweaver CC.  There was no problem of this sort when I used a PC version of CS6 prior to switching computers. 

    We are unable to reproduce this issue. @bradthames or MurraySummers, can you please share a video of the issue?

  • How do I make relative link in a pdf

    How can I make a relative link in a pdf file, so that I can put the pdf file and the files on a usb memory stick and send it out to our costumers. I use Acrobat XI Pro. I can´t possibly be the only person with that problem, so please, somebody help me with a solution.

    Thank you for your answer, but I have already tried that, I did all the work with links in the pdf to jpg´s in a folder (and there are a lot of links), and put it all on a usb memory stick, gave it to one of our costumers for testing and it didn´t work, it keeps referring to our server. I had a similar project in Excell, where I had to link the text in Excell to a product related file, after that I put it on a memory stick, and that worked without any problems, but off course Excell is a whole other world. I just think that it shouldn´t be so complicated in Acrobat, so I´m hoping you have a different solution ;-)

  • Relative links within a content area

    Hi
    Have anyone created a relative link, that is an anchor that
    points to a resource in the same page or content area, that works
    with the Portal Pages?.
    Thanks

    Can't be done. This is an enhancement we're looking at in a
    future release.
    Regards,
    Jerry

Maybe you are looking for

  • Looking for Flex answers?

    Can't find what you are looking for in the forums? Need an answer to your question immediately? Get proactive and search the Flex Cookbook for an answer to your question. Cookbooks are very similar to forums, except that posts contributed to the cook

  • Column Name in BI Reports

    Hi, I have about 80 reports that are running in various dashboards. Each of those reports is an Answers request. Is there a way to find out if a particular column is being used in which report without going through each report manually? Thanks, rking

  • EOFException when deserializing object in if statement

    Hi, I'm a java newbie and I've got a program in which I've got an method to open a serialized file. I am running into problems when determining the class of the object to be deserialized. When the code is as such everything works fine:     ObjectInpu

  • Help! Problems when updating content on Connect Pro site

    Hiya, I've been updating web links in existing training packages on our connect pro site but when I got to re-publish and update the existing content, I have issues. Each time I re-publish, different things happen. I either get slide audio but no vis

  • Print options changed after loading Photoshop 7 on Vista

    I loaded Photoshop 7 on my Vista Premium machine and now I do not have all of the print size options that were listed on XP. I need these options to print photos, cards, etc. for my business. Any help would be appreciated.