Anyone seen this strange 'Authorization error' message before?

2002-11-18 Thread David Laing
Hi All.

We have just moved a site of ours to a new hosting provider, and several 
pages have begun to through strange errors:

ie: one page throws:
---
Error Diagnostic Information

CFAssociate

Authorization error - user not authorized.

--
and another throws
---


Error Diagnostic Information

CFSchedule

Authorization error - user not authorized.

-

These pages worked fine up until before the site was moved to the new 
server, and don't do any thing more complicated than handle a form post 
or schedule a new task (the site doesn't use Advanced Security or 
anything like that)

Has anyone seen these errors before, or know what causes them?  (And of 
course how to make them go away :)

Thanks

David Laing
applicatrionjunction.com




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: Strange cfmail problem

2001-09-05 Thread David Laing

If you are using Qmail somewhere in the loop, you may be experiencing the
bare LF problem that surfaced a while back.  Have a look in the Allaire
forums for a fix.

 -Original Message-
 From: W Luke [mailto:[EMAIL PROTECTED]]
 Sent: 01 September 2001 14:41
 To: CF-Talk
 Subject: Strange cfmail problem


 Usually I have no or little problems with CFMail.  But for some
 reason, it's
 refusing to send a mail - but no errors are reported in the log files, and
 it seems to be moving ok from the spool folder suggesting it's sent.

 All I'm doing is sending the contents of a textarea form field,
 as follows:

 Cfmail PORT=25 to=[EMAIL PROTECTED] from=[EMAIL PROTECTED]
 subject=test server=mymailserver#form.newbody#
 /cfmail

 I've tried this on my local test server, and also on my remote
 live server,
 neither working.  Is this a common fault, or am I making a
 blatent mistake?

 Thanks

 Will



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Lost Session variables

2001-07-05 Thread David Laing

Rob,

I have experienced a similar problem on IE5 for the Mac - it just seems to
refuse to
store the CFID and CFTOKEN variables as cookies unless you turn don't
specify the expires attributes of the cookie.

ie, like this

cfapplication name=RugbyScene sessionmanagement=Yes
setclientcookies=No

cfcookie name=CFID value=#CFID#
cfcookie name=CFTOKEN value=#CFTOKEN#

(Can't remember exactly where you get the values for CFID and CFTOKEN - I
think they are just local variables - you will have to check.  Otherwise you
might need to set:
CFSET CFID = Session.CFID
CFSET CFTOCKEN = Session.CFTOCKEN)

Donno if that will help you - not having the variables persistant didn't
help me :(

Regards

David

 -Original Message-
 From: Rob McLennan [mailto:[EMAIL PROTECTED]]
 Sent: 05 July 2001 08:17
 To: CF-Talk
 Subject: Lost Session variables


 I have a an end  user using IE5 on Windows ME who is unable to
 maintaing her
 session variables.
 We have checked that cookies are enabled etc but still now success.
 This is the only person who is reporting the problem - we know everthing
 works properly on IE5 Win95/98/NT.

 Any ideas?


 Rob Mclennan
 Web Application Developer
 BRD (Business Resource Development)
 [EMAIL PROTECTED]




 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CFCOOKIE Session variable problems with IE 5.0 on Mac

2001-06-22 Thread David Laing

Hi All.

I've been battling with a problem on with IE5.0 on the Mac for the past few
hours and wonder if anyone has
a) Had a similar experience
b) Knows of a solution.

My script does the following.
1.  It turns session management on:

cfapplication name=RugbyScene sessionmanagement=Yes
setclientcookies=Yes sessiontimeout=#attributes.sessiontimeout#

2.  It checks for the existance of a cookie, called visitorID:

cfif isDefined(cookie.visitorID)

3.  If this isn't defined, then it generates a new visitor ID, and stores
this in a cookie

cfcookie name=visitorID value=#qry_GetVisitorID.VisitorID#
expires=NEVER

4.  It then uses the cookie variable in the page.

5.  Next time you visit the page, it sees that cookie.visitorID is set, so
it doesn't generate a new one.  This works perfectly on IE5/Win, NN/Win,
NN/Mac but not on IE5/Mac.  Every time I visit the page on the IE5/Mac, it
generates a new visitorID for the cookie (ie, the previous one wasn't set).
Cookies are definately allowed in IE5.  They just don't seem to be stored
between page refreshes!  You will also see that I use cookies for session
management (CFID  CFTOKEN) - these are also getting lost, so my sessions
aren't working either.

I am at a bit of a loss as to what to do - some pointers would be much
appreciated (Allaires Forums and Dev Exchange are pretty quiet on this one)

Update*
I have just discovered the following.  If I make the cookie a session
cookie, (ie, I leave out the expires=... bit : cfcookie name=visitorID
value=#qry_GetVisitorID.VisitorID#) then the cookie is stored, but only
whilst the browser is open.  If I put anything (NEVER, 7, 01/01/2002 etc.)
then the cookie isn't stored at all.  Does that shed any light?
**

Regards

David Laing (david [at] vardus.com)
Substitute Window Washer, Vardus Internet Solutions

(A)bort, (R)etry, (F)*ckup completely?


Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CFCOOKIE Session variable problems with IE 5.0 on Mac

2001-06-20 Thread David Laing

Hi All.

I've been battling with a problem on with IE5.0 on the Mac for the past few
hours and wonder if anyone has
a) Had a similar experience
b) Knows of a solution.

My script does the following.
1.  It turns session management on:

cfapplication name=RugbyScene sessionmanagement=Yes
setclientcookies=Yes sessiontimeout=#attributes.sessiontimeout#

2.  It checks for the existance of a cookie, called visitorID:

cfif isDefined(cookie.visitorID)

3.  If this isn't defined, then it generates a new visitor ID, and stores
this in a cookie

cfcookie name=visitorID value=#qry_GetVisitorID.VisitorID#
expires=NEVER

4.  It then uses the cookie variable in the page.

5.  Next time you visit the page, it sees that cookie.visitorID is set, so
it doesn't generate a new one.  This works perfectly on IE5/Win, NN/Win,
NN/Mac but not on IE5/Mac.  Every time I visit the page on the IE5/Mac, it
generates a new visitorID for the cookie (ie, the previous one wasn't set).
Cookies are definately allowed in IE5.  They just don't seem to be stored
between page refreshes!  You will also see that I use cookies for session
management (CFID  CFTOKEN) - these are also getting lost, so my sessions
aren't working either.

I am at a bit of a loss as to what to do - some pointers would be much
appreciated (Allaires Forums and Dev Exchange are pretty quiet on this one)

Update*
I have just discovered the following.  If I make the cookie a session
cookie, (ie, I leave out the expires=... bit : cfcookie name=visitorID
value=#qry_GetVisitorID.VisitorID#) then the cookie is stored, but only
whilst the browser is open.  If I put anything (NEVER, 7, 01/01/2002 etc.)
then the cookie isn't stored at all.  Does that shed any light?
**

Regards

David Laing (david [at] vardus.com)
Substitute Window Washer, Vardus Internet Solutions

(A)bort, (R)etry, (F)*ckup completely?


Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists