Ask a Question related to Macromedia Contribute General Discussion, Design and Development.
-
raviguy #1
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
-
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... -
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... -
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... -
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... -
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... -
ThinkInk #2
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



Reply With Quote

