secure site woes

2010-12-01 Thread Rob Voyle
Hi Folks I have a secure site that works fine: https://www.appreciativeway.com/secure/bookstore.cfm When I add variables such as: https://www.appreciativeway.com/secure/bookStore.cfm?webSource=clergy The page becomes a mix of secure and non secure items. The variable is the link origin and

Re: secure site woes

2010-12-01 Thread Mahcsig
There is a file spacer.gif that is being served without the ssl at the very bottom of the age (after the footer). ~Mahcsig On Wed, Dec 1, 2010 at 10:57 AM, Rob Voyle robvo...@voyle.com wrote: Hi Folks I have a secure site that works fine:

Re: secure site woes

2010-12-01 Thread Russ Michaels
I can see at least 1 non secure item on the page img src=http://www.clergyleadership.com/images/spacer.gif view-source:http://www.clergyleadership.com/images/spacer.gif alt= border=0 height=400 width=1 / -- Russ Michaels www.cfmldeveloper.com - Supporting the CF community since 1999 FREE

Re: secure site woes

2010-12-01 Thread Bryan Stevenson
It's been a while since I had to set this up, but are you using relative or absolute paths for the images? Being in the same directory stopped mattering years ago, but using https may be the issue. So if images are being referenced like so: img src=../images/myimage.gif You MAY have issues

Re: secure site woes

2010-12-01 Thread Matthew Williams
img src=http://www.clergyleadership.com/images/spacer.gif view-source:http://www.clergyleadership.com/images/spacer.gifalt=border=0height=400width=1/ This image is loading over http. There may be more, I didn't search beyond that. Matthew Williams Geodesic GraFX www.geodesicgrafx.com/blog

Re: secure site woes

2010-12-01 Thread Russ Michaels
Hey Bryan, Actually using img src=../images/myimage.gif is fine, as this will be relative to the current url, so will use http or https using img src=https://www.appreciativeway.com/secure/images/myimage.gif; as you suggest will force all images to use the SSL even though he page is not. So

Re: secure site woes

2010-12-01 Thread Rob Voyle
Hi Guys Thanks a bunch. That image was the problem. converting it to a relative path solved the problem. Much appreciated. Rob Robert J. Voyle, Psy.D. Director, Clergy Leadership Institute For Coaching and Training in Appreciative Inquiry Author: Restoring Hope: Appreciative Strategies

Re: secure site woes

2010-12-01 Thread Bryan Stevenson
On Wed, 2010-12-01 at 19:08 +, Russ Michaels wrote: Hey Bryan, Actually using img src=../images/myimage.gif is fine, as this will be relative to the current url, so will use http or https using img src=https://www.appreciativeway.com/secure/images/myimage.gif; as you suggest will