Liz, If I understand you correctly, you are trying to add images using the friendly urls or you are using relative paths for the images which is getting messed up because of the friendly urls. I use FUs but don't have this problem and I think it is because I always reference the images from the web root. The friendly url for a page (i.e. http://www.mydomain.com/go/my-page) is for display purposes only. The page that is ACTUALLY getting accessed is http://www.mydomain.com/index.cfm?path=some-objectid which gets translated into /go/my-page. Adding the image paths relatively would potentially cause them to be referenced by the server as http://www.mydomain.com/go/my-page/images/my_image.jpg. This an incorrect directory path on the server so you need to prepend a '/' to force it to start at the web root. Doing that will make the path to the image show up as http://www.mydomain.com/images/my_image.jpg.
Maybe I've completely mis-understood your concern and have wasted 5 minutes of both our lives. If that is the case I apologize. Otherwise, I hope this was helpful. _____ Jake Churchill Team Leader 11204 Davenport, Ste. 100 Omaha, NE 68154 http://www.cfwebtools.com 402-408-3733 x103 -----Original Message----- From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf Of Elizabeth Sent: Wednesday, November 14, 2007 11:26 AM To: farcry-dev Subject: [farcry-dev] Page Content Files and Fus Hi Im adding friendly urls to to one of our farcry sites (version 3). Ive noticed that the image paths in the site pages are wrong. This is content previously created as html pages on the site tree in the admin not image paths in includes such as the header etc, Ive dealt with these already. Also if I now add images into content for display on pages using friendly urls these paths are also wrong. Is what should happen? Is there a setting somewhere I need to change or is there a way I can alter the path that is set when images (and other files) added into content via the html editor. Regards Liz No virus found in this incoming message. Checked by AVG Free Edition. Version: 7.5.503 / Virus Database: 269.15.31/1129 - Release Date: 11/13/2007 9:22 PM No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.5.503 / Virus Database: 269.15.31/1129 - Release Date: 11/13/2007 9:22 PM --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "farcry-dev" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/farcry-dev?hl=en -~----------~----~----~----~------~----~------~--~---
