On 07/10/2007, BazD <[EMAIL PROTECTED]> wrote: > > > OK, Ive made a little bit of progress on this one. > > I set the permissions on both the .dll and .ini files and the filter > has now successfully loaded into the virtual directory within IIS. > This now shows a green arrow pointing upwards next to the entry. > > Ive also got the iirlog.out file appearing within the c:\temp folder. > > Ive rebuilt the sites friendly URLs, but now when I go to view the > site, Im getting this error:- > > Could not find the included template 404.cfm. > Note: If you wish to use an absolute template path (for example, > template="/mypath/index.cfm") with CFINCLUDE, you must create a > mapping for the path using the ColdFusion Administrator. Or, you can > use per-application settings to specify mappings specific to this > application by specifying a mappings struct to THIS.mappings in > Application.cfc. > Using relative paths (for example, template="index.cfm" or > template="../index.cfm") does not require the creation of any special > mappings. It is therefore recommended that you use relative paths with > CFINCLUDE whenever possible. > > The error occurred in C:\Farcry\mcookson\www\go.cfm: line 41 > > 39 : </cfif> > 40 : <cfelse> > 41 : <cfinclude template="404.cfm"> > 42 : </cfif> > 43 : </cfif>
Thats pretty simple to resolve... You just need to make a template called 404.cfm that lives in the root level of your site eg. in the www folder. One ray of light... What this does mean is that you are now getting directed through via the rewrite rule to the go.cfm file. go.cfm is the bit that works out what the real page is that you need to load from the friendly url. Regards Stephen --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
