Re: Enable Request Debugging Output not working

2015-04-05 Thread Mark Spence

I have added 127.0.0.1 as a ip to serve debug output to, and I have also
removed all ips to have debug info served to all ips.  Neither results in
output.

On Sun, Apr 5, 2015 at 4:59 AM, Russ Michaels r...@michaels.me.uk wrote:


 Do you have any ip restrictions set for the debug output?


 On Sun, Apr 5, 2015 at 3:49 AM, Mark Spence markpence...@gmail.com
 wrote:


 For some reason, suddenly debug output has stopped working on my
 development machine.  I'm not sure why.  I have tried turning it off and
 on, restarting the server, restarting the box.  Nothing has helped.  Google
 has failed me.  Running on windows 8.1 and IIS.




 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:360377
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Enable Request Debugging Output not working

2015-04-04 Thread Mark Spence

For some reason, suddenly debug output has stopped working on my
development machine.  I'm not sure why.  I have tried turning it off and
on, restarting the server, restarting the box.  Nothing has helped.  Google
has failed me.  Running on windows 8.1 and IIS.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:360375
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


considering two options for changing hosting

2015-03-26 Thread Mark Spence

I am currently using Newtek/Crystaltek for a client site and have a couple
of issues with them I am able to resolve.  The site has been with them for
several years.

1.  Lately the Wordpress portion of the site has become slow and I can't
figure out why.  It's not the db and it is not the plug-ins.  It's a simple
site with not many posts or widgets and it should be faster.  The CF
portion of the site is fast.

2.  They don't support http compression.  This is more a minor annoyance,
but it is something I want.

So I am looking at the Hostek Personal Plus for $7.99 CF shared hosting.
Has anyone used both hosts and can compare the two?  Will I see a
performance difference?


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:360306
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Line breaks being lost in textarea form field

2015-03-08 Thread Mark Spence

I don't know if this specifically a CF question so sorry if it is
considered OT.

I have an admin section of the site that lets the owner add and edit
items/products.  I am having an issue with the description field where the
newline/enter key input is being lost when editing an entry.

To give more detail, we have a product description saved in the db like so:

This is product description1.

This is paragraph 2.

This is paragraph 3

I am using the tag ParagraphFormat2.cfm from cflib and the output is
working fine on the product page.

However, when the owner goes to edit the item, and the description is
pulled from the db, it appears like this:

This is product description1.This is paragraph 2.This is paragraph 3

After saving the item the text now appers on the product page without any
paragraph breaks as a single paragraph.

So if the owner wants to make any edits to the item they have to reformat
the description re-adding the paragraph breaks.

I tried adding htmleditformat() with no luck.

Here is the tag:

tdtextarea name=productDescription rows=10
cols=39#htmleditformat(attributes.itemForm.productDescription)#/textarea/td

Any ideas?  I would really appreciate it.  Thank you.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:360225
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


trying to shorten long string

2015-03-06 Thread Mark Spence

I have a long product description I am trying to truncate.  I could just
truncate it, but I don't want to break off sentences.  Here is the solution
I came up with but it does not seem to have any effect.

Any ideas?

cfset variables.description = qry_productsGet.productdescription
cfif len(variables.description) gt 200
cfloop condition=i eq false
cfset variables.description =
listDeleteAt(variables.description,listLen(variables.description, .),
.)
cfif len(variables.description) lte 200
cfset i = true
/cfif
/cfloop
/cfif


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:360222
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF 404 handler non being invoked on IIS

2015-02-18 Thread Mark Spence

Miguel,

Thanks for the article.  It was a little  confusing as it seemed to
reference onMissingTemplate as the setting in administrator rather than
the function in Application.cfc.  And that is what I am trying to invoke,
the function in Apllication.cfc.  Is that no longer possible?  I seem to be
in a bit of a conundrum here.  My local dev machine is windows 8 which
requires the higher versions of IIS and CF, while the production site is
CF9.

To give a better idea of where I am at, I have this in the web.config:
httpErrors errorMode=Detailed existingResponse=PassThrough

And now I get a blank page from the 404 pages.  I assume that either CF is
not returning anything or IIS is discarding the response.

Here is what I have in the onMissingTemplate function:

cffunction name=onMissingTemplate returnType=boolean
  cfargument type=string name=targetPage required=true/
  cfheader statusCode=200 statusText=OKhello
  !---
  cfobject component=cfcs.404 name=handle_404 /

  cfset variables.temp = handle_404.handle_404(requested_template =
arguments.targetPage)
   ---
  cfreturn True /
/cffunction

This is a try based upon the article but I think it is in vain and would
only apply to a specified missing template handler page.

I'm not sure what to try at this point.  I could be off by one little
setting, or what I want to do is just not possible, which is just to have
the missing pages handled by invoking Application.cfc's onMissingTemplate
function like the live server does.  I don't want to do back to Apache
after putting to much time into this, especially since the live server is
IIS.

Thanks for any help you can offer.

On Wed, Feb 18, 2015 at 6:10 AM, Fernandez, Miguel 
miguel.fernan...@kyfb.com wrote:


 I'm not sure if this has already been mentioned but Adobe just posted a
 blog article about custom error handling with ColdFusion and IIS.  Once you
 get over how it was written they do give you three different scenarios for
 configuring your error handling.  It's nice to finally get confirmation
 from them on how it works.

 http://blogs.coldfusion.com/post.cfm/onmissingtemplate

 -Original Message-
 From: Mark Spence [mailto:markpence...@gmail.com]
 Sent: Wednesday, February 18, 2015 12:07 AM
 To: cf-talk
 Subject: Re: CF 404 handler non being invoked on IIS


 I'm trying to make do with using a custom 404 handler in IIS but the
 requested template variable in CF resolves to to 404 handler rather than
 the url of the requested page.  This is getting complicated as this is only
 a work around for local development and I don't want to change to much and
 break the live site.

 Does anyone have any other pointers on how I can get this working like the
 live site?

 I can't believe that it is this problematic to get CF to be passed the 404
 error and invoke the onmissingtemplate.  What changed so drastically in iis
 8 and cf11 that something so basic is so broken?

 On Fri, Feb 13, 2015 at 4:24 PM, Matt Robertson websitema...@gmail.com
 wrote:

 
  sorry for my lack of attention on this.  If you are in fact using IIS
  Rewrite then that clouds the picture a little.  However if I can pull
  myself together and write something up you should be able to do all of
  your
  404 handling in your ... 404 handler.  I don't use IIS rewrites for
  much and instead rely on CF wherever possible.  Will try and find some
  time this long weekend (holiday here in the USA).
 
  On Thu, Feb 12, 2015 at 5:31 AM, Mark Spence markpence...@gmail.com
  wrote:
 
  
   After playing with it a bit more I added this:
   httpErrors existingResponse=PassThrough/
  
   Now I just get a blank page.
  
   Am I successfully passing it through to cf?  Hard to tell.  I was
   hoping
  to
   have made a bit of progress.
  
   On Mon, Feb 9, 2015 at 6:38 PM, Matt Robertson
   websitema...@gmail.com
   wrote:
  
   

 Mark,
   
those two threads aren't exactly a linear set of to do steps.
I'll try
   to
put that together tomorrow when I am in front of a desktop.
   
   
   
 --
 --m@Robertson--
 Janitor, The Robertson Team
 mysecretbase.com

   
   
--
--m@Robertson--
Janitor, The Robertson Team
mysecretbase.com
   
   
   
  
  
 
 



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:360133
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF 404 handler non being invoked on IIS

2015-02-18 Thread Mark Spence

Sorry for the misunderstanding, but he 404 is for pages the are ses product
pages.  So I need the content to be returned to the user.  An example would
be thus:

http://www.mysite.com/productpages/category/product-103/index.cfm

I am pulling productpages to see that it is a product page and 103 to
get the product id.  All I need is for CF to catch the 404 error, invoke
the onmissingtemplate in Application.cfc, and everything works.  This is
what is happening on the live site with IIS and CF9.

The problem with using IIS's custom error page for 404 is that the
requested template variable is the 404 page itself, which doesn't work with
my code.  I am hoping that there is something I can configure in CF and IIS
rather than rewriting everything just for the development server.

The code I posted in my last response was just to show that it seems that
Application.cfc is not being invoked, the response is being discarded, or
something else is going on.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:360135
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF 404 handler non being invoked on IIS

2015-02-18 Thread Mark Spence

GOT IT!

It was a setting under IIS:

Under Handler Mappings, double-click on the handler for .cfm. Then
click the Request Restrictions... button. It should open to the
mappings tab. The Invoke handler only if request is mapped to: checkbox
should NOT be checked.

On Wed, Feb 18, 2015 at 2:12 PM, Mark Spence markpence...@gmail.com wrote:

 Sorry for the misunderstanding, but he 404 is for pages the are ses
 product pages.  So I need the content to be returned to the user.  An
 example would be thus:

 http://www.mysite.com/productpages/category/product-103/index.cfm

 I am pulling productpages to see that it is a product page and 103 to
 get the product id.  All I need is for CF to catch the 404 error, invoke
 the onmissingtemplate in Application.cfc, and everything works.  This is
 what is happening on the live site with IIS and CF9.

 The problem with using IIS's custom error page for 404 is that the
 requested template variable is the 404 page itself, which doesn't work with
 my code.  I am hoping that there is something I can configure in CF and IIS
 rather than rewriting everything just for the development server.

 The code I posted in my last response was just to show that it seems that
 Application.cfc is not being invoked, the response is being discarded, or
 something else is going on.



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:360136
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF 404 handler non being invoked on IIS

2015-02-17 Thread Mark Spence

I'm trying to make do with using a custom 404 handler in IIS but the
requested template variable in CF resolves to to 404 handler rather than
the url of the requested page.  This is getting complicated as this is only
a work around for local development and I don't want to change to much and
break the live site.

Does anyone have any other pointers on how I can get this working like the
live site?

I can't believe that it is this problematic to get CF to be passed the 404
error and invoke the onmissingtemplate.  What changed so drastically in iis
8 and cf11 that something so basic is so broken?

On Fri, Feb 13, 2015 at 4:24 PM, Matt Robertson websitema...@gmail.com
wrote:


 sorry for my lack of attention on this.  If you are in fact using IIS
 Rewrite then that clouds the picture a little.  However if I can pull
 myself together and write something up you should be able to do all of your
 404 handling in your ... 404 handler.  I don't use IIS rewrites for much
 and instead rely on CF wherever possible.  Will try and find some time this
 long weekend (holiday here in the USA).

 On Thu, Feb 12, 2015 at 5:31 AM, Mark Spence markpence...@gmail.com
 wrote:

 
  After playing with it a bit more I added this:
  httpErrors existingResponse=PassThrough/
 
  Now I just get a blank page.
 
  Am I successfully passing it through to cf?  Hard to tell.  I was hoping
 to
  have made a bit of progress.
 
  On Mon, Feb 9, 2015 at 6:38 PM, Matt Robertson websitema...@gmail.com
  wrote:
 
  
   
Mark,
  
   those two threads aren't exactly a linear set of to do steps.  I'll try
  to
   put that together tomorrow when I am in front of a desktop.
  
  
  
--
--m@Robertson--
Janitor, The Robertson Team
mysecretbase.com
   
  
  
   --
   --m@Robertson--
   Janitor, The Robertson Team
   mysecretbase.com
  
  
  
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:360130
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


coldfusion 9 developer edition with verity download

2015-02-16 Thread Mark Spence

Anyone know where I can safely download coldfusion 9?  I would like it for
development purposes as the live site uses a verity product search that I
need to work on.

Thanks.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:360122
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF 404 handler non being invoked on IIS

2015-02-12 Thread Mark Spence

After playing with it a bit more I added this:
httpErrors existingResponse=PassThrough/

Now I just get a blank page.

Am I successfully passing it through to cf?  Hard to tell.  I was hoping to
have made a bit of progress.

On Mon, Feb 9, 2015 at 6:38 PM, Matt Robertson websitema...@gmail.com
wrote:


 
  Mark,

 those two threads aren't exactly a linear set of to do steps.  I'll try to
 put that together tomorrow when I am in front of a desktop.



  --
  --m@Robertson--
  Janitor, The Robertson Team
  mysecretbase.com
 


 --
 --m@Robertson--
 Janitor, The Robertson Team
 mysecretbase.com


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:360114
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF 404 handler non being invoked on IIS

2015-02-11 Thread Mark Spence

Thank you, I would appreciate that.

On Mon, Feb 9, 2015 at 6:38 PM, Matt Robertson websitema...@gmail.com
wrote:


 
  Mark,

 those two threads aren't exactly a linear set of to do steps.  I'll try to
 put that together tomorrow when I am in front of a desktop.




~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:360102
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF 404 handler non being invoked on IIS

2015-02-11 Thread Mark Spence

Have you tried a very simple rule to test of that is working ok ?

The url rewrite is just pointing to serve the site from a subdirectory.  It
is working ok because the home page is being served correctly.  Thanks,

On Mon, Feb 9, 2015 at 3:09 PM, Russ Michaels r...@michaels.me.uk wrote:


 I deal with many sites that have non existent pages which use URL REWRITE
 to redirect them.
 The usual reason is that the url rewrite rules are not working, or even
 that the url rewrite module is not installed.
 Have you tried a very simple rule to test of that is working ok ?






~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:360103
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF 404 handler non being invoked on IIS

2015-02-09 Thread Mark Spence

Matt,
Thank you for the link.  I am working through the first step below:

*Step 1:*
Configure a Missing Template Handler in CF Administrator. Mine is global to
the server and kept in the ColdFusion webroot - which is separate from the
IIS web root and whose default location is c:\ColdFusion9\wwwroot. This
global template is 404handler.cfm and contains the following simple code,
which you can expand upon:

h1404/h1pPage Not Found/pcfheader
statuscode=404
statustext=Not Found

At this point, visit your web site and execute a bad ColdFusion url:
*http://[domain]/bogus.cfm*. You will see both the IIS remote error
screen/banner followed by your ColdFusion error screen. Check the header
and it is a 404. This next step will solve the dual display problem.


When I visit the bogus page, I still just get the standard detailed iis 404
page, without the cf page that I created.  I have tried it both with and
without the Enable HTTP status codes.  I can't figure out what I am doing
wrong.  This is on a windows 8 machine.  Any ideas?  Thank you for the help.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:360096
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


CF 404 handler non being invoked on IIS

2015-02-08 Thread Mark Spence

This is working on the live hosted site, but on my local install of iis and
cf it isn't.

I have ses urls like this:

http://mysitedotcom/item-section/item-name-1034/index.cfm

The directories item-section and item-name-1034 do not exist, so it
should invoke the Application.cfc onMissingTemplate function, which is set
up to serve the proper dynamic page.

However on my local setup, I am getting this iis error:

HTTP Error 404.0 - Not Found
Detailed Error Information:
 Module   IIS Web Core Notification   MapRequestHandler Handler
cfmHandler Error
Code   0x80070002
Requested URL
http://mysitedotcom:80/site_mysubsite_com/items/item-name-1034/index.cfm
Physical
Path   C:\wwwroot\site_mysite_com\item-section\item-name-1034\index.cfm Logon
Method   Anonymous Logon User   Anonymous
It's like CF is not even getting to see the missing template error before
IIS steps in.  I tried setting Application.cfc as the error page for 404
errors but no dice.  How can I make CF take priority and handle the 404
error?

Thank you.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:360088
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: problem getting coldfusion and iis running together

2015-02-08 Thread Mark Spence

Under the top level of IIS manager, under ISAPI and CGI restrictions,
there was what I thought to be the proper entry.

I went to the website in question and removed the inherited entry and added
an explicit entry for
   C:\ColdFusion11\config\wsconfig\1\isapi_redirect.dllbut it still does
not work.

Sorry to be so much trouble.  I just would like to get this to work.

On Sun, Feb 8, 2015 at 2:27 AM, Russ Michaels r...@michaels.me.uk wrote:


 You need to make sure that the handler path on your site giving the error
 is added to cgi restrictions and set to allow.


 On Sat, Feb 7, 2015 at 23:04 PM, Mark Spence markpence...@gmail.com
 wrote:


 Thank you for the reply.  I googled the error code and found this thread:

 http://forums.iis.net/t/1150673.aspx?Am+getting+the+error+0x800704ec+in+webpage+while+calling+the+perl+script

 I looked in the ISAPI and CGI restrictions and there is an entry under
 tomcat_Default Web Site with the path pointing to
C:\ColdFusion11\config\wsconfig\1\isapi_redirect.dll

 Any ideas?

 Thank you.
 Detailed Error Information:
  Module   IsapiModule Notification   ExecuteRequestHandler Handler
mod_rewrite Error Code   0x800704ec
 Requested URL   http://127.0.0.1:80/jakarta/isapi_redirect.dll Physical
 Path
C:\ColdFusion11\config\wsconfig\1\isapi_redirect.dll Logon Method
Anonymous Logon User   Anonymous




 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:360085
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: problem getting coldfusion and iis running together

2015-02-08 Thread Mark Spence

Hello, Russ.

I tried the web server configuration tool.  After doing so I got an error
about a duplicate configuration pointing me to the web config file.  I
removed the entry and it seems to work now.

I want to say I REALLY appreciate all your help.  Thank you so much.
Cheers.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:360087
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF 404 handler non being invoked on IIS

2015-02-08 Thread Mark Spence

I have added the following for a custom error page:
Execute a url on this site
/404.cfm

I still get the standard iis 404 error page.  I have restarted the server.
Is there something else I need to do?  Thanks.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:360090
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


problem getting coldfusion and iis running together

2015-02-07 Thread Mark Spence

Sorry, this is both a IIS and ColdFusion question, so I wasn't sure where
to ask.  Hopefully someone here can help me.  I am just getting started
with CF and am helping someone with a site so please bear with me.  I am
trying to get my local dev environment set up.


I had IIS and ColdFusion running ok.  I imported some rules from a
.htaccess file and it seemed to work ok, the pages from the subdirectory
were being served based upon host name.  However, once I did so, I started
getting this error when trying to access the Coldfusion Administrator
located at:

http://127.0.0.1/CFIDE/administrator/index.cfm


I got this error:
HTTP Error 404.2 - Not FoundThe page you are requesting cannot be served
because of the ISAPI and CGI Restriction list settings on the Web server.

I thought it might be because of the rules imported so I disabled them all
but no dice.  I also went to the settings for the ISAPI and CGI
Restrictions and clicked on Edit Feature Settings and clicked Allow
unspecified CGI modules and Allow unspecified ISAPI modules.

After doing so, the error changed to:
HTTP Error 500.0 - Internal Server ErrorThere is a problem with the
resource you are looking for, so it cannot be displayed.

I am not sure what else to try.

Thank you for any help.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:360081
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: problem getting coldfusion and iis running together

2015-02-07 Thread Mark Spence

Thank you for the reply.  I googled the error code and found this thread:
http://forums.iis.net/t/1150673.aspx?Am+getting+the+error+0x800704ec+in+webpage+while+calling+the+perl+script

I looked in the ISAPI and CGI restrictions and there is an entry under
tomcat_Default Web Site with the path pointing to
   C:\ColdFusion11\config\wsconfig\1\isapi_redirect.dll

Any ideas?

Thank you.
Detailed Error Information:
 Module   IsapiModule Notification   ExecuteRequestHandler Handler
   mod_rewrite Error Code   0x800704ec
Requested URL   http://127.0.0.1:80/jakarta/isapi_redirect.dll Physical Path
   C:\ColdFusion11\config\wsconfig\1\isapi_redirect.dll Logon Method
   Anonymous Logon User   Anonymous


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:360083
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm