strange error message

2013-04-22 Thread Les Irvin
Got this error when trying to pull up the CF Administrator. Any ideas what's up? HTTP Error 500.0 - coldfusion.server.SecurityService.removeAuthenticated()V Thanks, Les ~| Order the Adobe Coldfusion Anthology now!

know this Oracle JDBC error? Message 1018 not found

2013-02-27 Thread Chris
Does anybody know what this error is? Not getting any help Googling. [Macromedia][Oracle JDBC Driver](Internal Error) Message 1018 not found It happened after a request with 2 queries ran for a very long time (basically, the query is hung and the ColdFusion request is frozen

error: [Macromedia][Oracle JDBC Driver](Internal Error) Message 1018 not found

2013-02-26 Thread Chris
error: [Macromedia][Oracle JDBC Driver](Internal Error) Message 1018 not found Anybody know what this error is? It happened after a request with 2 queries ran for a very long time (basically, the query is hung and the ColdFusion request is frozen). - A DBA checked the query in a SQL

Error message

2011-10-20 Thread Jenny Gavin-Wear
Hi all, I'm trying to pin down the cause of the following error in the application log. Element is undefined in a Java object of type class coldfusion.runtime.CookieScope referenced as The code it points to is:- cfif isdefined(form.email) and len(form.email) and isdefined(form.password) and

RE: Error message

2011-10-20 Thread Robert Harrison
It appears you are allowing user to enter some values then storing them as cookies. The error you are showing looks like it may be a syntax error in the CF code where some line is not seeing the values correctly. This could happen if you get a stray or stray # in your user values somewhere

RE: Error message

2011-10-20 Thread Jenny Gavin-Wear
://www.fasttrackonline.co.uk/ -Original Message- From: Robert Harrison [mailto:rob...@austin-williams.com] Sent: 20 October 2011 15:34 To: cf-talk Subject: RE: Error message It appears you are allowing user to enter some values then storing them as cookies. The error you are showing looks like it may

custom error message - sometimes cf ignores me and displays the standard error message

2010-12-07 Thread nick way
hi guys For security (and appearance) reasons I don't ever want my users to be shown the default CF error message. Therefore in application.cfm I have the following: cferror type=validation exception=any template=/errorDocs/myErrorHandler.cfm / cferror type=request exception=any template

Re: custom error message - sometimes cf ignores me and displays the standard error message

2010-12-07 Thread Steven Durette
wrote: hi guys For security (and appearance) reasons I don't ever want my users to be shown the default CF error message. Therefore in application.cfm I have the following: cferror type=validation exception=any template=/errorDocs/myErrorHandler.cfm / cferror type=request

Re: custom error message - sometimes cf ignores me and displays the standard error message

2010-12-07 Thread Steven Durette
That should read any other cfml. Sent from my iPhone On Dec 7, 2010, at 11:38 AM, Steven Durette st...@durette.org wrote: Nick, Request and validation errors can only use cferror to redirect to HTML files that can include cferror references. Any other cell in those pages will cause

Re: custom error message - sometimes cf ignores me and displays the standard error message

2010-12-07 Thread nick way
I've put something in my apperrorhandler.cfm page that I shouldn't have and therefore the user is being shown the default error message? If that is it are you able to elaborate a little please so I can re think what apperrorhandler.cfm does? Thanks ever so much - I really appreciate your help

Re: custom error message - sometimes cf ignores me and displays the standard error message

2010-12-07 Thread Steven Durette
Correct. If you use request or exception error types they cannot use any other cfml. You can see the cferror specs at http://www.cfquickdocs.com/cf8/#cferror Sorry no cfmail with request and validation. Steve ~| Order the

Re: custom error message - sometimes cf ignores me and displays the standard error message

2010-12-07 Thread Dave Watts
When you say Request and validation errors can only use cferror to redirect to HTML files that can include cferror references. Are you saying i could only point to an apperrorhandler.html file? not apperrorhandler.cfm? (that'd be a shame as my apperrorhandler.cfm? emails me to tell me

Re: custom error message - sometimes cf ignores me and displays the standard error message

2010-12-07 Thread Dave Watts
Sorry no cfmail with request and validation. As a workaround, you can have your HTML page make an AJAX call to another .cfm page to do those sorts of things. Of course, if you have a serious problem with CF, that might generate a new error. Dave Watts, CTO, Fig Leaf Software

Re: custom error message - sometimes cf ignores me and displays the standard error message

2010-12-07 Thread Nick Way - South East Publishing
one who wants CF to email them with the details of any errors that occur (without requiring the user to generate that email to me themselves) and also to show the user a professional looking (and secure ie no code shown) error message - what does everyone else do to achieve this? Any further

RE: custom error message - sometimes cf ignores me and displays the standard error message

2010-12-07 Thread Russ Michaels
...@figleaf.com] Sent: 07 December 2010 16:52 To: cf-talk Subject: Re: custom error message - sometimes cf ignores me and displays the standard error message When you say Request and validation errors can only use cferror to redirect to HTML files that can include cferror references. Are you

Re: custom error message - sometimes cf ignores me and displays the standard error message

2010-12-07 Thread Steven Durette
Nick, What you have been using for years is exception error reporting. You have just added request and validation to the mix and they have different rules. Nothing has changed, you are just expanding your horizons! :) Steve Sent from my iPhone

Re: custom error message - sometimes cf ignores me and displays the standard error message

2010-12-07 Thread Nick Way - South East Publishing
Thanks Russ - that's got it :) Cheers Nick - Original Message - From: Russ Michaels To: cf-talk Sent: Tuesday, December 07, 2010 5:27 PM Subject: RE: custom error message - sometimes cf ignores me and displays the standard error message FYI if you us ethe default

Re: custom error message - sometimes cf ignores me and displays the standard error message

2010-12-07 Thread Nick Way - South East Publishing
: Steven Durette To: cf-talk Sent: Tuesday, December 07, 2010 5:29 PM Subject: Re: custom error message - sometimes cf ignores me and displays the standard error message Nick, What you have been using for years is exception error reporting. You have just added request and validation

Re: custom error message - sometimes cf ignores me and displays the standard error message

2010-12-07 Thread Dave Watts
with the details of any errors that occur (without requiring the user to generate that email to me themselves) and also to show the user a professional looking (and secure ie no code shown) error message - what does everyone else do to achieve this? Any further thoughts from anyone would

Re: custom error message - sometimes cf ignores me and displays the standard error message

2010-12-07 Thread Jacob Munson
I'm now thinking I need to read up on the difference between exception, request and validation errors. I think the other replies in this thread may be all the info you need, but if not you could take a look here for a good comprehensive rundown of CF errors:

Re: Displaying Try/Catch Error message

2010-02-23 Thread Will Wilker
When doing an output you need to then do an abort otherwise the application will continue to the next statement. You're right. I did a cfflush followed by a cfabort and the messages are displaying, while the rest of the script is ignored. Works perfect. Thanks, everyone!

Displaying Try/Catch Error message

2010-02-22 Thread Will Wilker
I am having an issue displaying my error message whenever my code throws an error. It makes an HTTP request using GET to access some XML, and if the status code is not 200 OK, then it should catch that and display the error message. While the request is being preformed, there is a transition

Re: Displaying Try/Catch Error message

2010-02-22 Thread Will Wilker
Ignore the pre tags; they are not part of the code. ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive:

Re: Displaying Try/Catch Error message

2010-02-22 Thread Dave Watts
I am having an issue displaying my error message whenever my code throws an error. It makes an HTTP request using GET to access some XML, and if the status code is not 200 OK, then it should catch that and display the error message. While the request is being preformed

Re: Displaying Try/Catch Error message

2010-02-22 Thread Will Wilker
I am having an issue displaying my error message whenever my code throws an error. It makes an HTTP request using GET to access some XML, and if the status code is not 200 OK, then it should catch that and display the error message. While the request is being preformed

Re: Displaying Try/Catch Error message

2010-02-22 Thread Andrew Scott
When doing an output you need to then do an abort otherwise the application will continue to the next statement. ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing

Re: Cfimage captcha wierd error message

2009-03-05 Thread Mike Little
hi joel, i would be really interested to know if you found a solution for this. this is happening with my host as well. mike ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free

Coldfusion 8 Unable to invoke CFC always added to error message

2008-12-10 Thread Ahmed El-Khuffash
Since switching to ColdFusion 8, I noticed some weird issues with the returned error messages from the CFC. Let's say I call my login function from my Flex app, and the username and password are incorrect. The ColdFusion code would throw the following error: cfabort showerror=You have entered

Cfimage captcha wierd error message

2008-11-11 Thread Joel Richards
I'm using cfimage to generate a captcha. My script works great locally, but chokes on my shared hosting account at Hostmysite. I keep getting java.lang.IllegalStateException: Timer already cancelled. errors. Here is a stripped down version of my code: cfCaptchaProxy.cfc: cffunction

RE: EOF error message in email.log

2008-11-05 Thread Nick Gleason
PROTECTED] Sent: Tuesday, November 04, 2008 9:29 PM To: cf-talk Subject: Re: EOF error message in email.log I would guess that it is a bad e-mail causing the problem. Why are you BCC-ing a bunch of e-mails? Why not just send direct? Of course looking at the e-mails may lead you

Re: EOF error message in email.log

2008-11-05 Thread Rob Parkhill
] Sent: Tuesday, November 04, 2008 9:29 PM To: cf-talk Subject: Re: EOF error message in email.log I would guess that it is a bad e-mail causing the problem. Why are you BCC-ing a bunch of e-mails? Why not just send direct? Of course looking at the e-mails may lead you to the problem

RE: EOF error message in email.log

2008-11-05 Thread Nick Gleason
in the mail.log, I'd still be interested. Thanks! Nick -Original Message- From: Rob Parkhill [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 05, 2008 12:30 PM To: cf-talk Subject: Re: EOF error message in email.log Nick, I usually just loop over the single e-mail address, and do

EOF error message in email.log

2008-11-04 Thread Nick Gleason
Hey there - another cfmail related question. A client is having problems sending out an email through our application using cfmail. We are seeing the following record in mail.log: Error,scheduler-8,11/04/08,15:10:23,,[EOF] I gather that EOF stands for end of file, but I'm not sure what that

Re: EOF error message in email.log

2008-11-04 Thread Rob Parkhill
I would guess that it is a bad e-mail causing the problem. Why are you BCC-ing a bunch of e-mails? Why not just send direct? Of course looking at the e-mails may lead you to the problem, or see what is in the undeliverable folder. Rob On Tue, Nov 4, 2008 at 7:56 PM, Nick Gleason [EMAIL

Re: Empty error message in a query of queries

2008-09-18 Thread Brent Shaub
Thanks for the replies Carl and Brad. Turns out you're both on the right track. The query is the same as it loops over various databases and appends the results using the QofQ. There is no chance of the records being the same since they are in different databases and one of the columns is

Empty error message in a query of queries

2008-09-17 Thread Brent Shaub
Here's the beginning of the error message for a query of queries: Message [empty string] StackTrace java.lang.ClassCastException at coldfusion.sql.imq.GenericComparator.compare(Comparator.java:67) at coldfusion.sql.imq.TableSorter.compareTo(TableSorter.java:156

Re: Empty error message in a query of queries

2008-09-17 Thread Carl Von Stetten
Brent Shaub wrote: Here's the beginning of the error message for a query of queries: Message [empty string] StackTrace java.lang.ClassCastException at coldfusion.sql.imq.GenericComparator.compare(Comparator.java:67) at coldfusion.sql.imq.TableSorter.compareTo(TableSorter.java:156

Re: Empty error message in a query of queries

2008-09-17 Thread Brad Wood
with querynew() are you specifying data types? ~Brad - Original Message - From: Carl Von Stetten [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Wednesday, September 17, 2008 4:30 PM Subject: Re: Empty error message in a query of queries Brent, Without seeing the two queries

Re: Database not found - error message

2008-03-11 Thread Daniel Negusse
Hi william, thanks for your help. don't mind my stupidity in this field. but where do i find the application.cfm? what i have is a coldfusion application, and the root folder for my site is in the wwwroot (a folder created when installing coldfusion on my mac). so i have the index.cfm in this

Re: Database not found - error message

2008-03-11 Thread Daniel Negusse
Hello Rich, what is SELECT * FROM FOO. last... i created a recordset on my machine, and that is how i drag the 'field' onto the index.cfm file. but at godaddy, i haven't created a recordset, and how does the serever or the coldfusion at godaddy know what 'rs-christmas' is. or it just

Re: Database not found - error message

2008-03-11 Thread Daniel Negusse
i think i found it: cfset CurrentPage=GetFileFromPath(GetBaseTemplatePath()) cfparam name=PageNum_rs_christmas default=1 cfquery name=rs_christmas datasource=spaceexpressions SELECT * FROM christmasphotos ORDER BY photo_id ASC /cfquery cfset

RE: Database not found - error message

2008-03-11 Thread Rich
Dan, I apologize I did not realize that you were utilizing Dreamweaver (DW) to generate the CF code to power this page. When you connected your database to ColdFusion, you were forced to give it a name to identify that connection. I do not use DW, so I am not sure the exact process used to

RE: Database not found - error message

2008-03-11 Thread Rich
Dan, Yep, you found it! You have two options: 1. Ask godaddy: What is the DSN name for my database? 2. Ask godaddy to update your DSN with the name spaceexpressions The string provided to you from godaddy is the actual address of the database server, and is not needed unless they have given you

Re: Database not found - error message

2008-03-11 Thread Daniel Negusse
it works... thanks RICH, you are awesome. great... i can't thank you enough. yes, they have a DSN name they gave me, and it works as it should... thanks, oh, you can't believe how glad, excited and ecstatic i am. i am, like i said, a molecular biologist, playing with life and DNA and stuff

Database not found - error message

2008-03-10 Thread Daniel M. N.
I am new to coldfusion. using a video lesson from total training i learned how to use dreamweaver / coldfusion and MySQL database driven site. i use a mac, and my webpage works beautifully on my computer (locally). the problem is when i try to upload the site at godaddy, it gives me an error

RE: Database not found - error message

2008-03-10 Thread Dave Watts
someone said i have to have the database string from the hosting company - godaddy. i got the string, but don't know where to put it. the index.cfm file doesn't say where to find the database, the table... You (or your hosting provider) need to create a datasource in the CF Administrator.

RE: Database not found - error message

2008-03-10 Thread Rich
Daniel, You need to place the DSN string (Datasource name as defined in the CF administrator by godaddy) in the CFQUERY tag (that you did not show in your code sample). Ex: cfquery name= rs_christmas datasource=DSN_STRING_HERE SELECT * FROM FOO /cfquery HTH, Rich

Re: Database not found - error message

2008-03-10 Thread William Seiter
). the problem is when i try to upload the site at godaddy, it gives me an error message (database not found). i called customer rep, no one know how to help. the real problem: i have my datbase, i have everything set up, the problem is the index.cfm file can't access the database

Aaack! What does this error message mean?

2008-02-20 Thread Rick Faircloth
Hi, all… I knew I’d get into some hairy error messages once I moved from CF 4.5 to CF 8… well I got one. (Thanks, Will… ;o) dereference a scalar variable of type class java.lang.String as a structure with members ??? Come on, what in the world! Anyway, what does this mean? I haven’t had

RE: Aaack! What does this error message mean?

2008-02-20 Thread ColdFusion
this error message mean? Hi, all… I knew I’d get into some hairy error messages once I moved from CF 4.5 to CF 8… well I got one. (Thanks, Will… ;o) dereference a scalar variable of type class java.lang.String as a structure with members ??? Come on, what in the world! Anyway, what does this mean

RE: Aaack! What does this error message mean?

2008-02-20 Thread Billy Cox
It generally means that you tried to call an undefined variable. Why it couldn't just say that, I don't know. I think that a group of Macromedia nerds were trying to cook up an error message that sounded more ominous than 'Java null pointer exception'. You know...something to strike fear

RE: Aaack! What does this error message mean?

2008-02-20 Thread Rick Faircloth
Well... you can see from the error message it's having a problem with these lines: The error occurred in E:\Inetpub\webroot\c21-ar\Application.cfm: line 8 6 : !--- Setup variables for homepage visit email notice --- 7 : 8 :CFSET Email.To = [EMAIL PROTECTED] 9 : CFSET Email.From

RE: Aaack! What does this error message mean?

2008-02-20 Thread Adkins, Randy
message mean? Well... you can see from the error message it's having a problem with these lines: The error occurred in E:\Inetpub\webroot\c21-ar\Application.cfm: line 8 6 : !--- Setup variables for homepage visit email notice --- 7 : 8 :CFSET Email.To = [EMAIL PROTECTED] 9 : CFSET

Re: Aaack! What does this error message mean?

2008-02-20 Thread morgan l
Using cfset Email.To = whatever is trying to set a key called To in a Structure called Email. The error seems to indicate that Email is not actually a Structure, though. cfset Email = StructNew() will declare Email as a Structure. On Wed, Feb 20, 2008 at 10:55 AM, Rick Faircloth [EMAIL PROTECTED]

RE: Aaack! What does this error message mean?

2008-02-20 Thread Rick Faircloth
Subject: RE: Aaack! What does this error message mean? try this: CFSET Email = StructNew() CFSET Email.To = [EMAIL PROTECTED] CFSET Email.From = [EMAIL PROTECTED] CFSET Email.Subject = Visitor to the Century 21 Action Realty Development Site

RE: Aaack! What does this error message mean?

2008-02-20 Thread Rick Faircloth
[mailto:[EMAIL PROTECTED] Sent: Wednesday, February 20, 2008 12:13 PM To: CF-Talk Subject: RE: Aaack! What does this error message mean? It generally means that you tried to call an undefined variable. Why it couldn't just say that, I don't know. I think that a group of Macromedia nerds were

RE: Aaack! What does this error message mean?

2008-02-20 Thread Rick Faircloth
Message- From: Dominic Watson [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 20, 2008 12:52 PM To: CF-Talk Subject: Re: Aaack! What does this error message mean? Quite possibly a case of variable scoping (or the lack of) causing confusion. Could there be a string variable called Email set

Re: Aaack! What does this error message mean?

2008-02-20 Thread Dominic Watson
]' So, the first line has happened somewhere in your code previous to the lines throwing the error. There is nothing wrong with the error message, it is quite specific ;) HTH Dominic -- Blog it up: http://fusion.dominicwatson.co.uk

RE: Aaack! What does this error message mean?

2008-02-20 Thread Rick Faircloth
-Talk Subject: Re: Aaack! What does this error message mean? Using cfset Email.To = whatever is trying to set a key called To in a Structure called Email. The error seems to indicate that Email is not actually a Structure, though. cfset Email = StructNew() will declare Email as a Structure

Re: quot;Invalid Parameter Typequot; Error message - When is a number not a number?

2007-10-02 Thread Nathan Wells
I do not think it has anything to do with the database or ODBC, because you can replicate the problem by building a query in ColdFusion. Check out this code: cfscript q = QueryNew(c1); iRow = QueryAddRow(q); QuerySetCell(q,c1,Val(5),iRow); /cfscript cfloop query=q

Re: quot;Invalid Parameter Typequot; Error message - When is a number not a number?

2007-10-02 Thread gary gilbert
Nathan, The reason this fails is that C1 is a complex value. You are trying to set the entire column of a query as a numeric value. When you use isnumeric(c1) in the loop C1 in this case refers to the value that is contained in the column for that row. Using the cfparam you would need to

RE: Getting error message on one page only

2007-09-14 Thread Rich
You will get a 'method cannot be found' if you are passing invalid arguments too it, because CF searches for a method with matching arguments. You could have 2 functions: New(int) And New(int, int) Do you mean one function with two arguments, one of which that is not required? You

Getting error message on one page only

2007-09-13 Thread Bruce Sorge
I have CFC's that I am using throughout our districts web site and they are all working fine except one. I keep getting the error message that a method cannot be found in the CFC, but the method is there. All works fine on my dev machine. It is when I put it all on my test machine that it does

Re: Getting error message on one page only

2007-09-13 Thread Dan Vega
site and they are all working fine except one. I keep getting the error message that a method cannot be found in the CFC, but the method is there. All works fine on my dev machine. It is when I put it all on my test machine that it does not work. And it is only certain methods in this component

RE: Getting error message on one page only

2007-09-13 Thread Bruce Sorge
on the same page, written on the same day are not. Strange indeed. Bruce -Original Message- From: Dan Vega Sent: Thursday, September 13, 2007 11:00 AM To: CF-Talk Subject: Re: Getting error message on one page only Bruce, Are you sure that you are not caching the components

Re: Getting error message on one page only

2007-09-13 Thread Dan Vega
11:00 AM To: CF-Talk Subject: Re: Getting error message on one page only Bruce, Are you sure that you are not caching the components in the application scope? I find that sometime I forget to re instantiate my components when I add new methods to them. Dan

Re: Getting error message on one page only

2007-09-13 Thread Josh Nathanson
No I am not. And the methods that cannot be found were written last Thursday. I just moved everything to the test server yesterday and remembered that I did not check out the specific school sites that I am looking at today. Bruce - make sure any mappings are pointing where you think they

Re: Getting error message on one page only

2007-09-13 Thread Ian Skinner
Can you refresh the components in the administrator? ~| Check out the new features and enhancements in the latest product release - download the What's New PDF now

RE: Getting error message on one page only

2007-09-13 Thread Peterson, Chris
: RE: Getting error message on one page only No I am not. And the methods that cannot be found were written last Thursday. I just moved everything to the test server yesterday and remembered that I did not check out the specific school sites that I am looking at today. I just find it strange

RE: Getting error message on one page only

2007-09-13 Thread Peterson, Chris
PM To: CF-Talk Subject: Re: Getting error message on one page only No I am not. And the methods that cannot be found were written last Thursday. I just moved everything to the test server yesterday and remembered that I did not check out the specific school sites that I am looking at today

Re: Getting error message on one page only

2007-09-13 Thread Ian Skinner
I did not think that one could overload ColdFusion component (CFC) methods that way? ~| Get the answers you are looking for on the ColdFusion Labs Forum direct from active programmers and developers.

RE: Getting error message on one page only

2007-09-13 Thread Bruce Sorge
Well the part that gets me is that it works fine on my dev box. No errors at all. -Original Message- From: Peterson, Chris Sent: Thursday, September 13, 2007 11:12 AM To: CF-Talk Subject: RE: Getting error message on one page only You will get a 'method cannot be found' if you

RE: Getting error message on one page only

2007-09-13 Thread Bruce Sorge
It is a public component. It works on the dev box just fine. And there are about three other methods on this component that work fine. -Original Message- From: Dan Vega [mailto:[EMAIL PROTECTED] Sent: Thursday, September 13, 2007 11:14 AM To: CF-Talk Subject: Re: Getting error message

RE: Getting error message on one page only

2007-09-13 Thread Bruce Sorge
because I hate doing this). So now I have narrowed it down to the dev folder. I will investigate further. Bruce -Original Message- From: Dan Vega Sent: Thursday, September 13, 2007 11:14 AM To: CF-Talk Subject: Re: Getting error message on one page only If you dump the component do you

Re: CF8 HTML CFGRID with checkbox possible with binding? +Error Message

2007-09-06 Thread Eron Cohen
I am working on the same thing right now. I have success getting the checkbox to show up. That much is no problem. The way I am doing it is by using QueryNew/QuerySetCell to create a query that I send back to the CFGRID via binding to a CFC. Here is how I am creating my checkbox: CFSET

Re: CF8 HTML CFGRID with checkbox possible with binding? +Error Message

2007-09-06 Thread [EMAIL PROTECTED] [EMAIL PROTECTED]
I am working on the same thing right now. I have success getting the checkbox to show up. That much is no problem. The way I am doing it is by using QueryNew/QuerySetCell to create a query that I send back to the CFGRID via binding to a CFC. Here is how I am creating my checkbox: CFSET

SSL Domain redirect without error message

2007-04-17 Thread Victor Moore
Hi, I have the following scenario: site: https://www.xyzdomain.com has a valid SSL certificate if users type https://xyzdomain.com they get invalid cert error. What is the best way to do a redirect (from https://xyzdomain.com to https://www.xyzdomain.com https://xyzdomain.com/ ) without

Re: SSL Domain redirect without error message

2007-04-17 Thread George Abraham
Victor, If you do have access to the web server's configuration, why not define a site called https://xyzdomain.com and then have a single page in the home directory there that redirects to the correct site: https://www.xyzdomain.com? I usually have a single such directory that I have all such

Re: SSL Domain redirect without error message

2007-04-17 Thread Victor Moore
Hi George, Thank you for your response. Unfortunately it won't work (as far as I can tell). I am ding a redirection now, but the message pops up before the redirection occurs. Either I'm doing something wrong or the only way to do it is to get a wild card ssl certificate that covers both domains

Re: SSL Domain redirect without error message

2007-04-17 Thread George Abraham
Hmm, that is true, the middle site would also have to have the SSL cert cover it. George On 4/17/07, Victor Moore [EMAIL PROTECTED] wrote: Hi George, Thank you for your response. Unfortunately it won't work (as far as I can tell). I am ding a redirection now, but the message pops up before

Re: SSL Domain redirect without error message

2007-04-17 Thread George Abraham
You know, the best thing to do might be to give them a domain not found error when they enter in xyzdomain.com. That way, they do recheck the address. George On 4/17/07, George Abraham [EMAIL PROTECTED] wrote: Hmm, that is true, the middle site would also have to have the SSL cert cover it.

Re: SSL Domain redirect without error message

2007-04-17 Thread Jordan Michaels
level (as opposed to sending something to the client machine like a CFLOCATION would do) I'm 95% sure that this will give you a redirect without an error message. The CFLOCATION (or javascript, or whatever) requires the web server to send a response back to the client. This will result in the SSL

RE: SSL Domain redirect without error message

2007-04-17 Thread Stephens, Larry V
PROTECTED] Sent: Tuesday, April 17, 2007 10:15 AM To: CF-Talk Subject: SSL Domain redirect without error message Hi, I have the following scenario: site: https://www.xyzdomain.com has a valid SSL certificate if users type https://xyzdomain.com they get invalid cert error. What is the best way

Re: SSL Domain redirect without error message

2007-04-17 Thread Victor Moore
Hi Stephens, I'm afraid this won't work either. Your SSL certificate is for basketbasics.com domain. if you type https://www.basketbasics.com you will get a browser notification message and thinking about the purpose of a SSL certificate it makes sense. Thanks Victor On 4/17/07, Stephens,

RE: SSL Domain redirect without error message

2007-04-17 Thread Dave Watts
server level (as opposed to sending something to the client machine like a CFLOCATION would do) I'm 95% sure that this will give you a redirect without an error message. The CFLOCATION (or javascript, or whatever) requires the web server to send a response back to the client

RE: SSL Domain redirect without error message

2007-04-17 Thread Dave Watts
Either I'm doing something wrong or the only way to do it is to get a wild card ssl certificate that covers both domains : www.xyzdomain.com and xyzdomain.com https://www.xyzdomain.com/ You're not doing anything wrong, and that's exactly what you'll have to do if you want people to be able

Re: SSL Domain redirect without error message

2007-04-17 Thread Victor Moore
Thanks Dave, Like always you are right. As per my previous email, I think it's working the way it should and the certificate is given for certain domain and one shouldn't be able to change it willy nilly. It will defeat the purpose Thanks Victor On 4/17/07, Dave Watts [EMAIL PROTECTED] wrote:

RE: SSL Domain redirect without error message

2007-04-17 Thread Dave Watts
Like always you are right. I wish. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in Washington DC, Atlanta, Chicago, Baltimore, Northern Virginia, or on-site at your location.

RE: SSL Domain redirect without error message

2007-04-17 Thread Russ
-Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 17, 2007 7:49 PM To: CF-Talk Subject: RE: SSL Domain redirect without error message Either I'm doing something wrong or the only way to do it is to get a wild card ssl certificate that covers both

Re: Vista - too many files open error message- Dave watts?

2007-03-08 Thread Tom Chiverton
On Wednesday 07 Mar 2007, Dave Watts wrote: I second the Who the hell needs that many files open at one time? Unfortunately, that's just the way Foxpro works. And it's supported on Vista, is it ? A quick look at http://msdn2.microsoft.com/en-us/vfoxpro/bb190292.aspx suggests not. -- Tom

Re: Vista - too many files open error message- Dave watts?

2007-03-08 Thread Will Tomlinson
Dave, She says, YOU DA MAN. Your solution worked perfectly. :) Thanks much dude, Will ~| Macromedia ColdFusion MX7 Upgrade to MX7 experience time-saving features, more productivity. http://www.adobe.com/products/coldfusion

RE: Vista - too many files open error message- Dave watts?

2007-03-08 Thread Dave Watts
Thanks much dude You're welcome! Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in Washington DC, Atlanta, Chicago, Baltimore, Northern Virginia, or on-site at your location. Visit

OT: Vista - too many files open error message- Dave watts?

2007-03-07 Thread Will Tomlinson
My friend is having a problem with Vista giving her this error message: Too many files open She said she used to edit the config.nt file to say files=100 to fix it. But that's not working here. She has between 40-100 files open in FoxPro 2.6. Anyone have any ideas/suggestions? Thanks much

RE: Vista - too many files open error message- Dave watts?

2007-03-07 Thread Kevin Aebig
Subject: OT: Vista - too many files open error message- Dave watts? My friend is having a problem with Vista giving her this error message: Too many files open She said she used to edit the config.nt file to say files=100 to fix it. But that's not working here. She has between 40-100 files open

RE: Vista - too many files open error message- Dave watts?

2007-03-07 Thread Andy Matthews
Open fewer files? Is there ever really a reason to have that many files open? -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 07, 2007 8:26 AM To: CF-Talk Subject: OT: Vista - too many files open error message- Dave watts? My friend is having

Re: Vista - too many files open error message- Dave watts?

2007-03-07 Thread Will Tomlinson
She needs more RAM if she wants to access that many files at once... especially since Vista lays an egg if it *assumes* something *might* be *potentially* wrong. She says she's got 2gb ram and that shouldn't be an issue. I don't know enough to know. Just trying to get pointed in the right

RE: Vista - too many files open error message- Dave watts?

2007-03-07 Thread Kevin Aebig
... =] Cheers, !k -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 07, 2007 8:46 AM To: CF-Talk Subject: Re: Vista - too many files open error message- Dave watts? She needs more RAM if she wants to access that many files at once... especially since

Re: Vista - too many files open error message- Dave watts?

2007-03-07 Thread Tom Chiverton
On Wednesday 07 Mar 2007, Andy Matthews wrote: Open fewer files? Is there ever really a reason to have that many files open? Maybe it's a limit built into the particular type of Vista she has ? -- Tom Chiverton Helping to completely maintain total materials On:

RE: Vista - too many files open error message- Dave watts?

2007-03-07 Thread Dave Watts
My friend is having a problem with Vista giving her this error message: Too many files open She said she used to edit the config.nt file to say files=100 to fix it. But that's not working here. She has between 40-100 files open in FoxPro 2.6. Anyone have any ideas/suggestions? Aside

Re: Vista - too many files open error message- Dave watts?

2007-03-07 Thread Will Tomlinson
Thanks Dave. I'm gonna get some more info from her. Will ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 MX7 integration create powerful cross-platform RIAs http://www.adobe.com/products/coldfusion/flex2/ Archive:

  1   2   3   4   5   >