Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Configuring CFMX 8 on my Desktop

Explorer ,
Apr 21, 2008 Apr 21, 2008
I just downloaded CFMX 8 and Installed on my desktop. I am able to browse my page as
http://127.1.0.1/pr/index.cfm, but the reference to my images which is stored in wwwroot\pr\images folder is not showing the Image. This is the path <img align="top" src="../pr/images/coming_soon.jpg"border="0">. What am I doing wrong here?
TOPICS
Getting started
334
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Apr 21, 2008 Apr 21, 2008
Using the wrong path.

This one one would be a page-relative link:

<img align="top" src="images/coming_soon.jpg"border="0">

This one would be a root-relative link:

<img align="top" src="/pr/images/coming_soon.jpg"border="0">


--
Ken Ford
Adobe Community Expert - Dreamweaver
Fordwebs, LLC
http://www.fordwebs.com


"eziokolo" <webforumsuser@macromedia.com> wrote in message
news:fuiee4$ovf$1@forums.macromedia.com...
>I just downloaded CFMX 8 and Installed on my desktop. I am able to browse
>my
> page as
> http://127.1.0.1/pr/index.cfm, but the reference to my images which is
> stored
> in wwwroot\pr\images folder is not showing the Image. This is the path
> <img
> align="top" src="../pr/images/coming_soon.jpg"border="0">. What am I doing
> wrong here?
>

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Apr 21, 2008 Apr 21, 2008
The pages or root is located in. Should these .cfm pages be here
C:\ColdFusion8\wwwroot\pr\images. or in
C:\Inetpub\wwwroot\pr\images
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Apr 21, 2008 Apr 21, 2008
LATEST
If you configured ColdFusion to use IIS then your pages would be in the
C:\Inetpub\wwwroot\pr folder and the images should be in the
C:\Inetpub\wwwroot\pr\images folder

--
Ken Ford
Adobe Community Expert - Dreamweaver
Fordwebs, LLC
http://www.fordwebs.com


"eziokolo" <webforumsuser@macromedia.com> wrote in message
news:fuip58$70c$1@forums.macromedia.com...
> The pages or root is located in. Should these .cfm pages be here
>
C:\ColdFusion8\wwwroot\pr\images.

> or in
>
C:\Inetpub\wwwroot\pr\images


Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources