Re: Weird problem with IFRAME

2012-12-18 Thread Claude Schnéegans
>>I found this somewhat related article. Well, no it is not the same. This one seems to deal with an error when setting the SRC attribute by Javascript, which is not what I'm doing. Whet I have is a page like "myPage.cfm" which has an >Article does not mention it, but I believe the (with whic

Re: Weird problem with IFRAME

2012-12-18 Thread Byron Mann
I found this somewhat related article. http://stackoverflow.com/questions/11935458/ie9-bug-iframe-misbehaving-due-to-url-sensitivity Article does not mention it, but I believe the (with whichever IE mode you wind up with) has to be the first meta tag and must be in the . Bit more on X-UA-Comp

Re: Weird problem with IFRAME

2012-12-14 Thread Claude Schnéegans
>> it looks like you need a space between mondossier.cfm and type=#type# No, type here is a parameter in the url, not an attribute for http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353

Re: Weird problem with IFRAME

2012-12-14 Thread Maureen
If this is exact code, it looks like you need a space between mondossier.cfm and type=#type# On Thu, Dec 13, 2012 at 2:13 PM, <> wrote: > > Hi, > One of my customers is having a very weird problem with an IFRAME in my > site. > Here is the code in file mondossier.cfm: > FRAMEBORDER="0" >

Re: Weird problem with IFRAME

2012-12-14 Thread Claude Schnéegans
>>Is it possible the IFrame src is getting redirected to the "root" It would be if the file is not found, but the file exists and it works with all other browsers, including IE8. Only IE9 seems to have trouble. And if it was redirectected, there would be a trace of it in the HTTP logs For insta

Re: Weird problem with IFRAME

2012-12-13 Thread Byron Mann
Is it possible the IFrame src is getting redirected to the "root" because the user is not logged in? On Thu, Dec 13, 2012 at 4:14 PM, <> wrote: > > >>Try ./file.cfm > > Ok, I tried, but it makes no difference. > > > ~| Order

Re: Weird problem with IFRAME

2012-12-13 Thread Claude Schnéegans
>>Try ./file.cfm Ok, I tried, but it makes no difference. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/gr

Re: Weird problem with IFRAME

2012-12-13 Thread Byron Mann
Think I ran into this before with relative paths without '/' Try ./file.cfm Byron Mann Lead Engineer & Architect HostMySite.com On Dec 13, 2012 2:14 PM, <> wrote: > > Hi, > One of my customers is having a very weird problem with an IFRAME in my > site. > Here is the code in file mondossier.cfm:

RE: Weird problem logging in with IE 5.5

2005-05-10 Thread Andy Mcshane
Excellent, glad to be of help. From: Stuart Kidd [mailto:[EMAIL PROTECTED] Sent: Mon 09/05/2005 23:05 To: CF-Talk Subject: Re: Weird problem logging in with IE 5.5 Hi Andy, Thanks, that seemed to be the problem! :) On 9/5/05 13:47, "Andy Mcshane&quo

Re: Weird problem logging in with IE 5.5

2005-05-09 Thread Stuart Kidd
Hi Andy, Thanks, that seemed to be the problem! :) On 9/5/05 13:47, "Andy Mcshane" <[EMAIL PROTECTED]> wrote: > Could it possibly be to do with cookies? Do they have their browser setup to > allow cookies? > > > > From: Stuart Kidd [mailto:[EMAIL PROTECTED] >

RE: Weird problem logging in with IE 5.5

2005-05-09 Thread Andy Mcshane
Could it possibly be to do with cookies? Do they have their browser setup to allow cookies? From: Stuart Kidd [mailto:[EMAIL PROTECTED] Sent: Mon 09/05/2005 13:38 To: CF-Talk Subject: Weird problem logging in with IE 5.5 Hi guys, For some time now users have

Re: Weird problem with CFLOGIN and Session variables

2005-05-04 Thread Jared Rypka-Hauer - CMG, LLC
Good news on the solving part... sometimes that's all one really wishes to achieve. I'll let you know if I find anything on my end... J On 5/4/05, Fabio Terracini <[EMAIL PROTECTED]> wrote: > > I rewrited all the code and I'm not using cflogin structure anymore > (with j_username and j_passwor

Re: Weird problem with CFLOGIN and Session variables

2005-05-04 Thread Fabio Terracini
I rewrited all the code and I'm not using cflogin structure anymore (with j_username and j_password). Also, I deleted all classes in cfclass directory and have a before the cflogin block. We're running some tests, but I believe it's "solved" by now, although the specific bug wans't discov

Re: Weird problem with CFLOGIN and Session variables

2005-05-04 Thread Fabio Terracini
Thanks Jared. I also tried your modifications in cflogin block, but didn't work. The sessions seems to be working fine. I still think it's something with cflogin tag, and it's totally ridiculous to lost time with such a simple tag. Oh my... I'm almost changing the login architecture, dismissin

Re: Weird problem with CFLOGIN and Session variables

2005-05-04 Thread Jared Rypka-Hauer - CMG, LLC
Fabio, I suggest you give onSessionEnd a try... if for no other reason that to write a few log file entries. Maybe not permanently, but at least while troubleshooting. I think that what's happening is this: while J2EE sessions promise some nice things, they're not quite working correctly. :) W

Re: Weird problem with CFLOGIN and Session variables

2005-05-04 Thread Fabio Terracini
Really odd! Jared, I'm not using onSessionStart, neither onSessionEnd. The Application.cfc only contains the application variables (this.name, etc) and onRequestStart method, which includes the cflogin block. Should I use onSessionEnd? When the browser close, both login and sessions are ended

Re: Weird problem with CFLOGIN and Session variables

2005-05-04 Thread Fabio Terracini
Oh yeah. The cflogin block follows:

Re: Weird problem with CFLOGIN and Session variables

2005-05-04 Thread Fabio Terracini
Oh yeah. The cflogin block follows: al

Re: Weird problem with CFLOGIN and Session variables

2005-05-04 Thread Jared Rypka-Hauer - CMG, LLC
Ooops, missed a part of the message from Fabio... yeah, it's a bit odd. Fabio, are you using onSessionStart and onSessionEnd events to control your sessions? Really, what you should be doing is using onSessionEnd to clean up your session when it times out instead of detecting problems later and

Re: Weird problem with CFLOGIN and Session variables

2005-05-04 Thread Jared Rypka-Hauer - CMG, LLC
All you're going to need is something like this: In your logout page, run the cflogout tag, which does not error if there is no user logged in... and then something like this: Now that's example code, and not really customized for CFC use... I generally start using page-scope code an

RE: Weird problem with CFLOGIN and Session variables

2005-05-04 Thread James Holmes
You might have to post the contents of the cflogin block, as this is very weird. ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or w

RE: Weird problem

2005-04-12 Thread Matt Osbun
Had that problem shortly after installing CF7. Since our CF7 server is development only at the moment, I reduced the page cache in the administrator to 0 and restarted the service. That may not be the best solution if that will affect production sites, though. Unless you're the BWMFH (Bastard We

Re: Weird problem

2005-04-12 Thread Dave Francis
Cache? - Original Message - From: "simmyana a" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Tuesday, April 12, 2005 2:13 AM Subject: Weird problem > Hi, > I am facing a strange problem in CF, one of my CFM files is missing from > the server(if I set show hidden files property also, It is n

RE: Weird problem

2005-04-12 Thread Rick Faircloth
> I am facing a strange problem in CF Sorry, can't help you...we never have those around here. :o) Rick > -Original Message- > From: simmyana a [mailto:[EMAIL PROTECTED] > Sent: Tuesday, April 12, 2005 2:13 AM > To: CF-Talk > Subject: Weird problem > > > Hi, > I am facing

RE: Weird Problem with Structure

2005-02-12 Thread Phillip B. Holmes
Pardon the typo: sed 's/unneccesary/unnecessary/' ;) Regards, Phillip B. Holmes -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Saturday, February 12, 2005 3:41 PM To: CF-Talk Subject: RE: Weird Problem with Structure > I had an interesting thi

RE: Weird Problem with Structure

2005-02-12 Thread Phillip B. Holmes
--Original Message- From: Jared Rypka-Hauer - CMG, LLC [mailto:[EMAIL PROTECTED] Sent: Saturday, February 12, 2005 2:29 PM To: CF-Talk Subject: Re: Weird Problem with Structure Dave, I had an interesting thing happen the other day. I was messing around with something, trying to find a way aroun

RE: Weird Problem with Structure

2005-02-12 Thread Dave Watts
> I had an interesting thing happen the other day. I was > messing around with something, trying to find a way around a > particular problem, and I used this code... fully expecting > it to error out: > > > > > > > Now, had I put myTest["#i#"], I would have expected it to > work. Wh

Re: Weird Problem with Structure

2005-02-12 Thread Jared Rypka-Hauer - CMG, LLC
Dave, I had an interesting thing happen the other day. I was messing around with something, trying to find a way around a particular problem, and I used this code... fully expecting it to error out: Now, had I put myTest["#i#"], I would have expected it to work. What I ended up with whe

RE: Weird Problem with Structure

2005-02-11 Thread Dave Watts
> I have a structure "lines" > > when I dump that it shows me structure under structure. > > when I dump "lines.2" it also shows me the other elements > inside that structure. > like > > struct > ADDRESS ABC BLVD > CITY Toronto > COMPANY ABC Company > COUNTRY CANADA > FNAME My Firstname >

Re: Weird Problem

2004-09-10 Thread Russell Patterson
  Sent: Friday, September 10, 2004 5:31 PM   Subject: RE: Weird Problem   Nope. nothing has changed since 3 days ago when I made a successful update   to the same site and today when it won't display changes. Everyone else went   home with no concerns. so I guess I'll call

RE: Weird Problem

2004-09-10 Thread Ewok
, 2004 6:21 PM To: CF-Talk Subject: Re: Weird Problem >>Could the server possibly be caching and entire page? Or some proxy you are going through? -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please se

Re: Weird Problem

2004-09-10 Thread Claude Schneegans
>>Could the server possibly be caching and entire page? Or some proxy you are going through? -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL PROTECTED]) Thanks. [Tod

Re: Weird Problem

2004-09-10 Thread joe velez
hmmm - i dunno, reboot :)  .. check the web server's path to your files and make sure you put the files in the right place. are you sure you overwrite the files? check the date modified pretty strange [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Don

RE: Weird Problem

2004-09-10 Thread Ewok
It’s our server and has never done this before. It hasn’t been “setup” to cache our dynamic pages. Any other suggestions?    _   From: joe velez [mailto:[EMAIL PROTECTED] Sent: Friday, September 10, 2004 5:39 PM To: CF-Talk Subject: Re: Weird Problem yes the server can cache files .. talk

Re: Weird Problem

2004-09-10 Thread joe velez
yes the server can cache files .. talk to your host to see if this is the case [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: Weird problem with Next X records

2004-05-26 Thread Pascal Peters
Very hard to answer without code. For your second problem: your next-n is working on individual records, not groups, so it works as intended. Show first three (3 ben), then next three (1 ben, 2 john). You will have to find an alternative to make the next-n work on accounts. You could make 2 queries

RE: Weird problem with CFEXECUTE not releasing file

2002-06-27 Thread Shawn McKee
Anybody have a Linux version of this? Shawn McKee -Original Message- From: Lewis Sellers [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 27, 2002 3:07 PM To: CF-Talk Subject: Re: Weird problem with CFEXECUTE not releasing file On Thu, 27 Jun 2002 08:47:14 -0400, in cf-talk you wrote

Re: Weird problem with CFEXECUTE not releasing file

2002-06-27 Thread Lewis Sellers
On Thu, 27 Jun 2002 08:47:14 -0400, in cf-talk you wrote: >> FYI. There's also it's successor, CFX_Execute. Which I also wrote. >> It's "more like CFEXECUTE, except for the bugs". :) > >I was unable to find CFX_Execute on the MM developer exchange... could you >email me a copy off list at [EMAIL

Re: Weird problem with CFEXECUTE not releasing file

2002-06-27 Thread Seth Petry-Johnson
> FYI. There's also it's successor, CFX_Execute. Which I also wrote. > It's "more like CFEXECUTE, except for the bugs". :) I was unable to find CFX_Execute on the MM developer exchange... could you email me a copy off list at [EMAIL PROTECTED] or even just send me a link that I can download from?

Re: Weird problem with CFEXECUTE not releasing file

2002-06-26 Thread Lewis Sellers
On Wed, 26 Jun 2002 17:21:52 -0400, in cf-talk you wrote: >> Are you using the timeout option? If you don't specify one then the file >> will be locked. I have seen this problem when a command takes too long. >I >> just moved on to CFX_consolecommand. > >Yes, I have specified a timeout on the C

Re: Weird problem with CFEXECUTE not releasing file

2002-06-26 Thread Seth Petry-Johnson
> Are you using the timeout option? If you don't specify one then the file > will be locked. I have seen this problem when a command takes too long. I > just moved on to CFX_consolecommand. Yes, I have specified a timeout on the CFEXECUTE call. Still, the weird thing is that it isn't UNTIL my

Re: Weird problem with CFEXECUTE not releasing file

2002-06-26 Thread Neil H.
Are you using the timeout option? If you don't specify one then the file will be locked. I have seen this problem when a command takes too long. I just moved on to CFX_consolecommand. Neil - Original Message - From: "Seth Petry-Johnson" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTEC

RE: Weird Problem with CF-Admin

2002-06-12 Thread Chris Norloff
Original Message- >From: Critz [mailto:[EMAIL PROTECTED]] >Sent: Monday, June 10, 2002 12:19 PM >To: CF-Talk >Subject: Re: Weird Problem with CF-Admin > > >oi James!! > >we ran into that problem ages ago running cf on solaris. I don't think we >ever >

RE: Weird Problem with CF-Admin

2002-06-10 Thread James Taavon
um... ok. not the solution i was looking for, but an interesting one to say the least. -Original Message- From: Critz [mailto:[EMAIL PROTECTED]] Sent: Monday, June 10, 2002 12:19 PM To: CF-Talk Subject: Re: Weird Problem with CF-Admin oi James!! we ran into that problem ages ago

Re: Weird Problem with CF-Admin

2002-06-10 Thread Critz
oi James!! we ran into that problem ages ago running cf on solaris. I don't think we ever sorted the problem, except that we canned solaris and went back to win2k. *poof* no more problem -- Critz Certified Adv. ColdFusion Developer Crit[s2k] - Monday, J

Re: Weird problem with CF-Talk on newsgroups

2001-12-06 Thread Jamie Jackson
Dimo asked privately how to post to the group via a newsreader. Steps: 1. Subscribe to the digest version of cf-talk, and have your email client filter those digest emails straight to the trash can. 2. Use fuseware.com as your news server. 3. Your news reader should support "reply by email" and "

Re: Weird problem with CF-Talk on newsgroups

2001-12-06 Thread Jamie Jackson
Works perfectly on Forte Agent (where I'm writing from now). I can't imagine trying to sort out all these posts in an email client. Jamie On Thu, 06 Dec 2001 11:04:33 -0500, in cf-talk you wrote: >Has anyne tried to use the news.fuseware.com newsserver to access >CF-Talk. I have been reading

RE: Weird problem with CF-Talk on newsgroups

2001-12-06 Thread Shawn Grover
I would guess that it's a Netscape issue. I recall that trying to get the page modified date from CGI variables would work fine in IE, but Netscape interpreted the info a little differently and gave dates similar to what you are seeing. Of course, I could be wrong and it could be a different iss

RE: Weird problem with CF-Talk on newsgroups

2001-12-06 Thread Smith, Daron [PA]
I can't even get to it from Outlook Express -Original Message- From: Dimo Michailov [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 06, 2001 11:05 AM To: CF-Talk Subject: Weird problem with CF-Talk on newsgroups Has anyne tried to use the news.fuseware.com newsserver to access CF-T

RE: Weird problem setting client variable

2001-06-11 Thread Perez, Bismark
so, even if a redirect the page right after the and don't care about the client var until the next page the var won't be set because of the re-direct? -Original Message- From: Nick Betts [mailto:[EMAIL PROTECTED]] Sent: Monday, June 11, 2001 11:44 AM To: CF-Talk Subject:

RE: Weird problem setting client variable

2001-06-11 Thread Jason Santerre
** i didn't send this to you.. sorry the reply u sent went to the wrong person. ** At 04:44 PM 6/11/2001, you wrote: >I would imagine its because you cannot use CFLOCATIO

RE: Weird problem setting client variable

2001-06-11 Thread Nick Betts
I would imagine its because you cannot use CFLOCATION and set cookies in the same template. The cookie (client var) is only set AFTER the whole page has been processed. This may be the problem. Nick Betts. -Original Message- From: Perez, Bismark [mailto:[EMAIL PROTECTED]] Sent: 11 June 2

RE: Weird problem setting client variable

2001-06-11 Thread Chris Jenkins
Try to avoid having the redirect on the same page your are setting the client variable. -Original Message- From: Perez, Bismark [mailto:[EMAIL PROTECTED]] Sent: Monday, June 11, 2001 8:03 AM To: CF-Talk Subject: Weird problem setting client variable I have the weirdest problem setting a

RE: Weird problem setting client variable

2001-06-11 Thread Craig Dudley
If you're storing client variables in cookies the cflocation will break them always. Change client variable storage to a datasource, use another way of re-locating or use a locked session variable would be my suggestions. HTH, Craig -Original Message- From: Perez, Bismark [mailto:[EMAI

Re: Weird Problem - Additional Info

2001-01-30 Thread Billy Cravens
That's because html uses quotation marks as delimiters.. try escaping it somehow .. perhaps #htmlcodeformat(mystring)# -- Billy Cravens HR Web Development, Sabre [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: > > In addition, if I put single quotes in, it works just fine. > > Any info would be

Re: Weird Problem

2001-01-30 Thread Mary_Baotic
gt; cc: Subject: Re: Weird Problem 01/30/01 09:46 AM

RE: Weird Problem - Additional Info

2001-01-30 Thread Philip Arnold - ASP
> I am having the strangest problem... > > I have a varchar field in a SQL database. It contains the following text: > this is a "quoted title" to view > > When I go to display in a form (using either cfinput or input) everything > after the first quote is cut off in the text box. But if I displ

RE: Weird Problem - Additional Info

2001-01-30 Thread Cornillon, Matthieu
Mary, If I understand correctly, your code looks roughly like this: SELECT VarCharField FROM blah blah blah blah blah blah So, your field value: this is a "quoted title" to view is plugged in, so that the VALUE parame

RE: Weird Problem

2001-01-30 Thread Steve Martin
Mary, The quote is closing the quote in the form thus rendering it invisible. > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: 30 January 2001 12:37 > To: CF-Talk > Subject: Weird Problem > > > I am having the strangest problem... > > I have a varchar fie

RE: Weird Problem

2001-01-30 Thread Lord, Heath
Use HTMLEditFormat() around the variable you are outputting. Heath -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 30, 2001 7:37 AM To: CF-Talk Subject: Weird Problem I am having the strangest problem... I have a varchar field in a SQL datab

RE: Weird Problem - Additional Info

2001-01-30 Thread Milks, Jim
Sure. Your tag thinks it has reached the end of the VALUE parameter when it encounters the double quote contained in the string. Use Single quotes in your tag, and it will work just fine...until you put single quotes in your string... -Original Message- From: [EMAIL PROTECTED] [mailto:[EM

RE: Weird Problem - Additional Info

2001-01-30 Thread Dylan Bromby
if you're using the VALUE attribute with double quotes, and the value of the VALUE attribute has double quotes in it, that might be the problem. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 30, 2001 4:42 AM To: CF-Talk Subject: Weird Problem

Re: Weird Problem

2001-01-30 Thread Chris Sham
Note what you are doing. In essence you are saying 'INPUT TYPE="TEXT" VALUE="this is a "quoted title" to view"> See the error. If you use HTMLEditFormat you will be fine. For example, 'INPUT TYPE="TEXT" VALUE="#HTMLEditFormat(myVar)#"> Chris - Original Message - From: <[EMAIL PROTEC

RE: weird problem

2000-08-26 Thread Andrew Scott
-Original Message- From: AustralianAccommodation.com Pty. Ltd. [mailto:[EMAIL PROTECTED]] Sent: Sunday, 27 August 2000 4:26 AM To: [EMAIL PROTECTED] Subject: Re: weird problem ummm can I have that in English please - Original Message - From: "Andrew

Re: weird problem

2000-08-26 Thread AustralianAccommodation.com Pty. Ltd.
ummm can I have that in English please - Original Message - From: "Andrew Scott" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, August 27, 2000 4:31 AM Subject: RE: weird problem | Simple before doing the cfset check the value of quantity, if its nul

RE: weird problem

2000-08-26 Thread Andrew Scott
Simple before doing the cfset check the value of quantity, if its null then put a zero in the array intead of throwing the returned value from the query:-) -Original Message- From: S R [mailto:[EMAIL PROTECTED]] Sent: Friday, 25 August 2000 2:54 AM To: [EMAIL PROTECTED] Subject: weird pr

RE: weird problem

2000-08-24 Thread CHowarth
My guess is that ArraySum() is overflowing. Why don't you do the sum in SQL, like this: SELECT SUM(Quantity) FROM TestTable WHERE State = NULL This will return one row with a sum of all quantities where State is NULL. It should be faster too, as you are pushing the work to SQL Server. -O

RE: weird problem

2000-08-24 Thread Dan Haley
You'll need to decide what you want to do with rows in the database that have a null quantity. You have two choices . . . assign them a value in the select statement or ignore rows with quantity = null. In Oracle option 1 would be: select nvl(quantity, 0) quantity <<-- assigns a value

RE: weird problem

2000-08-24 Thread Dave Watts
> I have a simple table with 4 fields (Quantity, ID, State, > FirstName). When I run this query: > > > SELECT Quantity, ID FROM TestTable > WHERE State = NULL > > > and try to do this array and output: > > > > > > > > #ArraySum(QuantityTotal)# > > > I get a value that loo

Re: weird problem

2000-08-24 Thread John Quarto-vonTivadar
since you're calculating a total why not just let SQL do it for you? SELECT Sum(Quantity) FROM TestTable WHERE State IS NULL (also notice that Null is not the same thing as zero, so using an equal sign in context with a NULL has a "null" meaning :) (sorry for the pun) - Original Message --