Steve,

You have to make a change to one of the xml files in the cfmx server in
order to get that code to work

its below

C:\CFusionMX\wwwroot\WEB-INF\web.xml

or whatever path

under

 <servlet-mapping>
  <servlet-name>CfmServlet</servlet-name>
  <url-pattern>*.cfm</url-pattern>
  </servlet-mapping>

add

 <servlet-mapping>
  <servlet-name>CfmServlet</servlet-name>
  <url-pattern>*</url-pattern>
  </servlet-mapping>

so it looks like

 <servlet-mapping>
  <servlet-name>CfmServlet</servlet-name>
  <url-pattern>*.cfm</url-pattern>
  </servlet-mapping>
<servlet-mapping>
  <servlet-name>CfmServlet</servlet-name>
  <url-pattern>*</url-pattern>
  </servlet-mapping>

save and restart the cf services

and all should work

Alex


-----Original Message-----
From: Steve Penfold [mailto:[EMAIL PROTECTED]
Sent: 28 March 2003 13:55
To: [EMAIL PROTECTED]
Subject: [ cf-dev ] Search Engine friendly URLs with Fusebox and MX


Hi,

Apologies if this issue has been discussed recently.
We are having issues running the Fusebox FormURL2AttributesSearch tag in
CFMX.

The same code runs fine with CF4.5 - the error we are receiving is -
'The page you are looking for is currently unavailable.'.

We not appear to receiving a 404 error - it just seems that MX does not
want to parse these types of URLs

An example URL is: www.myserver.com/index.cfm/fuseaction/news.htm

Any help appreciated!

Regards,

Steve Penfold, Development Director

t: +44(0)1273 718019
m: +44(0)7961 398352
f: +44(0)870 1326174
w: www.timeminder.co.uk
Wayland House, 61, Western Road, Hove, BN3 1JD

TIMEminder - financial project management software developed exclusively
for Architects.
Instead of trying to manage your time, let TIMEminder make time for you
to manage.



--
** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/

To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
For human help, e-mail: [EMAIL PROTECTED]





-- 
** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/

To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
For human help, e-mail: [EMAIL PROTECTED]

Reply via email to