Absolute image links in Contribute/Dreamweaver

Ask a Question related to Macromedia Contribute General Discussion, Design and Development.

  1. #1

    Default Absolute image links in Contribute/Dreamweaver

    Can anyone tell me how to force Contribute to make all the image links absolute
    (i.e. [url]http://www.adobe.com/images/sampleimage.jpg[/url]) in Dreamweaver.

    I want to send out html emails and I spec out absolute links in Dreamweaver
    but when I edit the html document in Contribute, the links get changed to
    relative.

    HTML emails need absolute paths. I've read that Contribute fixed this in CS3
    but I just bought Contribute the other day and my links keep switching back.

    HELP!?!?!?!

    Thanks in advance!
    Rodney

    raviguy Guest

  2. Similar Questions and Discussions

    1. Absolute Links in Contribute 4
      I have been told in this forum that Contribute 4 will allow users to create absolute links to their images and to web pages. I would recommend that...
    2. contribute killed my image map in Dreamweaver
      Posted this in DW forum too, but then thought maybe it's better here. Did a new site in DW8, has a large us map on it with 16 image map spots to...
    3. Contribute rewriting image links
      Many pages on my site have includes on them. When editing one of these includes, I need to insert images. The path to the image needs to be valid...
    4. Image links broken in Contribute 2
      Aloha-- I built a site in DW MX 2004, and have now turned over maintenance to someone using Contribute 2. When he tries to link a file, instead of...
    5. absolute links with SSL
      Is it true you can only use absolute links when working with SSL? We have an issue of previewing locally here at my office. With all the links...
  3. #2

    Default Re: Absolute image links in Contribute/Dreamweaver

    How will you send the emails? Will you use an email-client on the client-side
    or create a server-side solution?

    Server-side:
    I solved this Contribute problem by using PHP and str_replace.

    $strMessageStrip = $_POST['message'];
    $strMessageStrip2 = str_replace("../", "http://www.yourdomain.com/",
    $strMessageStrip);
    $strMessageStrip3 = str_replace("../images/",
    "http://www.yourdomain.com/images/", $strMessageStrip2);
    etc...

    Client-side:
    The only solution I can think of is creating Editable regions for the text and
    use default image positions outside the editable regions and let your client
    change the images by putting new images on the server with the same name as the
    old ones.

    ThinkInk Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139