Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

ColdFusion Installation issue

Explorer ,
Feb 15, 2009 Feb 15, 2009
Hey guys,

i need help on configuring IIS to allow CFML to run as expected. I wont pretend to know what I am doing, because i have little to no networking training. I am just a programmer. I convinced the my employer to invest in a ColdFusion license but as it turns out configuration take a little more attention then a normal developer edition. At this point I have installed on a new server installation, IIS, Java, and ColdFusion 8 standard edition. DNS is installed but no zones are configured. No domain points to this ip, and no forward lookup zones but at this point i only want the default localhost to run.
the IIS defaultWebsite.

i keep getting the following error

%1 is not a valid Win32 application.


Your help is appreciated!
1.0K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Explorer , Feb 15, 2009 Feb 15, 2009
quote:

Originally posted by: Chemical_One
Hey guys,

i need help on configuring IIS to allow CFML to run as expected. I wont pretend to know what I am doing, because i have little to no networking training. I am just a programmer. I convinced the my employer to invest in a ColdFusion license but as it turns out configuration take a little more attention then a normal developer edition. At this point I have installed on a new server installation, IIS, Java, and ColdFusion 8 standard edition.
...
Translate
Explorer ,
Feb 15, 2009 Feb 15, 2009
LATEST
quote:

Originally posted by: Chemical_One
Hey guys,

i need help on configuring IIS to allow CFML to run as expected. I wont pretend to know what I am doing, because i have little to no networking training. I am just a programmer. I convinced the my employer to invest in a ColdFusion license but as it turns out configuration take a little more attention then a normal developer edition. At this point I have installed on a new server installation, IIS, Java, and ColdFusion 8 standard edition. DNS is installed but no zones are configured. No domain points to this ip, and no forward lookup zones but at this point i only want the default localhost to run.
the IIS defaultWebsite.

i keep getting the following error

%1 is not a valid Win32 application.


Your help is appreciated!



I have moved on i have resolved the issue using x64 based os you need to do the following:

ColdFusion 8 is a 32 bit application and by default won’t run on IIS6 on Windows Server 2003 x64. You’ll get a “%1 is not a valid Win32 application” if you try.

To get IIS6 to run 32 bit applications (including classic ASP) you need open a dos prompt and type:

1
cd %systemdrive%\Inetpub\AdminScripts
2
cscript.exe adsutil.vbs set W3SVC/AppPools/Enable32BitAppOnWin64 True
3
IISreset.exe /restart

Try to view a static html page, if you get a “Service Unavailable” error (like I did), then the quickest way to solve it is to remove IIS (from the control panel), reboot and reinstall IIS. WARNING: you will need the windows install files to do this!

Enjoy

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources