> Ok, this is annoying. 
> 
> I'm testing my store app within another site, on a shared 
> server, using a shared SSL.
> The root is luckydogvolleyball. The subfolder is Store - 
> luckydogvolleyball/Store 
> 
> The domain for the SSL is:  
> https://www1024.ssldomain.com/luckydogvolleyball
> 
> The site works fine when you use the regular url: 
> www.luckydogvolleyball.com/store
> 
> But try the SSL url and my error templates can't be found. 
> I'm using root relative links for these:
> <cferror template="/Store/ErrorException.cfm" type="exception"> 
> <cferror template="/Store/ErrorRequest.cfm" type="request">
> 
>  Error attempting to resolve the template "/Store/ErrorException.cfm".
> 
> What am I doin wrong here?

When you use /store, you're instructing the web server to retrieve a
document from http://www1024.ssldomain.com/store, because luckydogvolleyball
is a directory below the webroot in this case.  I assume you want
/luckydogvolleyball/store/ instead.  Use a relative link to the error
templates or create some sort of variable that will always hold the correct
path to the root of the site.

Andy



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:257626
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to