C8 + Vista Ultimate 64bit - Can't Install

2009-02-25 Thread Adrian Wagner
Hi all, I give up. I need some help here. I'm trying to install the Developer Edition of CF 8 (64 bit edition) on my Vista Ultimate 64 bit laptop. Here the environment CF 8.01 Win 64 JVM 6.12 Dell XPS M1530, 6 GB RAM, Windows Ultimate 64-bit OS When I run the exe file (as Administrator), the

Re: C8 + Vista Ultimate 64bit - Can't Install

2009-02-25 Thread Adrian Wagner
Typical. When you send out a help request, you get to solve the problem yourself. The issue was as follows: I deleted a default folder, when I set up the folder structure to my liking. Problem was, that this folder was coded into the Windows registry. I changed the path in the registry to an

Re: Creating a variable to store information on the fly

2009-02-25 Thread Fawzi Amadu
When I try with this the coding style you gave me, I get the following error: The form field SESSION.consumerProductExtraImg.Img1 did not contain a file. The error occurred in C:\ColdFusion8\wwwroot\e-Ghana\process_UpLoadExtraConsumerProductImages.cfm: line 26 24 :

Re: Creating a variable to store information on the fly

2009-02-25 Thread Fawzi Amadu
This method also seems to create the session variable, but assignment fails. The error is: The form field SESSION.consumerProductExtraImg.Img1 did not contain a file. The error occurred in C:\ColdFusion8\wwwroot\e-G try this: cfset SESSION.consumerProductExtraImg[Img i] = filename Fawzi

ajax and special characters

2009-02-25 Thread Richard White
hi we are developing an Ajax based system using JavaScript and Coldfusion. we have only just started to realise the need for escaping / encoding special characters. how do you guys deal with this, e.g: 1) how do we deal with the special characters in JavaScript to ensure that Coldfusion

Re: ajax and special characters

2009-02-25 Thread Cutter (CFRelated)
If, when making your Ajax calls, you pass the returnFormat = JSON attribute to your CFC method, then CF will automatically encode the result when creating the JSON output. When passing a JSON value to ColdFusion, inside your CFC method you can use the DeserializeJson() method to decode the

Fwd: Long Text Buffer (chr) question...

2009-02-25 Thread Scott Stewart
Hey all, this was sent to me by one of the other developers in our group... Can anyone address this? Thanks sas Original Message Subject:Long Text Buffer (chr) question... Date: Wed, 25 Feb 2009 10:04:23 -0500 From: Brian Horkey To: Scott Stewart Hi Scott,

js validation

2009-02-25 Thread Priya Koya
how to pull 2 fiels from database when you enter account number in edit form which is already entered into database by other. Thanks in advance ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to

RE: js validation

2009-02-25 Thread Adrian Lynch
Take a look at jQuery. $(function() { $(selector for your input).blur(function() { $.post(check-exists.cfm, {theFormField: $(this.val()), function(data) { alert(data); // See what the response was and act accordingly

Bind question on cfselect

2009-02-25 Thread Paul Ihrig
Hey guys i have a text field that i display if 'other' is selected in a cfselect visible={product_present.selectedItem.data == '10'} but this only works if 'other' is the only selection or if 'other' is the last thing selected. i basically need a Contains or IN operator instead of the == any

RE: ajax and special characters

2009-02-25 Thread Andy Matthews
In addition to Cutter's points about JSON encoding, look into the URLEncodedFormat and URLDecode. -Original Message- From: Cutter (CFRelated) [mailto:cold.fus...@cutterscrossing.com] Sent: Wednesday, February 25, 2009 8:34 AM To: cf-talk Subject: Re: ajax and special characters If,

Re: Bind question on cfselect

2009-02-25 Thread Paul Ihrig
this work for multiple with 10 selected! (product_present.selectedItems[1].data == '10' so how do i do the OR visible={product_present.selectedItem.data == '10' OR product_present.selectedItems[1].data == '10'} On Wed, Feb 25, 2009 at 11:34 AM, Paul Ihrig pih...@gmail.com wrote: Hey guys

HTML possibly CSS weirdness.

2009-02-25 Thread Ian Skinner
Ok all my CFML is working just fine. I am building a table but I have two views of it. One view is optimized for the screen and the other for printing. I am using basic css media = screen|print functionality to indicate which is which. The weirdness I am experiencing is that my large,

Error: FIle Not Found

2009-02-25 Thread Priya Koya
Hi All, I am using COldFusion8 and trying to execute the file but error: File not found: /File1.cfm My project is in path: C:\Inetpub\Project_Folder\somefile.cfm I have created a .cfm page in the path: C:\Inetpub\Project_Folder\folder1\File1.cfm. Any Suggestions?

Re: (sot) CF and Section 508 compliance a 508 compliant date/time picker

2009-02-25 Thread Gerald Guido
Thank you Sandra for the tute. Good stuff. I would also like thank everyone for their assistance. I have a good handle on things. I was a bit confused by the JS aspect. The language in the actual specs is a bit hazy. Again, thanx! G! On Fri, Feb 20, 2009 at 7:43 PM, Sandra Clark

RE: HTML possibly CSS weirdness.

2009-02-25 Thread Robert Harrison
Definitely a CSS issue. I'm assuming you are using the print/screen @mediatype correctly. In your @print CSS you can try adding: H1 {page-break-after: avoid;} table {page-break-before: avoid;} That may help. If not, I'd be happy to take a quick look at the CSS to see if any sticks out. Hope

Client IP changes on SSL- tricks load balancer

2009-02-25 Thread brad
OK, I'm having troubles with session management on one of my sites which is mostly in HTTP but switches over to HTTPS when the user checks out and enters their credit card info, etc. What is happening is that occasionally people will get the your session expired message at the point that they

Re: HTML possibly CSS weirdness.

2009-02-25 Thread Ian Skinner
Robert Harrison wrote: Definitely a CSS issue. I'm assuming you are using the print/screen @mediatype correctly. In your @print CSS you can try adding: H1 {page-break-after: avoid;} table {page-break-before: avoid;} That may help. If not, I'd be happy to take a quick look at the CSS to

RE: Client IP changes on SSL- tricks load balancer

2009-02-25 Thread Mark Kruger
Are you sure something else is not going on dealing with domain cookies? If I come into a site as http://example.com and browse around - getting sesssionID in the process and tied to a cookie, then I hit a URL http://www.example.com That's a different domain Unless you are hitting the

How can I find my session variables from an asynchronous post?

2009-02-25 Thread John Pullam
I am using PayPal and it will be posting me asynchronously to confirm payment, so I don't think I will have direct access to my session variables. I would like to do something to use them from server memory rather than having to create a temporary file and pass its record id around. Is there

Re: Error: FIle Not Found

2009-02-25 Thread Cutter (CFRelated)
/File1.cfm must be located in your site root, so Project_Folder must be defined as the site root. What does the line of code say that is throwing the File not found error? It may be that the function you are calling requires a file system path. Steve Cutter Blades Adobe Certified

RE: Client IP changes on SSL- tricks load balancer

2009-02-25 Thread brad
That's a good question Mark. We are not using domain cookies, but I can confirm that all the requests in question are hitting the same domain. I can also confirm that the loss of session is a direct result of the load balancer moving them from one server to another where their session no longer

Re: CFPDF import vector graphcis

2009-02-25 Thread Mike Chabot
Thanks for the update. Are you using EPS for the vector graphics? Are the results what you would expect from using vector graphics, such as a smaller file size and higher quality graphics when printing? I am curious about the details regarding dropping EPS support from the PDF spec and the

Re: Error: FIle Not Found

2009-02-25 Thread Priya Koya
This is what the error I get: File not found: /FIle1.cfm Resources: - Check the ColdFusion documentationhttp://www.macromedia.com/go/proddoc_getdocto verify that you are using the correct syntax. - Search the Knowledge Basehttp://www.macromedia.com/support/coldfusion/to find a

Re: Error: FIle Not Found

2009-02-25 Thread Cutter (CFRelated)
Priya, This still doesn't show us the line of code calling that file. This would determine the type of path you require. A cffile tag, for instance, would require a system path to the resource (c:\Inetpub\etc), whereas the cfinclude tag would require something like a relative path

Re: Bind question on cfselect

2009-02-25 Thread Paul Ihrig
think i got is visible={(product_present.selectedItem.data == '10') || (product_present.selectedItems[1].data == '10')} ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: Client IP changes on SSL- tricks load balancer

2009-02-25 Thread Chris Kelly
It is possible that the user has a different proxy for http than for https - this would possibly give you a different IP for http vs https. There are not many really good reasons to do that, so it's somewhat unlikely, but possible. That's a good question Mark. We are not using domain cookies,

Re: Client IP changes on SSL- tricks load balancer

2009-02-25 Thread Chris Kelly
It is possible that the user has a different proxy for http than for https - this would possibly give you a different IP for http vs https. There are not many really good reasons to do that, so it's somewhat unlikely, but possible. That's a good question Mark. We are not using domain

Beginning Flex

2009-02-25 Thread Jen Perkins
I'm just starting with Flex and I'm totally discombobulated. I've been doing ColdFusion for about 10 years, using Homesite, then CF Studio, and now Dreamweaver to develop stuff on remote servers (I work from home). Now I'm trying to get started with Flex and I'm completely confused as to how

Re: Beginning Flex

2009-02-25 Thread Dave Watts
I'm just starting with Flex and I'm totally discombobulated.  I've been doing ColdFusion for about 10 years, using Homesite, then CF Studio, and now Dreamweaver to develop stuff on remote servers (I work from home).  Now I'm trying to get started with Flex and I'm completely confused as to

Re: Beginning Flex

2009-02-25 Thread Gerald Guido
I'm just.lost. Can y'all pretend I am a total idiot explain this to me with very small words, pretty please? Can do ;) get started with Flex I would HIGHLY recommend the Lynda.com Flex 3 Essential Training and Beyond the Basics (BTB) series.

Re: Client IP changes on SSL- tricks load balancer

2009-02-25 Thread Dave Watts
1) Can anyone confirm seeing the behavior of changing IP addresses over SSL? I haven't seen this with SSL specifically, but there's nothing special about SSL in this case - just like HTTP, HTTPS is stateless. 3) Aren't cookies encrypted over SSL anyway-- so how would my load balancer even

Re: Beginning Flex

2009-02-25 Thread Brian Kotek
I'll second Linda, the library there is HUGE and the content is quite good. As Gerald said, for $25 you really can't beat that, even if you only go through one track a month. On Wed, Feb 25, 2009 at 2:43 PM, Gerald Guido gerald.gu...@gmail.comwrote: I'm just.lost. Can y'all pretend I am a

Re: Beginning Flex

2009-02-25 Thread Alan Rother
I'm with Dave and Gerald... As a Lifelong CF developer moving into Flex was extremely odd. Lynda.com has EXCELLENT training videos, but alot of your questions aren't really going to be answered there. I would recommend either paid instructor led training or joining your local Flex/Flash/Adobe

Re: Client IP changes on SSL- tricks load balancer

2009-02-25 Thread Jason Fisher
In a hardware load-balanced environment, I have always used Client vars rather than Session. (Just make sure you store them in the DB, not in the Registry.) Basically, the Client vars are a contract between the browser and the application, whereas Session vars are a contract between the

question about CF admin

2009-02-25 Thread Mike Soultanian
I was curious where all the CF admin settings are stored. Are they stored in the CFIDE folder or are they stored in the Coldfusion8 folder. I could swear I moved my CFIDE folder to a new CF server and it inherited the settings, but when I moved it a second time (rebuild the new CF server),

RE: question about CF admin

2009-02-25 Thread Mark Kruger
In CF 5 or lower settings were in the registry. As of CFMX (version 6.x and higher) most settings are in /cfusion8/lib/ stored in XML files. Keep in mind that a few things you might need are in the jrun.xml file and the jvm.config file. -mark Mark A. Kruger, CFG, MCSE (402) 408-3733 ext 105

RE: Client IP changes on SSL- tricks load balancer

2009-02-25 Thread brad
Chris, that is my assumption of what is happening. Either that or their network has two gateways-- one for secure, and one for non-secure. Of course, the looming question is why it tricks my load balancer. ~Brad Original Message Subject: Re: Client IP changes on SSL- tricks

Re: question about CF admin

2009-02-25 Thread Mike Soultanian
Cool. Thanks for the info! MIke Mark Kruger wrote: In CF 5 or lower settings were in the registry. As of CFMX (version 6.x and higher) most settings are in /cfusion8/lib/ stored in XML files. Keep in mind that a few things you might need are in the jrun.xml file and the jvm.config file.

(ot) api to iLinc

2009-02-25 Thread Don L
Sorry for the ot, I'm wondering if anyone has done anything with api to iLinc. the iLinc site has none of that. Thanks. Don Chunshen Li ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date

Re: Client IP changes on SSL- tricks load balancer

2009-02-25 Thread Shannon Peevey
O On Wed, Feb 25, 2009 at 2:09 PM, Jason Fisher ja...@wanax.com wrote: In a hardware load-balanced environment, I have always used Client vars rather than Session. (Just make sure you store them in the DB, not in the Registry.) Basically, the Client vars are a contract between the browser

RE: Client IP changes on SSL- tricks load balancer

2009-02-25 Thread brad
Thanks for the info Dave. I didn't know the bit about load balancers hosting the certs. I'll have to ask our hosting company about the specific set up of our balancer. From my research, it seems that load balancers can use one (or more?) of the following methods to to determine which server

RE: Client IP changes on SSL- tricks load balancer

2009-02-25 Thread brad
You are correct that session data cannot be replicated between stand-alone installs of ColdFusion. You are also correct in your assessment of why my user's sessions seem to disappear when they switch servers. Unfortunately, I know what is happening. What I don't know is how to prevent it.

RE: Client IP changes on SSL- tricks load balancer

2009-02-25 Thread brad
Jason, I do see how switching to client vars stored in the database would allow for my users to switch servers seamlessly. We are persisting quite a number of components in session and it's not an option at this point to begin marshaling the entire shopping cart and user information into a

cfloop form fields

2009-02-25 Thread j s
I want to loop form fields without using collection=#form# or list because I want to specify which fields to loop over and not the complete form. This is the syntax: cfoutput cfloop from=1 to=7 index=i cfset F_Name#i# =#Form.L_Name[i]# #F_Name[i]#

Re: How can I find my session variables from an asynchronous post?

2009-02-25 Thread Tony Bentley
On the post back you can get them ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f Archive:

Access DB without datasource

2009-02-25 Thread Jake Churchill
I have a friend (yes really) who is working on a project that requires him to have an access database but he does not have access to the CF Administrator so he is wondering if there is a way around this. The only thing I could come up with is to attempt to either run the query with java or

Re: Client IP changes on SSL- tricks load balancer

2009-02-25 Thread Jason Fisher
@Brad, I totally understand that issue of having large / complex session blocks and facing the potential of deep re-work. One thought in that vein, especially thinking forward to the potential performance shocks of running large sessions in memory: you may want to consider pushing more to

Tough SQL relationship

2009-02-25 Thread Ian Skinner
I have a tough nut to crack of a SQL report. First off, this is against a Oracle 11ge database if that matters. I have two tables. Table A use_no (key) county rec_type 1 1 X 3 1 X 4 1 Y 5 2

Re: How can I find my session variables from an asynchronous post?

2009-02-25 Thread John Pullam
On the post back you can get them ? How ?? Maybe I'm missing something but it was my understanding that the POST would not think it is running my application so it would not have the variables. ~| Adobe®

Re: cfloop form fields

2009-02-25 Thread Jason Fisher
Try this: cfoutput cfloop from=1 to=7 index=i cfset variables[F_Name#i#] = Form[L_Name i] #variables[F_Name#i#]# br / /cfloop /cfoutput I think that's what you're looking for. I used variables scope simply to more easily use the struct

RE: Access DB without datasource

2009-02-25 Thread Mark Kruger
Jake, He may be able to use this approach. http://www.coldfusionmuse.com/index.cfm/2005/6/3/dsn_cfmx Basically it uses ANY Access DSN that is previously set up as a proxy. So you set up just one in the DSN and it serves as a proxy for any access files you wish to put on the server. FYI (I

RE: Client IP changes on SSL- tricks load balancer

2009-02-25 Thread brad
Thanks for the notes. I've actually wondered what the overhead of serializing and de-serializing things for storage in client (or some other database solution) is. As well as the the possible performance implications of the amount of read and write activity that database table would be

Re: CFHTTP and SSL v3

2009-02-25 Thread Amit Talwar
I had read it in several blog postings but nothing definitive from Adobe. I've done some more checking and it appears you are right about it working for CF7. Now if only the authorize.net test site was up to date I could test my apps. Cheers Mike Michael, I had about

RE: Beginning Flex

2009-02-25 Thread Will Swain
Before shelling out for lynda check out the Flex in a week videos: http://www.adobe.com/devnet/flex/videotraining/ And the adobe tv videos: http://tv.adobe.com/#pd+Flex The lynda training does seem to be very good, and it's probably still worth paying for, but I'd suggest running through those

Re: Client IP changes on SSL- tricks load balancer

2009-02-25 Thread Maureen Barger
Can we back up a little, just for fun? :) Can you talk a little bit about how your app is set up? Here is my take on your description: Your loadbalancer hosts your service name, www.bradsapp.com and it routes traffic to www1.bradsapp.com www2.bradsapp.com and www3.bradsapp.com. The LB is

RE: CFHTTP and SSL v3

2009-02-25 Thread Mark Kruger
Hmmm Very interesting... CF 5 uses an ipswitch com or something to make HTTP connections ... Or is it something native to windows through the stack? -Mark Mark A. Kruger, CFG, MCSE (402) 408-3733 ext 105 www.cfwebtools.com www.coldfusionmuse.com www.necfug.com -Original

RE: CFHTTP and SSL v3

2009-02-25 Thread Mark Kruger
All right... I just tested this myself and sure enough, CF 5 handles a TLS1.0 connection on a Windows 2000 box. Mark A. Kruger, CFG, MCSE (402) 408-3733 ext 105 www.cfwebtools.com www.coldfusionmuse.com www.necfug.com -Original Message- From: Mark Kruger

RE: Client IP changes on SSL- tricks load balancer

2009-02-25 Thread brad
Original Message Subject: Re: Client IP changes on SSL- tricks load balancer From: Maureen Barger m...@cornell.edu Your loadbalancer hosts your service name, www.bradsapp.com and it routes traffic to www1.bradsapp.com www2.bradsapp.com and www3.bradsapp.com. Pretty much

Apache Configuration Question.

2009-02-25 Thread Ian Skinner
Is it possible to have the same virtual host block respond to more then one url host header and|or ip:port? Ideally at least one of each. What I'm shooting for here, is we are building a new production box, we don't control our DSN server, another state agancy does and it is a very formal

Re: Apache Configuration Question.

2009-02-25 Thread Barney Boisvert
Yeah, you bet. Just set the list of IP/ports in the VirtualHost directive (space separated), and add necessary ServerAliases: VirtualHost 192.168.100.251:80 192.168.100.252:80 ServerName www.mentor.com ServerAlias mentor.com ServerAlias origin.mentor.com

Re: Tough SQL relationship

2009-02-25 Thread C S
Maybe I need glasses, but I missing something here. The first three report columns look like a count(*) from tableA by use_no and county. What is the tie-in with TableB and the record_with_dups column? county rec_type records record_with_dups 1 X 2 3 1

Re: Apache Configuration Question.

2009-02-25 Thread Ian Skinner
Barney Boisvert wrote: Yeah, you bet. Just set the list of IP/ports in the VirtualHost directive (space separated), and add necessary ServerAliases: VirtualHost 192.168.100.251:80 192.168.100.252:80 ServerName www.mentor.com ServerAlias mentor.com ServerAlias

Re: Tough SQL relationship

2009-02-25 Thread Ian Skinner
C S wrote: Maybe I need glasses, but I missing something here. The first three report columns look like a count(*) from tableA by use_no and county. What is the tie-in with TableB and the record_with_dups column? Yes, that is exactly what the first three columns are; a count of

Re: Apache Configuration Question.

2009-02-25 Thread Barney Boisvert
ServerName sets the name for the server (as you'd expect). There can be only one per server. ServerAlias sets up additional non-canonical names for the server that it will pay attention to. There can be any number per server. You have to have a Listen for every ip/port you want to respond to.

Re: Tough SQL relationship

2009-02-25 Thread Jochem van Dieten
On Thu, Feb 26, 2009 at 12:12 AM, Ian Skinner wrote: Yes, that is exactly what the first three columns are; a count of records grouped by County and then rec_type.  The tie-in with TableB is that this table contains other records that are suspected to be duplicates of records that where put

Re: Tough SQL relationship

2009-02-25 Thread C S
I think something like ((A join B on use_no) join A on county) union A will effectively merge both table so you have all records full complete in the result. Then you can window / partition that for yout record_with_dups column. Jochem I am still wrapping my head around it. But from what I

Re: cfloop form fields

2009-02-25 Thread j s
Yes! That did the trick. Thank you! Try this: cfoutput cfloop from=1 to=7 index=i cfset variables[F_Name#i#] = Form[L_Name i] #variables[F_Name#i#]# br / /cfloop /cfoutput I think that's what you're looking for. I used variables

RE: Beginning Flex

2009-02-25 Thread Jen Perkins
Thanks everyone! I'm running through the Flex in a week videos now (thanks a bunch, Will!) and planning on buying a book or two on Amazon. Unfortunately I don't think in-person training will work at this time (small company, small budget, bad economy...plus, surprisingly few training options in

Coldfusion and windows UNC apache document root question

2009-02-25 Thread Michael Soultanian
Hey Everyone, I moved all of my CF apps over to my file server and adjusted my Apache document roots and aliases over to the file server share via a UNC path (i.e. \\servername\share). I'm running into a problems where I'm getting a missing fusebox.xml error. I'm thinking this is a

Re: Tough SQL relationship

2009-02-25 Thread Jason Fisher
Not sure about what the record_with_dups is exactly supposed to represent, but it looks like you want something along these lines: SELECT a.county, a.rec_type, COUNT(a.use_no) AS records, COUNT(b.dup_set) AS record_with_dups FROM [Table A] AS a LEFT OUTER JOIN [Table B] AS b ON a.use_no =