deanlaw / cfcgenerator

Automatically exported from code.google.com/p/cfcgenerator
8 stars 6 forks source link

Does not work in CF10 #71

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Try and run in ColdFusion 10

It throws and error and does not allow a login to the CF admin. I am using the 
latest version of the product from Ria Forge. The OS is windows 2008 R2 and IIS 
7 

Original issue reported on code.google.com by murph...@gmail.com on 20 Nov 2012 at 7:33

GoogleCodeExporter commented 9 years ago
FYI: I had no problems running this on my Windows 7, IIS 7, ColdFusion 10 local 
development server, so the problem is most likely in your CF or IIS 
configuration, not Illudium.

Original comment by t...@junamaya.com on 20 Feb 2013 at 7:37

GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
Also no luck running it with CF 10, MAMP, on OSX 10.8.2. Tried everything 
including checking the services-config.xml and enabling Flash remoting.

Works on my other Mac with CF 9, MAMP, and OSX 10.7.5.

Original comment by jennifer...@gmail.com on 7 Mar 2013 at 4:27

GoogleCodeExporter commented 9 years ago
Got it working in CF10, MAMP, OSX 10.8.2 by following these instructions: 

http://rob.brooks-bilson.com/index.cfm/2012/5/7/Fixing-404-Errors-When-Trying-to
-Implement-REST-in-ColdFusion-10-with-Apache

Basically, add

 JkMountFile "/Applications/ColdFusion10/config/wsconfig/1/uriworkermap.properties"

to each virtual host you set up:

<VirtualHost *:80>
    DocumentRoot "/Volumes/Macintosh HD 2/Sites/cfcgenerator"
    ServerName local.cfcgenerator.com
    JkMountFile "/Applications/ColdFusion10/config/wsconfig/1/uriworkermap.properties"
</VirtualHost>

Original comment by jennifer...@gmail.com on 8 Mar 2013 at 2:10

GoogleCodeExporter commented 9 years ago
BTW, the above the instructions at 
http://rob.brooks-bilson.com/index.cfm/2012/5/7/Fixing-404-Errors-When-Trying-to
-Implement-REST-in-ColdFusion-10-with-Apache are for Windows Apache set ups.

Original comment by jennifer...@gmail.com on 8 Mar 2013 at 2:12