RE: Locked out of administrator

2006-04-17 Thread Phillip B. Holmes
Method 1, reset the password to a new value Stop the CFMX service Open the file cf_install\lib\password.properties Set new values for “rdspassword” and “password” Set “encrypted” to false Restart CFMX Method 2: Disable the password altogether Stop the CFMX service Open the file

RE: Locked out of administrator

2006-04-17 Thread Dave Watts
Hi. I asked this and haven't gotten an answer, unless I missed it. I disabled cfcontent in CF Administrator, my dev copy, version 6.1. Now I can't get into the administrator. I assume like 5.0 there is somewhere to enter the unsecuredtags directory, which should be pointing to

Re: Locked out of admin

2006-04-07 Thread Bud
No, sorry. It has nothing to do with the password. I disabled cfcontent and the unsecuredtags directory must be pointing somewhere other than the installation. I'm looking for where I would change this or add it back into an XML file. See if this helps:

Re: Locked out of admin

2006-04-04 Thread Rob Wilkerson
See if this helps: http://www.coldfusioncookbook.com/entry/68/How-do-I-reset-the-ColdFusion-Administrator-password? On 4/4/06, Bud [EMAIL PROTECTED] wrote: Hi. I disabled cfcontent on my developer copy of MX 6.1. Now I'm locked out of admin. Is there an unsecuredtags directory setting? I've

RE: Locked Out

2002-11-12 Thread Douglas.Knudsen
[mailto:jedimaster;macromedia.com] Sent: Monday, November 11, 2002 7:13 PM To: CF-Talk Subject: RE: Locked Out Wouldn't be the first time I've been confused. But if you _can_ find the email, let me know. === Raymond Camden

RE: Locked Out

2002-11-12 Thread Douglas.Knudsen
=SESSION cfset structappend(request,Duplicate(session)) /cflock Doug -Original Message- From: Sandy Clark [mailto:slLists;shayna.com] Sent: Monday, November 11, 2002 8:42 PM To: CF-Talk Subject: RE: Locked Out I wrote an article and a tag to help with this type of situation

RE: Locked Out

2002-11-12 Thread Raymond Camden
12, 2002 10:53 AM To: CF-Talk Subject: RE: Locked Out Well, I can't find the bloody email...but...here are some example files. The problem shows up when you try to move the request scope back to the session scope. cfset session = duplicate(request) doesn't do what you think

RE: Locked Out

2002-11-12 Thread Douglas.Knudsen
=session D -Original Message- From: Raymond Camden [mailto:jedimaster;macromedia.com] Sent: Monday, November 11, 2002 7:13 PM To: CF-Talk Subject: RE: Locked Out Wouldn't be the first time I've been confused. But if you _can_ find the email, let me know

RE: Locked Out

2002-11-12 Thread Raymond Camden
PROTECTED] WWW : www.camdenfamily.com/morpheus Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From: [EMAIL PROTECTED] [mailto:Douglas.Knudsen;alltel.com] Sent: Tuesday, November 12, 2002 10:55 AM To: CF-Talk Subject: RE: Locked Out

RE: Locked Out

2002-11-12 Thread Sandy Clark
] [mailto:Douglas.Knudsen;alltel.com] Sent: Tuesday, November 12, 2002 10:53 AM To: CF-Talk Subject: RE: Locked Out Well, I can't find the bloody email...but...here are some example files. The problem shows up when you try to move the request scope back to the session scope. cfset session = duplicate

RE: Locked Out

2002-11-12 Thread Raymond Camden
it is. - Yoda -Original Message- From: Sandy Clark [mailto:slLists;shayna.com] Sent: Tuesday, November 12, 2002 11:24 AM To: CF-Talk Subject: RE: Locked Out The only problem I found in the duplicate function was when you tried to duplicate recordsets in 4.5.1. That was fixed

RE: Locked Out

2002-11-12 Thread Sandy Clark
Message- From: Raymond Camden [mailto:jedimaster;macromedia.com] Sent: Tuesday, November 12, 2002 1:42 PM To: CF-Talk Subject: RE: Locked Out Is this 4.5.1 _without_ the duplicate fix? === Raymond Camden, ColdFusion Jedi Master

RE: Locked Out

2002-11-12 Thread Raymond Camden
: www.camdenfamily.com/morpheus Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From: Sandy Clark [mailto:slLists;shayna.com] Sent: Tuesday, November 12, 2002 2:00 PM To: CF-Talk Subject: RE: Locked Out I never found a duplicate fix for 4.5.1

RE: Locked Out

2002-11-12 Thread Matt Robertson
Ray wrote: I'd be willing to bet it was addressed in the hotfix. Either way - if anyone out there IS using 4.5.1, please grab the fix. :) That hotfix was only released for Enterprise. If you were running 4.5.1sp2 Pro (like me) you were SOL. There was quite a bit of squalling about that on

Re: Locked Out

2002-11-12 Thread Marlon Moyer
I've always been able to do without *but* its a *hole* I'd like to *plug* nonetheless. What Kind of coded messages are you sending to the list :) Matt Robertson wrote: Ray wrote: I'd be willing to bet it was addressed in the hotfix. Either way - if anyone out there IS using 4.5.1,

Re: RE: Locked Out

2002-11-12 Thread ksuh
Ahh, so the problem did affect pro? Well, that sucks, as we're running pro right now. - Original Message - From: Matt Robertson [EMAIL PROTECTED] Date: Tuesday, November 12, 2002 12:17 pm Subject: RE: Locked Out Ray wrote: I'd be willing to bet it was addressed in the hotfix

RE: Locked Out

2002-11-12 Thread Dave Watts
I'd be willing to bet it was addressed in the hotfix. Either way - if anyone out there IS using 4.5.1, please grab the fix. :) That hotfix was only released for Enterprise. If you were running 4.5.1sp2 Pro (like me) you were SOL. There was quite a bit of squalling about that on

Re: Locked Out

2002-11-11 Thread Tim Painter
cflock scope=application type=READONLY timeout=10 cfwddx action=CFML2WDDX input=#application# output=temp cfwddx action=WDDX2CFML input=#temp# output=request.application !--- You can replace the above two lines with the faster cfset request.application = Duplicate(application) if the

RE: Locked Out

2002-11-11 Thread Douglas.Knudsen
and either add cflocks or do the above. Doug -Original Message- From: Tim Painter [mailto:cftalk;cfex.com] Sent: Monday, November 11, 2002 6:45 AM To: CF-Talk Subject: Re: Locked Out. Roger, Just curious -- what is the purpose of serializing/deserializing it into wddx and back

RE: Locked Out

2002-11-11 Thread Raymond Camden
- From: [EMAIL PROTECTED] [mailto:Douglas.Knudsen;alltel.com] Sent: Monday, November 11, 2002 12:43 PM To: CF-Talk Subject: RE: Locked Out Tim, et al... I'd strongly suggest you not use Duplicate to move session or application scoped vars to the request scope. Duplicate() works

RE: Locked Out

2002-11-11 Thread S . Isaac Dealey
is the Force, and a powerful ally it is. - Yoda -Original Message- From: [EMAIL PROTECTED] [mailto:Douglas.Knudsen;alltel.com] Sent: Monday, November 11, 2002 12:43 PM To: CF-Talk Subject: RE: Locked Out Tim, et al... I'd strongly suggest you not use Duplicate to move session

RE: Locked Out

2002-11-11 Thread Douglas.Knudsen
: Monday, November 11, 2002 4:06 PM To: CF-Talk Subject: RE: Locked Out E - sorry, but you are wrong. Duplicate works fine on session and application scopes in CF 4.5.1 and CF5. There _was_ a bug with Duplicate in CF 4.5.1, but it was fixed in a hot fix. As it stands, in CF5, session

RE: Locked Out

2002-11-11 Thread Raymond Camden
Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From: S. Isaac Dealey [mailto:info;turnkey.to] Sent: Monday, November 11, 2002 6:25 PM To: CF-Talk Subject: RE: Locked Out He was probably confusing duplicate() with structcopy

RE: Locked Out

2002-11-11 Thread Raymond Camden
: morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From: [EMAIL PROTECTED] [mailto:Douglas.Knudsen;alltel.com] Sent: Monday, November 11, 2002 6:00 PM To: CF-Talk Subject: RE: Locked Out uge.we already had this discussion, you even

RE: Locked Out

2002-11-11 Thread Sandy Clark
- From: [EMAIL PROTECTED] [mailto:Douglas.Knudsen;alltel.com] Sent: Monday, November 11, 2002 12:43 PM To: CF-Talk Subject: RE: Locked Out Tim, et al... I'd strongly suggest you not use Duplicate to move session or application scoped vars to the request scope. Duplicate() works

RE: Locked Out

2002-11-11 Thread Jim Davis
E - sorry, but you are wrong. Duplicate works fine on session and application scopes in CF 4.5.1 and CF5. There _was_ a bug with Duplicate in CF 4.5.1, but it was fixed in a hot fix. As it stands, in CF5, session and application scopes are structures. I'm pretty sure they were in

Re: Locked Out

2002-11-10 Thread S . Isaac Dealey
The vendor's a putz. Unfortunately I'm not aware of any way to get around full-checking being enabled on the server without implementing locks. Which puts the client in a bad way. They can have a working application and no support, they can have support for an application that doesn't work, or

Re: Locked Out

2002-11-10 Thread Paul Hastings
We've tracked the problem down to locking of variables. The host requires them to be locked (i.e. wrapped with CFLOCK) but the app is not written that cf5 shared scope cflocks are almost mandatory, on the order of thou shalt not kill. if you want to stay with cf5 bite the bullet cflock all

Re: Locked Out

2002-11-10 Thread Roger
On Mon, 11 Nov 2002 12:04:15 +1030, in cf-talk you wrote: I'm looking for a solution that does not require us to add locks throughout the whole app if possible. You could always try the following steps. There's no guarantee that it's work, but if it doesn't, you're only out fifteen minutes of