Hi Bobby, thanks for your reply. Let mi explain a little more... ColdFusion is installed in C:\CFusionMX7 The Tutorial point to work in C:\CFusionMX7\wwwroot\cfdocs\getting_started so this is the LocalHost and LocalTestServer. Also the Tutorial instruct to create the pages in the directory my_app So my page is stored in C:\CFusionMX7\wwwroot\cfdocs\getting_started\my_app\tripdetail.cfm Now, within the directory my_app is a subdirectory images and there is stored the one I want to show in my page. So, C:\CFusionMX7\wwwroot\cfdocs\getting_started\my_app\images\last.gif exist and is there because I see it with the Windows Explorer. Following your suggestion, I tried the following lines in my page: <img src="http://localhost/my_app/images/last.gif"> <img src="/my_app/images/last.gif"> <img src="/images/last.gif"> <img src="images/last.gif"> <img src="C:\CFusionMX7\wwwroot\cfdocs\getting_started\my_app\images\last.gif"> And the only one that works is the last one... but I can not use that address because when I upload the pages to the server, I won't work. So I still in problem. The strange thing is that I was developing a system starting in the BookStore Tutorial and I converted it completely to suit my needs and I got it right with no problem, but I got stocked when I realized that my knowledge of the commands and functions of CF was almost null, so took the Studying route and arrived to the Compass Travel Tutorial that is giving me this head heck. Thank you for your patient. By the way, my native language is Spanish. Hugs. Luis Galdames
-----Mensaje original----- De: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Enviado el: Miércoles, 20 de Junio de 2007 19:19 Para: CF-Talk Asunto: RE: Why images en Tutorial does not show in my page as I learn? Just a guess but if my_app is the root, then try just /images/last.jpg ? In other words... You are pointing to: http://mysite.com/my_app/images/last.jpg and maybe it is: http://mysite.com/images/last.jpg Just a thought. ...:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -----Original Message----- From: Tom McNeer [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 20, 2007 2:34 PM To: CF-Talk Subject: Re: Why images en Tutorial does not show in my page as I learn? Since you've tried a root-relative path: On 6/20/07, Luis Octavio Galdames Hidalgo <[EMAIL PROTECTED]> wrote: > > <img src="/my_app/images/last.jpg"> ...... it just means your image is not where you're pointing. Have you checked to see that the image actually exists in the path you've specified -- in this case at (your_web_root)/my_app/images/last.jpg ? -- Thanks, Tom Tom McNeer MediumCool http://www.mediumcool.com 1735 Johnson Road NE Atlanta, GA 30306 404.589.0560 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| ColdFusion 8 beta â Build next generation applications today. Free beta download on Labs http://www.adobe.com/cfusion/entitlement/index.cfm?e=labs_adobecf8_beta Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:281786 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

