[cfaussie] Re: ColdFusion Install Broken

2008-05-08 Thread Dale Fraser

They need to fix it, people don't want to have to go through that crap.

Regards
Dale Fraser
http://learncf.com
http://flexcf.com


-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of CyberAngel
Sent: Thursday, 8 May 2008 7:37 AM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: ColdFusion Install Broken


Sounds like to me that you have a serious issue, one Coldfusion 8 as far as
I am concerned has only had problems with IIS7 (and this is my experience)
when the right components for IIS are not installed correctly to start with.

However, under SP1 for Vista one has to install it as administrator.

IIS7, actually does work out of the box when installed. The problem comes
when you need to use the IIS Metabase and IIS 6 configuration compatibility
with Coldfusion 8. You have to remember that IIS7 was not released long
before Coldfusion 8, so I doubt very much that IIS7 if fully supported
without that mode being switched on.

As for user permissions that goes without saying, that is a must but you
don't need to add users to groups that should have already been done when
IIS was installed.

I seriously think, and this is a guess that you may have had Bluedragon.Net
installed at one point? Only a guess.

You also don't state whether you are running a 32bit version of Vista or not
either, but I will assume you are running 32bit.

As for all the things you have done with the web.config. That is totally not
needed with Coldfusion 8 on Vista 32bit at all, provided you have installed
the right IIS7 components to begin with.



-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of bryn
Sent: Thursday, 8 May 2008 9:15 PM
To: cfaussie
Subject: [cfaussie] Re: ColdFusion Install Broken


As sometimes happens, I've answered my own question...

Most of the problems appear to be caused in iiS7.

- When iiS7 enabled, not creating the default (anonymous) web user
(IUSR_ and not making it a member of the group IISIUSRS.
- Same user needs to have permission to at very least Read the files
and folders in the web tree, which needs to be done manually.
- overRideMode settings in web.config seemed wrong (everything was
turned off).

CF 8 Install is not blameless however.
iiS7 has the concept of 'handlers' and a section in 'web.config'  ( >
c:\windows\system32\inetsrv\config\applicationHost.config) which is an
xml file.

















By default, it seems that when the CF8 connector function adds the
various ISAPI handlers into this file it adds a  verb at the
top of the list.
It appears to me that this has the effect of disabling the default
static file handler set up in iis7 such as the staticfile handler:

and this has the effect of disallowing proper handling of html, gif
files etc but of course cf files are handled OK.
The result is that graphical elements of (say) cf administrator are
not served up by iiS.

Remove the  statement and most things work, however as
overkill I also added explicit lines in the handlers section like
this:



.
.
.
.









There is some evidence to say this last piece is unnecessary as I find
that with removal of the  statement that directory browsing is
now working when it was not working before.  Since I spent the best
part of a day on this I chose to go no further having got the thing
working.
<^%%^%&%> to microsoft for not setting up iiS to work properly out of
the box when enabled.  Bunch of time wasters.
This was not the prime task, all I really wanted to do was get my app
working on the Vista laptop and then proceed to play/learn with Flex
on parts of it.  When I set out to do this I did not bargain on having
to learn new tricks with iiS as well, which I thought I knew well.

Someone (else) might choose to blog this after verifying it, seems it
might be useful to others...

Cheers,
Bryn Parrott





--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: ColdFusion Install Broken

2008-05-08 Thread CyberAngel

Sounds like to me that you have a serious issue, one Coldfusion 8 as far as
I am concerned has only had problems with IIS7 (and this is my experience)
when the right components for IIS are not installed correctly to start with.

However, under SP1 for Vista one has to install it as administrator.

IIS7, actually does work out of the box when installed. The problem comes
when you need to use the IIS Metabase and IIS 6 configuration compatibility
with Coldfusion 8. You have to remember that IIS7 was not released long
before Coldfusion 8, so I doubt very much that IIS7 if fully supported
without that mode being switched on.

As for user permissions that goes without saying, that is a must but you
don't need to add users to groups that should have already been done when
IIS was installed.

I seriously think, and this is a guess that you may have had Bluedragon.Net
installed at one point? Only a guess.

You also don't state whether you are running a 32bit version of Vista or not
either, but I will assume you are running 32bit.

As for all the things you have done with the web.config. That is totally not
needed with Coldfusion 8 on Vista 32bit at all, provided you have installed
the right IIS7 components to begin with.



-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of bryn
Sent: Thursday, 8 May 2008 9:15 PM
To: cfaussie
Subject: [cfaussie] Re: ColdFusion Install Broken


As sometimes happens, I've answered my own question...

Most of the problems appear to be caused in iiS7.

- When iiS7 enabled, not creating the default (anonymous) web user
(IUSR_ and not making it a member of the group IISIUSRS.
- Same user needs to have permission to at very least Read the files
and folders in the web tree, which needs to be done manually.
- overRideMode settings in web.config seemed wrong (everything was
turned off).

CF 8 Install is not blameless however.
iiS7 has the concept of 'handlers' and a section in 'web.config'  ( >
c:\windows\system32\inetsrv\config\applicationHost.config) which is an
xml file.

















By default, it seems that when the CF8 connector function adds the
various ISAPI handlers into this file it adds a  verb at the
top of the list.
It appears to me that this has the effect of disabling the default
static file handler set up in iis7 such as the staticfile handler:

and this has the effect of disallowing proper handling of html, gif
files etc but of course cf files are handled OK.
The result is that graphical elements of (say) cf administrator are
not served up by iiS.

Remove the  statement and most things work, however as
overkill I also added explicit lines in the handlers section like
this:



.
.
.
.









There is some evidence to say this last piece is unnecessary as I find
that with removal of the  statement that directory browsing is
now working when it was not working before.  Since I spent the best
part of a day on this I chose to go no further having got the thing
working.
<^%%^%&%> to microsoft for not setting up iiS to work properly out of
the box when enabled.  Bunch of time wasters.
This was not the prime task, all I really wanted to do was get my app
working on the Vista laptop and then proceed to play/learn with Flex
on parts of it.  When I set out to do this I did not bargain on having
to learn new tricks with iiS as well, which I thought I knew well.

Someone (else) might choose to blog this after verifying it, seems it
might be useful to others...

Cheers,
Bryn Parrott



--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: ColdFusion Install Broken

2008-05-08 Thread bryn

As sometimes happens, I've answered my own question...

Most of the problems appear to be caused in iiS7.

- When iiS7 enabled, not creating the default (anonymous) web user
(IUSR_ and not making it a member of the group IISIUSRS.
- Same user needs to have permission to at very least Read the files
and folders in the web tree, which needs to be done manually.
- overRideMode settings in web.config seemed wrong (everything was
turned off).

CF 8 Install is not blameless however.
iiS7 has the concept of 'handlers' and a section in 'web.config'  ( >
c:\windows\system32\inetsrv\config\applicationHost.config) which is an
xml file.

















By default, it seems that when the CF8 connector function adds the
various ISAPI handlers into this file it adds a  verb at the
top of the list.
It appears to me that this has the effect of disabling the default
static file handler set up in iis7 such as the staticfile handler:

and this has the effect of disallowing proper handling of html, gif
files etc but of course cf files are handled OK.
The result is that graphical elements of (say) cf administrator are
not served up by iiS.

Remove the  statement and most things work, however as
overkill I also added explicit lines in the handlers section like
this:



.
.
.
.









There is some evidence to say this last piece is unnecessary as I find
that with removal of the  statement that directory browsing is
now working when it was not working before.  Since I spent the best
part of a day on this I chose to go no further having got the thing
working.
<^%%^%&%> to microsoft for not setting up iiS to work properly out of
the box when enabled.  Bunch of time wasters.
This was not the prime task, all I really wanted to do was get my app
working on the Vista laptop and then proceed to play/learn with Flex
on parts of it.  When I set out to do this I did not bargain on having
to learn new tricks with iiS as well, which I thought I knew well.

Someone (else) might choose to blog this after verifying it, seems it
might be useful to others...

Cheers,
Bryn Parrott



On May 8, 8:33 am, bryn <[EMAIL PROTECTED]> wrote:
> I'm having the same problem.
>
> Vista Ultimate SP1; CF 8.0.  iiS 7 NOT enabled by default on my Sony
> Laptop and hence not working when I enabled it.
>
> Installation works better when logged in as the actual administrator
> (not merely a user in administrators group).
>
> When that is done, CF (Administrator) kind of works, but loads of
> problems getting iiS 7.0 to deliver pages properly.
> Cf Administrator is missing all the graphics...
> My application (based on cfform type=flash) not delivering the flash
> pieces or images.
>
> I'm using the trace facility (new in iiS7 ?) to tie down and eliminate
> the problems, but mostly they appear to be permissions based.
>
> iiS 7 not setting up the anonymous web user/group (iis_iusrs)
> properly.  Has to be done manually.
>
> I Hate the new iiS7 Manager UI.  Why do Microsoft have to fix things
> that ain't broke ?  The help for it is useless as usual.
>
> I have not yet googled this issue, but does anyone have a recipe for
> getting iiS 7 and CF 8 working on Vista ?
>
> Cheers,
> Bryn Parrott
>
> On May 8, 3:31 am, Andrew Scott <[EMAIL PROTECTED]> wrote:
>
>
>
> > That would be damn nice if they didJ
>
> > Andrew Scott
> > Senior Coldfusion Developer
> > Aegeon Pty. Ltd.www.aegeon.com.au
> > Phone: +613  9015 8628
> > Mobile: 0404 998 273
>
> > From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
> > Of Dale Fraser
> > Sent: Thursday, 8 May 2008 12:25 PM
> > To: cfaussie@googlegroups.com
> > Subject: [cfaussie] Re: ColdFusion Install Broken
>
> > I hope they just use JIRA like they do for Flex.
>
> > Regards
>
> > Dale Fraser
>
> >http://learncf.com<http://learncf.com/>
>
> >http://flexcf.com<http://flexcf.com/>
>
> > From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
> > Of Andrew Scott
> > Sent: Wednesday, 7 May 2008 10:00 PM
> > To: cfaussie@googlegroups.com
> > Subject: [cfaussie] Re: ColdFusion Install Broken
>
> > Yeah, know your pain there.
>
> > I believe they will have it opened up very shortly, this has got to be one
> > of the worst things they kept away from us. I hop

[cfaussie] Re: ColdFusion Install Broken

2008-05-08 Thread bryn

I'm having the same problem.

Vista Ultimate SP1; CF 8.0.  iiS 7 NOT enabled by default on my Sony
Laptop and hence not working when I enabled it.

Installation works better when logged in as the actual administrator
(not merely a user in administrators group).

When that is done, CF (Administrator) kind of works, but loads of
problems getting iiS 7.0 to deliver pages properly.
Cf Administrator is missing all the graphics...
My application (based on cfform type=flash) not delivering the flash
pieces or images.

I'm using the trace facility (new in iiS7 ?) to tie down and eliminate
the problems, but mostly they appear to be permissions based.

iiS 7 not setting up the anonymous web user/group (iis_iusrs)
properly.  Has to be done manually.

I Hate the new iiS7 Manager UI.  Why do Microsoft have to fix things
that ain't broke ?  The help for it is useless as usual.

I have not yet googled this issue, but does anyone have a recipe for
getting iiS 7 and CF 8 working on Vista ?

Cheers,
Bryn Parrott

On May 8, 3:31 am, Andrew Scott <[EMAIL PROTECTED]> wrote:
> That would be damn nice if they didJ
>
> Andrew Scott
> Senior Coldfusion Developer
> Aegeon Pty. Ltd.www.aegeon.com.au
> Phone: +613  9015 8628
> Mobile: 0404 998 273
>
> From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
> Of Dale Fraser
> Sent: Thursday, 8 May 2008 12:25 PM
> To: cfaussie@googlegroups.com
> Subject: [cfaussie] Re: ColdFusion Install Broken
>
> I hope they just use JIRA like they do for Flex.
>
> Regards
>
> Dale Fraser
>
> http://learncf.com<http://learncf.com/>
>
> http://flexcf.com<http://flexcf.com/>
>
> From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
> Of Andrew Scott
> Sent: Wednesday, 7 May 2008 10:00 PM
> To: cfaussie@googlegroups.com
> Subject: [cfaussie] Re: ColdFusion Install Broken
>
> Yeah, know your pain there.
>
> I believe they will have it opened up very shortly, this has got to be one
> of the worst things they kept away from us. I hope the viewing of tickets is
> better than the prerelease bug system that sucked.
>
> Andrew Scott
> Senior Coldfusion Developer
> Aegeon Pty. Ltd.www.aegeon.com.au
> Phone: +613  9015 8628
> Mobile: 0404 998 273
>
> From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
> Of Dale Fraser
> Sent: Thursday, 8 May 2008 11:51 AM
> To: cfaussie@googlegroups.com
> Subject: [cfaussie] Re: ColdFusion Install Broken
>
> Ok,
>
> I'll try that, I do have UAC off.
>
> I had someone not on SP1 try it and it worked.
>
> So I think it's Vista SP1 related, no references to it anywhere, if CF had a
> bug tracker DB I would be able to check if they even know about it.
>
> Regards
>
> Dale Fraser
>
> http://learncf.com<http://learncf.com/>
>
> http://flexcf.com<http://flexcf.com/>
>
> From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
> Of Andrew Scott
> Sent: Wednesday, 7 May 2008 9:17 PM
> To: cfaussie@googlegroups.com
> Subject: [cfaussie] Re: ColdFusion Install Broken
>
> Yep,
>
> Tell me about it.
>
> I asked because there are 2 known problems.
>
> I am not sure if you have UAC on/off, but you need to make sure Coldfusion
> is run as administrator when installing. I came across this problem a few
> weeks ago, if Coldfusion is not installed in this manner and I did discuss
> it in here, it will not error and will install ok but will not install the
> connectors at all.
>
> This maybe the same problem you are having.
>
> Andrew Scott
> Senior Coldfusion Developer
> Aegeon Pty. Ltd.www.aegeon.com.au
> Phone: +613  9015 8628
> Mobile: 0404 998 273
>
> From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
> Of Dale Fraser
> Sent: Thursday, 8 May 2008 9:07 AM
> To: cfaussie@googlegroups.com
> Subject: [cfaussie] Re: ColdFusion Install Broken
>
> 32bit.
>
> I'm not sure if this problem was introduced due to SP1 or 8.0.1 but install
> on Vista used to work.
>
> Regards
>
> Dale Fraser
>
> http://learncf.com<http://learncf.com/>
>
> http://flexcf.com<http://flexcf.com/>
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: ColdFusion Install Broken

2008-05-07 Thread Andrew Scott
That would be damn nice if they didJ

 

 

 

Andrew Scott
Senior Coldfusion Developer
Aegeon Pty. Ltd.
www.aegeon.com.au
Phone: +613  9015 8628
Mobile: 0404 998 273

 

 

 

From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Dale Fraser
Sent: Thursday, 8 May 2008 12:25 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: ColdFusion Install Broken

 

I hope they just use JIRA like they do for Flex.

 

Regards

Dale Fraser

http://learncf.com <http://learncf.com/> 

http://flexcf.com <http://flexcf.com/> 

 

 

From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Andrew Scott
Sent: Wednesday, 7 May 2008 10:00 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: ColdFusion Install Broken

 

Yeah, know your pain there.

 

I believe they will have it opened up very shortly, this has got to be one
of the worst things they kept away from us. I hope the viewing of tickets is
better than the prerelease bug system that sucked.

 

 

 

Andrew Scott
Senior Coldfusion Developer
Aegeon Pty. Ltd.
www.aegeon.com.au
Phone: +613  9015 8628
Mobile: 0404 998 273

 

 

 

From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Dale Fraser
Sent: Thursday, 8 May 2008 11:51 AM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: ColdFusion Install Broken

 

Ok,

 

I'll try that, I do have UAC off.

 

I had someone not on SP1 try it and it worked.

 

So I think it's Vista SP1 related, no references to it anywhere, if CF had a
bug tracker DB I would be able to check if they even know about it.

 

Regards

Dale Fraser

http://learncf.com <http://learncf.com/> 

http://flexcf.com <http://flexcf.com/> 

 

 

From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Andrew Scott
Sent: Wednesday, 7 May 2008 9:17 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: ColdFusion Install Broken

 

Yep,

 

Tell me about it.

 

I asked because there are 2 known problems.

 

I am not sure if you have UAC on/off, but you need to make sure Coldfusion
is run as administrator when installing. I came across this problem a few
weeks ago, if Coldfusion is not installed in this manner and I did discuss
it in here, it will not error and will install ok but will not install the
connectors at all.

 

This maybe the same problem you are having.

 

 

 

Andrew Scott
Senior Coldfusion Developer
Aegeon Pty. Ltd.
www.aegeon.com.au
Phone: +613  9015 8628
Mobile: 0404 998 273

 

 

 

From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Dale Fraser
Sent: Thursday, 8 May 2008 9:07 AM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: ColdFusion Install Broken

 

32bit.

 

I'm not sure if this problem was introduced due to SP1 or 8.0.1 but install
on Vista used to work.

 

Regards

Dale Fraser

http://learncf.com <http://learncf.com/> 

http://flexcf.com <http://flexcf.com/> 

 

 

 

 

 

 

 



 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: ColdFusion Install Broken

2008-05-07 Thread Dale Fraser
I hope they just use JIRA like they do for Flex.

 

Regards

Dale Fraser

 <http://learncf.com/> http://learncf.com

 <http://flexcf.com/> http://flexcf.com

 

 

From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Andrew Scott
Sent: Wednesday, 7 May 2008 10:00 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: ColdFusion Install Broken

 

Yeah, know your pain there.

 

I believe they will have it opened up very shortly, this has got to be one
of the worst things they kept away from us. I hope the viewing of tickets is
better than the prerelease bug system that sucked.

 

 

 

Andrew Scott
Senior Coldfusion Developer
Aegeon Pty. Ltd.
www.aegeon.com.au
Phone: +613  9015 8628
Mobile: 0404 998 273

 

 

 

From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Dale Fraser
Sent: Thursday, 8 May 2008 11:51 AM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: ColdFusion Install Broken

 

Ok,

 

I'll try that, I do have UAC off.

 

I had someone not on SP1 try it and it worked.

 

So I think it's Vista SP1 related, no references to it anywhere, if CF had a
bug tracker DB I would be able to check if they even know about it.

 

Regards

Dale Fraser

http://learncf.com <http://learncf.com/> 

http://flexcf.com <http://flexcf.com/> 

 

 

From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Andrew Scott
Sent: Wednesday, 7 May 2008 9:17 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: ColdFusion Install Broken

 

Yep,

 

Tell me about it.

 

I asked because there are 2 known problems.

 

I am not sure if you have UAC on/off, but you need to make sure Coldfusion
is run as administrator when installing. I came across this problem a few
weeks ago, if Coldfusion is not installed in this manner and I did discuss
it in here, it will not error and will install ok but will not install the
connectors at all.

 

This maybe the same problem you are having.

 

 

 

Andrew Scott
Senior Coldfusion Developer
Aegeon Pty. Ltd.
www.aegeon.com.au
Phone: +613  9015 8628
Mobile: 0404 998 273

 

 

 

From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Dale Fraser
Sent: Thursday, 8 May 2008 9:07 AM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: ColdFusion Install Broken

 

32bit.

 

I'm not sure if this problem was introduced due to SP1 or 8.0.1 but install
on Vista used to work.

 

Regards

Dale Fraser

http://learncf.com <http://learncf.com/> 

http://flexcf.com <http://flexcf.com/> 

 

 

 

 

 



 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: ColdFusion Install Broken

2008-05-07 Thread Andrew Scott
Yeah, know your pain there.

 

I believe they will have it opened up very shortly, this has got to be one
of the worst things they kept away from us. I hope the viewing of tickets is
better than the prerelease bug system that sucked.

 

 

 

Andrew Scott
Senior Coldfusion Developer
Aegeon Pty. Ltd.
www.aegeon.com.au
Phone: +613  9015 8628
Mobile: 0404 998 273

 

 

 

From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Dale Fraser
Sent: Thursday, 8 May 2008 11:51 AM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: ColdFusion Install Broken

 

Ok,

 

I'll try that, I do have UAC off.

 

I had someone not on SP1 try it and it worked.

 

So I think it's Vista SP1 related, no references to it anywhere, if CF had a
bug tracker DB I would be able to check if they even know about it.

 

Regards

Dale Fraser

http://learncf.com <http://learncf.com/> 

http://flexcf.com <http://flexcf.com/> 

 

 

From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Andrew Scott
Sent: Wednesday, 7 May 2008 9:17 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: ColdFusion Install Broken

 

Yep,

 

Tell me about it.

 

I asked because there are 2 known problems.

 

I am not sure if you have UAC on/off, but you need to make sure Coldfusion
is run as administrator when installing. I came across this problem a few
weeks ago, if Coldfusion is not installed in this manner and I did discuss
it in here, it will not error and will install ok but will not install the
connectors at all.

 

This maybe the same problem you are having.

 

 

 

Andrew Scott
Senior Coldfusion Developer
Aegeon Pty. Ltd.
www.aegeon.com.au
Phone: +613  9015 8628
Mobile: 0404 998 273

 

 

 

From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Dale Fraser
Sent: Thursday, 8 May 2008 9:07 AM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: ColdFusion Install Broken

 

32bit.

 

I'm not sure if this problem was introduced due to SP1 or 8.0.1 but install
on Vista used to work.

 

Regards

Dale Fraser

http://learncf.com <http://learncf.com/> 

http://flexcf.com <http://flexcf.com/> 

 

 

 



 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: ColdFusion Install Broken

2008-05-07 Thread Dale Fraser
Ok,

 

I'll try that, I do have UAC off.

 

I had someone not on SP1 try it and it worked.

 

So I think it's Vista SP1 related, no references to it anywhere, if CF had a
bug tracker DB I would be able to check if they even know about it.

 

Regards

Dale Fraser

 <http://learncf.com/> http://learncf.com

 <http://flexcf.com/> http://flexcf.com

 

 

From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Andrew Scott
Sent: Wednesday, 7 May 2008 9:17 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: ColdFusion Install Broken

 

Yep,

 

Tell me about it.

 

I asked because there are 2 known problems.

 

I am not sure if you have UAC on/off, but you need to make sure Coldfusion
is run as administrator when installing. I came across this problem a few
weeks ago, if Coldfusion is not installed in this manner and I did discuss
it in here, it will not error and will install ok but will not install the
connectors at all.

 

This maybe the same problem you are having.

 

 

 

Andrew Scott
Senior Coldfusion Developer
Aegeon Pty. Ltd.
www.aegeon.com.au
Phone: +613  9015 8628
Mobile: 0404 998 273

 

 

 

From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Dale Fraser
Sent: Thursday, 8 May 2008 9:07 AM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: ColdFusion Install Broken

 

32bit.

 

I'm not sure if this problem was introduced due to SP1 or 8.0.1 but install
on Vista used to work.

 

Regards

Dale Fraser

http://learncf.com <http://learncf.com/> 

http://flexcf.com <http://flexcf.com/> 

 



 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: ColdFusion Install Broken

2008-05-07 Thread Andrew Scott
Yep,

 

Tell me about it.

 

I asked because there are 2 known problems.

 

I am not sure if you have UAC on/off, but you need to make sure Coldfusion
is run as administrator when installing. I came across this problem a few
weeks ago, if Coldfusion is not installed in this manner and I did discuss
it in here, it will not error and will install ok but will not install the
connectors at all.

 

This maybe the same problem you are having.

 

 

 

Andrew Scott
Senior Coldfusion Developer
Aegeon Pty. Ltd.
www.aegeon.com.au
Phone: +613  9015 8628
Mobile: 0404 998 273

 

 

 

From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Dale Fraser
Sent: Thursday, 8 May 2008 9:07 AM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: ColdFusion Install Broken

 

32bit.

 

I'm not sure if this problem was introduced due to SP1 or 8.0.1 but install
on Vista used to work.

 

Regards

Dale Fraser

http://learncf.com <http://learncf.com/> 

http://flexcf.com <http://flexcf.com/> 

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: ColdFusion Install Broken

2008-05-07 Thread Dale Fraser
32bit.

 

I'm not sure if this problem was introduced due to SP1 or 8.0.1 but install
on Vista used to work.

 

Regards

Dale Fraser

 <http://learncf.com/> http://learncf.com

 <http://flexcf.com/> http://flexcf.com

 

 

From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of CyberAngel
Sent: Wednesday, 7 May 2008 5:42 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: ColdFusion Install Broken

 

32bit or 64bit?

 

 

 

From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Dale Fraser
Sent: Thursday, 8 May 2008 12:23 AM
To: cfaussie@googlegroups.com
Subject: [cfaussie] ColdFusion Install Broken

 

Anyone tried to install

 

ColdFusion 8.01 on Vista SP1

 

It doesn't work, it doesn't configure the web connectors etc.

 

Regards

Dale Fraser

http://learncf.com <http://learncf.com/> 

http://flexcf.com <http://flexcf.com/> 

 

 

 

 



 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: ColdFusion Install Broken

2008-05-07 Thread CyberAngel
32bit or 64bit?

 

 

 

From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Dale Fraser
Sent: Thursday, 8 May 2008 12:23 AM
To: cfaussie@googlegroups.com
Subject: [cfaussie] ColdFusion Install Broken

 

Anyone tried to install

 

ColdFusion 8.01 on Vista SP1

 

It doesn't work, it doesn't configure the web connectors etc.

 

Regards

Dale Fraser

http://learncf.com  

http://flexcf.com  

 

 



 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---