RE: Can this be done?

2010-04-19 Thread Bobby Hartsfield
) and at least compare the results to that list. -Original Message- From: Matthew Friedman [mailto:m...@hozgroup.com] Sent: Sunday, April 18, 2010 4:43 PM To: cf-talk Subject: Can this be done? We have a site where people are uploading images to our site. We are using cffile upload, checking

Re: Can this be done?

2010-04-19 Thread Christopher Stowell
different in every case I know but just an idea. From: Matthew Friedman m...@hozgroup.com To: cf-talk cf-talk@houseoffusion.com Sent: Sun, April 18, 2010 2:42:42 PM Subject: Can this be done? We have a site where people are uploading images to our site. We are using

RE: Can this be done?

2010-04-19 Thread Rick Faircloth
5:33 PM To: cf-talk Subject: Re: Can this be done? With such a small percentage of images with issues. Could there be issues of the upload itself? I remember in the past alot of the issues I use to run into with images not rendering via the upload usually came back to a bad connection. Tested

RE: Can this be done?

2010-04-19 Thread Andrew Scott
To: cf-talk Subject: Can this be done? We have a site where people are uploading images to our site. We are using cffile upload, checking the sizing resizing them - all is working great but about 2% of the images will sometimes be upload but not able to be displayed on the site - they might be set

RE: Can this be done?

2010-04-19 Thread Rick Faircloth
are there that can be run to verify images? Thanks, Rick -Original Message- From: Andrew Scott [mailto:andr...@andyscott.id.au] Sent: Sunday, April 18, 2010 6:00 PM To: cf-talk Subject: RE: Can this be done? You actually have two problems here. Let's talk about the first problem, as it sounds

Re: Can this be done?

2010-04-19 Thread Dorioo
-Original Message- From: Andrew Scott [mailto:andr...@andyscott.id.au] Sent: Sunday, April 18, 2010 6:00 PM To: cf-talk Subject: RE: Can this be done? You actually have two problems here. Let's talk about the first problem, as it sounds like you are uploading the file directly to the images

Re: Can this be done?

2010-04-19 Thread Ian Skinner
On 4/19/2010 10:33 AM, Rick Faircloth wrote: If appropriate formats are specified in the cffile accept parameter, what risk is there? Some kind of file that fakes its format or has malicious code embedded in it? Yes, that can happen. And concerning your second concern below, I've

Re: Can this be done?

2010-04-19 Thread Matthew Friedman
We were aware of the security issues so we do upload to a temporary location, we then check the sizing of the images and create thumbnails and reduce the size to the correct size. The weird thing is the images that do not work - are images. If we pull the file down, open it in PhotoShop and

RE: Can this be done?

2010-04-19 Thread Rick Faircloth
Thanks for the feedback, Ian. I'll at least start making use of the isImage() function. Rick -Original Message- From: Ian Skinner [mailto:h...@ilsweb.com] Sent: Monday, April 19, 2010 1:57 PM To: cf-talk Subject: Re: Can this be done? On 4/19/2010 10:33 AM, Rick Faircloth wrote

RE: Can this be done?

2010-04-19 Thread Eric Nicholas Sweeney
Matt - I have the same problem with a client - they receive images from a 3rd party - and when they upload them they don't show up in IE. (They do in FF though...) Resaving in photoshop doesn't always fix the issue either... Sometimes we have to make a NEW image - then cut and paste the pic

RE: Can this be done?

2010-04-19 Thread Andy Matthews
: Monday, April 19, 2010 1:43 PM To: cf-talk Subject: RE: Can this be done? Matt - I have the same problem with a client - they receive images from a 3rd party - and when they upload them they don't show up in IE. (They do in FF though...) Resaving in photoshop doesn't always fix the issue either

Re: Can this be done?

2010-04-19 Thread Chuck Weidler
I don't see where you mention what version of ColdFusion you are using, but if you are using CF8+ then here is what I do. I also have a site that uploads images. cfimage action=read source=C:\ImgStore\TheUploadedImage.jpg name=myImage cfset Info = ImageInfo(myImage) !--- LOOK AT THE

RE: Can this be done?

2010-04-19 Thread Rick Faircloth
:08 PM To: cf-talk Subject: Re: Can this be done? I don't see where you mention what version of ColdFusion you are using, but if you are using CF8+ then here is what I do. I also have a site that uploads images. cfimage action=read source=C:\ImgStore\TheUploadedImage.jpg name=myImage cfset Info

Re: Can this be done?

2010-04-19 Thread Jason Fisher
2 types of JPG that can cause problems: CMYK and progressive JPEG. As others have noted on this thread, this is not just a problem with the image engine used by CF, but is a problem with any browser as well. CMYK images will *not* (in my experience) convert properly within CF image

Can this be done?

2010-04-18 Thread Matthew Friedman
We have a site where people are uploading images to our site. We are using cffile upload, checking the sizing resizing them - all is working great but about 2% of the images will sometimes be upload but not able to be displayed on the site - they might be set as CMYK or some other reason

Re: Can this be done?

2010-04-18 Thread Brian McCairn
does isImageFile() do this? ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive:

RE: PDF Support with CF8 - Can this be done?

2007-11-05 Thread James Davis
Engineer Kaleida Systems, Inc. -Original Message- From: [EMAIL PROTECTED] [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, November 02, 2007 1:38 PM To: CF-Talk Subject: Re: PDF Support with CF8 - Can this be done? Yes, CF8 can do what you need to do very easily. Damon What I need

Re: PDF Support with CF8 - Can this be done?

2007-11-05 Thread Todd
Did you try action=merge? :) On Nov 5, 2007 12:15 PM, James Davis [EMAIL PROTECTED] wrote: I'm trying to do something similar as well, but trying to merge database content into a PDF form then generate 1 large PDF with multiple pages. Is this possible with the new tags? When I tried using

RE: PDF Support with CF8 - Can this be done?

2007-11-05 Thread James Davis
-Talk Subject: Re: PDF Support with CF8 - Can this be done? Did you try action=merge? :) On Nov 5, 2007 12:15 PM, James Davis [EMAIL PROTECTED] wrote: I'm trying to do something similar as well, but trying to merge database content into a PDF form then generate 1 large PDF with multiple pages

Re: PDF Support with CF8 - Can this be done?

2007-11-02 Thread Ben Doom
If I understand what it is you want to do, look into cfpdfform. You'll have to build an XML data object to hold the form data, but that shouldn't be too difficult. --Ben Doom Frank Mamone wrote: Hi everyone, I've been out of the CF game for a very long time and now I have a little project

PDF Support with CF8 - Can this be done?

2007-11-02 Thread Frank Mamone
Hi everyone, I've been out of the CF game for a very long time and now I have a little project to do and wondering if CF8 has the answer for me. I'll keep search the docs, but in case you have a quick answer I appreciate it. What I need to do is take information posted from a web form and merge

Re: PDF Support with CF8 - Can this be done?

2007-11-02 Thread [EMAIL PROTECTED] [EMAIL PROTECTED]
Hi everyone, I've been out of the CF game for a very long time and now I have a little project to do and wondering if CF8 has the answer for me. I'll keep search the docs, but in case you have a quick answer I appreciate it. What I need to do is take information posted from a web form and merge

Re: PDF Support with CF8 - Can this be done?

2007-11-02 Thread Bryan Stevenson
Yes it can...CFDOCUMENTpretty straightforward welcome back ;-) Cheers Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedgesystems.com Notice:

Re: PDF Support with CF8 - Can this be done?

2007-11-02 Thread [EMAIL PROTECTED] [EMAIL PROTECTED]
Yes, CF8 can do what you need to do very easily. Damon What I need to do is take information posted from a web form and merge it into an existing PDF with place holders and then save the file and email it as an attachement. Can CF 8 do the PDF portion natively?

Re: PDF Support with CF8 - Can this be done?

2007-11-02 Thread Frank Mamone
Thanks everyone...I'll start looking at those tags on Adobe. It feels strange to say Adobe. Last time I used CF it was MM. Great to be back! Frank On Nov 2, 2007 1:19 PM, Bryan Stevenson [EMAIL PROTECTED] wrote: Yes it can...CFDOCUMENTpretty straightforward welcome back ;-) Cheers

Re: Can this be done

2007-10-31 Thread Toby King
Hi there Is there anything simpler than that. Hi there I’m in the process of finalising the developing an application to handle personal training sessions at a gym – basically there are 6 or more personal trainers who each have more than 60 clients that they work with for ½ hour up to 2

Re: Can this be done

2007-10-31 Thread [EMAIL PROTECTED] [EMAIL PROTECTED]
Does a user have to have interaction on the homepage? If the classes are defined by time, you could do something simple like have the homepage check the date and time and show the classes that fall within the current date and time range. That would be simple. I am developing an application for

Can this be done

2007-10-30 Thread Toby King
I am developing an application for a gym. On the home page of the application I am currently displaying details of personal training sessions which are in progress, and also thos sessions which are waiting to be started. Sessions in progress P/TrainerRoom # Start Time Finish

RE: Can this be done

2007-10-30 Thread Bobby Hartsfield
Sounds like a good place for a little ajax magic. When you check a box, it'd be cool to update the status without leaving or refreshing the page. You could also use some ajax to have the remaining time update in real time as well. ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield

RE: Can this be done

2007-10-30 Thread Ben Nadel
Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Peter Tanswell [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 30, 2007 9:07 AM To: CF-Talk Subject: Re: Can this be done Yeah I had just been browsing a book on AJAX, but havent used

Re: Can this be done

2007-10-30 Thread Peter Tanswell
Yeah I had just been browsing a book on AJAX, but havent used it before so a liitle bit lost. Any suggestions or anywhere where I can get enough info to let me do this? Thanks in advance. On 10/30/07, Bobby Hartsfield [EMAIL PROTECTED] wrote: Sounds like a good place for a little ajax

Re: Can this be done

2007-10-30 Thread Cutter (CFRelated)
JQuery is your friend:) Something like this should work: script $(document).ready(function(){ // Here's a reference to our form var frm = $('form##testForm'); // Assign an onChange event handler

Re: Can this be done?

2007-05-18 Thread Will Tomlinson
Is a live chat app out of the question? ~| Create robust enterprise, web RIAs. Upgrade integrate Adobe Coldfusion MX7 with Flex 2 http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP Archive:

Can this be done?

2007-05-18 Thread Erik-Jan Jaquet
Hi all, I am breaking my head over something, and I hope someone can tell me if, and how, this van be done. A client wants some sort of 'Live helper' functionality on the website, where a web visitor fills in a form with a questions, that question is then delivered to an MSN account within

Re: Can this be done?

2007-05-18 Thread Erik-Jan Jaquet
The client want to use MSN as the client, so yes, for this solution it is... 2007/5/18, Will Tomlinson [EMAIL PROTECTED]: Is a live chat app out of the question? ~| Create Web Applications With ColdFusion MX7 Flex 2.

Re: Can this be done?

2007-05-18 Thread Randy Johnson
What about using the same application name for the whole app so when you receive the message back save it to the application scope and the users response page can check the application scope for the response. maybe an array treated as a queue or something -Randy Erik-Jan Jaquet wrote:

Re: Can this be done?

2007-05-18 Thread Randy Johnson
A database solution would not be bad either because you could delete conversations that have not had any messages added within a certain time frame -Randy Erik-Jan Jaquet wrote: Hi all, I am breaking my head over something, and I hope someone can tell me if, and how, this van be done.

Re: Can this be done?

2007-05-18 Thread James Wolfe
I have set up an MSN Gateway, I can send messages to the MSN account and receive messages from that MSN account. But I am not able to figure out how to show the user the response, other then letting the gateway add it to the DB, and let the app pull it from the DB. But I don't want to do

Re: Can this be done?

2007-05-18 Thread chopper
More specifically, look at the meebo me embeddable widget: http://www.meebome.com/ On 5/18/07, chopper [EMAIL PROTECTED] wrote: Have you looked at meebo.com It allows you to embed a chat client in your webpage that connects to an MSN account.

Re: Can this be done?

2007-05-18 Thread chopper
Have you looked at meebo.com It allows you to embed a chat client in your webpage that connects to an MSN account. On 5/18/07, James Wolfe [EMAIL PROTECTED] wrote: I have set up an MSN Gateway, I can send messages to the MSN account and receive messages from that MSN account. But I am not

Dynamicaly Building CFSTOREDPROC tag, can it be done?

2006-12-12 Thread Andy Mcshane
Before I spend a load of time that I really do not have available at present experimenting with this I thought that I would ask the question here. I was wondering if anybody has ever dynamically built a cfstoredproc tag and then executed it. The situation I have is that I have ben asked if it

Re: Dynamicaly Building CFSTOREDPROC tag, can it be done?

2006-12-12 Thread Teddy Payne
This can be accomplished in SQL Server without dynamically writing the stored procedure. You have to pass in the maximum number of parameters every time to the stored procedure. To do this, you cfparam all of the proc params above the stored procedure call. Inside of the stored procedure, you

Re: Dynamicaly Building CFSTOREDPROC tag, can it be done?

2006-12-12 Thread Teddy Payne
Caveat: A fellow developer Allen Underwood demonstrated the perfection of this clauseto me a year ago. Teddy On 12/12/06, Teddy Payne [EMAIL PROTECTED] wrote: This can be accomplished in SQL Server without dynamically writing the stored procedure. You have to pass in the maximum number of

Re: Dynamicaly Building CFSTOREDPROC tag, can it be done?

2006-12-12 Thread Jacob Munson
The situation I have is that I have ben asked if it is possible to dynamically build a cfstoredproc tag on the fly when you only know the number and type of parameters and SQL stored procedure name at run time. Has anybody ever done anything like this before? No, I haven't, but you could

Re: Dynamicaly Building CFSTOREDPROC tag, can it be done?

2006-12-12 Thread greg h
Andy, I think you can still execute procs in CFQUERY. If you want, try using CF to build up the SQL that calls the proc in variables, and then send it to the server by putting the #sqlprocstmt# inside a CFQUERY block. e.g.: CFQUERY ... #sqlprocstmt#/CFQUERY Executing procs via CFQUERY limits

Ok Java gurus can this be done

2004-05-30 Thread Andrew Scott
Ok, On the weekend I was looking at creating a variable back to CF, I am aware that you can create structures and normal string variables as well as queries... But is there a way you can create a variable that can contain an array? I can see potential for it but couldn't find a way to do

re: Can this be done??

2003-11-26 Thread Bushy
Hi, I have a frame split in half (topframe bottomframe). I the top frame I'm listing directories/files which have links to them. Beside each directory/file is an image that when clicked I want to send the link information to the bottom frame asthe path. Each time a link is clicked the bottom

RE: Can this be done??

2003-11-26 Thread Heald, Tim
or sanctioned by these organizations. This e-mail is unclassified based on the definitions in E.O. 12958. -Original Message- From: Bushy [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 26, 2003 8:56 AM To: CF-Talk Subject: re: Can this be done?? Hi, I have a frame split in half (topframe

RE: Can this be done??

2003-11-26 Thread Bushy
] Sent: Wednesday, November 26, 2003 8:56 AM To: CF-Talk Subject: re: Can this be done?? Hi, I have a frame split in half (topframe bottomframe). I the top frame I'm listing directories/files which have links to them. Beside each directory/file is an image that when clicked I want to send the link

RE: Can this be done??

2003-11-26 Thread Heald, Tim
Subject: RE: Can this be done?? Do you know where I could find some examples? --Original Message Text--- From: Heald, Tim Date: Wed, 26 Nov 2003 08:56:10 -0500 _javascript_. Timothy Heald Web Portfolio Manager Overseas Security Advisory Council U.S. Department of State 571.345.2319 The opinions

RE: Can this be done??

2003-11-26 Thread d.a.collie
PROTECTED] Sent: 26 November 2003 14:02 To: CF-Talk Subject: RE: Can this be done?? Do you know where I could find some examples? --Original Message Text--- From: Heald, Tim Date: Wed, 26 Nov 2003 08:56:10 -0500 _javascript_. -Original Message- From: Bushy [mailto:[EMAIL PROTECTED] Sent

Re: Can this be done??

2003-11-26 Thread Kevin Graeme
the target attribute in the a href for each link and point it to the other frame. -Kevin - Original Message - From: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, November 26, 2003 8:13 AM Subject: RE: Can this be done?? http://developer.irt.org/script/script.htm

Re: Can this be done??

2003-11-26 Thread Bushy
- From: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, November 26, 2003 8:13 AM Subject: RE: Can this be done?? http://developer.irt.org/script/script.htm... the _javascript_ FAQ's learned most of my js there many moons ago...don't know how up to date

RE: Can this be done??

2003-11-26 Thread Bushy
it is but certainly give you examples of things that you could use to achieve what you want -Original Message- From: Bushy [mailto:[EMAIL PROTECTED] Sent: 26 November 2003 14:02 To: CF-Talk Subject: RE: Can this be done?? Do you know where I could find some examples? --Original Message Text

Re: Can this be done??

2003-11-26 Thread Kevin Graeme
t whatever is in that list. -Kevin - Original Message - From: Bushy [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, November 26, 2003 8:25 AM Subject: Re: Can this be done?? --Original Message Text--- From: Kevin Graeme Date: Wed, 26 Nov 2003 08:20:45 -0600 Actually, depending o

Re: Can this be done??

2003-11-26 Thread Bushy
- Original Message - From: Bushy [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, November 26, 2003 8:25 AM Subject: Re: Can this be done?? --Original Message Text--- From: Kevin Graeme Date: Wed, 26 Nov 2003 08:20:45 -0600 Actually, depending on how he's doing things _javascr

Re: Can this be done??

2003-11-26 Thread Kevin Graeme
, November 26, 2003 9:12 AM Subject: Re: Can this be done?? Cool. I got it to work using the URL variable. How can I keep adding or concatenate each selection to the URL.item variable I'm displaying in the bottomframe to a list or array? --Original Message Text--- From: Kevin Graeme Date: Wed

RE: Can this be done??

2003-11-26 Thread Heald, Tim
Subject: Re: Can this be done?? Cool. I got it to work using the URL variable. How can I keep adding or concatenate each selection to the URL.item variable I'm displaying in the bottomframe to a list or array? --Original Message Text--- From: Kevin Graeme Date: Wed, 26 Nov 2003 08:56:40 -0600 Ah

RE: Can this be done??

2003-11-26 Thread Heald, Tim
these opinions been approved or sanctioned by these organizations. This e-mail is unclassified based on the definitions in E.O. 12958. -Original Message- From: Kevin Graeme [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 26, 2003 10:36 AM To: CF-Talk Subject: Re: Can this be done?? Did you

Re: Can this be done??

2003-11-26 Thread Bushy
Message - From: Bushy [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, November 26, 2003 9:12 AM Subject: Re: Can this be done?? Cool. I got it to work using the URL variable. How can I keep adding or concatenate each selection to the URL.item variable I'm displaying

Re: Can this be done??

2003-11-26 Thread Charlie Griefer
nice. - Original Message - From: Bushy To: CF-Talk Sent: Wednesday, November 26, 2003 8:40 AM Subject: Re: Can this be done?? Nope. --Original Message Text--- From: Kevin Graeme Date: Wed, 26 Nov 2003 09:24:36 -0600 Did you even try looking up how to use a list or array and figure

Re: Can this be done??

2003-11-26 Thread Bushy
shy [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, November 26, 2003 9:12 AM Subject: Re: Can this be done?? Cool. I got it to work using the URL variable. How can I keep adding or concatenate each selection to the URL.item variable I'm displaying in the bottomframe to a lis

Re: Can this be done??

2003-11-26 Thread tom
Here's a lead: _ColdFusion MX Web Application Construction Kit_ by Ben Forta, page 170. -Kevin - Original Message - From: Bushy [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, November 26, 2003 9:12 AM Subject: Re: Can this be done?? Cool. I got it to work using the URL va

Re: Can this be done??

2003-11-26 Thread Bushy
CTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, November 26, 2003 9:12 AM Subject: Re: Can this be done?? Cool. I got it to work using the URL variable. How can I keep adding or concatenate each selection to the URL.item variable I'm displaying in the bottomframe to a list or array?

RE: Can this be done??

2003-11-26 Thread Greg Luce
u're after? -Original Message- From: Bushy [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 26, 2003 1:24 PM To: CF-Talk Subject: Re: Can this be done?? That typo is OK in my code. I'm doing something else wrong. --Original Message Text--- From: [EMAIL PROTECTED] Date: Wed, 26 Nov 2003 13:07:46

RE: Can this be done??

2003-11-26 Thread Bushy
if listlen(client.big_list) GT 0 cfloop index=i list=#client.big_list# #i#br /cfloop /cfif Is that what you're after? -Original Message- From: Bushy [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 26, 2003 1:24 PM To: CF-Talk Subject: Re: Can this be done?? That typo is OK in my code.

How can it be done ?

2003-10-28 Thread Chris
Good afternoon everyone, I have a small quetion, may be one of you skilled guys can help me out. I have a login page, when the users logs in an ID is pulled from a database with CFQUERY. After logging in, a download is started, which will install additional software on the users computer.

RE: How can it be done ?

2003-10-28 Thread Tangorre, Michael
pass the ID in the url. -Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 9:52 AM To: CF-Talk Subject: How can it be done ? Good afternoon everyone, I have a small quetion, may be one of you skilled guys can help me out. I have a login page, when

Re: How can it be done ?

2003-10-28 Thread Chris
Good idea, though after the installation, there is a reboot, page is gone. - Original Message - From: Tangorre, Michael To: CF-Talk Sent: Tuesday, October 28, 2003 3:50 PM Subject: RE: How can it be done ? pass the ID in the url. -Original Message- From: Chris [mailto

RE: How can it be done ?

2003-10-28 Thread d.a.collie
or use session vars and pass the cfid and cftoken (or jsessionid) in the url and the user can't muck about with the userid -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED] Sent: 28 October 2003 14:51 To: CF-Talk Subject: RE: How can it be done ? pass the ID

RE: How can it be done ?

2003-10-28 Thread John Stanley
can you store the users ip address and associate it with the id? -Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 9:56 AM To: CF-Talk Subject: Re: How can it be done ? Good idea, though after the installation, there is a reboot, page is gone

Re: How can it be done ?

2003-10-28 Thread Bruce Sorge
So why not have them log in again and pass the ID in the URL string? - Original Message - From: Chris To: CF-Talk Sent: Tuesday, October 28, 2003 8:56 AM Subject: Re: How can it be done ? Good idea, though after the installation, there is a reboot, page is gone. - Original

RE: How can it be done ?

2003-10-28 Thread Kennerly, Rick H CIV
:[EMAIL PROTECTED] Sent: Tuesday, 28 October, 2003 10:59 To: CF-Talk Subject: RE: How can it be done ? can you store the users ip address and associate it with the id? -Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 9:56 AM To: CF-Talk Subject: Re

Re: How can it be done ?

2003-10-28 Thread Chris
: John Stanley To: CF-Talk Sent: Tuesday, October 28, 2003 3:58 PM Subject: RE: How can it be done ? can you store the users ip address and associate it with the id? -Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 9:56 AM To: CF-Talk Subject: Re: How

RE: How can it be done ?

2003-10-28 Thread Robertson-Ravo, Neil (RX)
: Chris [mailto:[EMAIL PROTECTED] Sent: 28 October 2003 14:52 To: CF-Talk Subject: How can it be done ? Good afternoon everyone, I have a small quetion, may be one of you skilled guys can help me out. I have a login page, when the users logs in an ID is pulled from a database with CFQUERY. After

Re: How can it be done ?

2003-10-28 Thread Chris
, October 28, 2003 4:08 PM Subject: RE: How can it be done ? hmmmtricky especially since there is a reboot...if cookies are a no go, then I am not sure how you will keep state etc? you could write a file with the userid to the hard drive (as you are allowing a download). but even

RE: How can it be done ?

2003-10-28 Thread Ricky Fritzsching
PROTECTED] Sent: 28 October 2003 14:52 To: CF-Talk Subject: How can it be done ? Good afternoon everyone, I have a small quetion, may be one of you skilled guys can help me out. I have a login page, when the users logs in an ID is pulled from a database with CFQUERY. After logging

Re: How can it be done ?

2003-10-28 Thread Chris
Thanks Ricky, I think that writing to the registry will be the best solution for this. - Original Message - From: Ricky Fritzsching To: CF-Talk Sent: Tuesday, October 28, 2003 4:27 PM Subject: RE: How can it be done ? I do agree with Neil, but another option before CFMX would

Re: How can it be done ?

2003-10-28 Thread Nick de Voil
I think that writing to the registry will be the best solution for this. cfregistry writes to the server's registry, not the client's. Nick [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: How can it be done ?

2003-10-28 Thread Chris
Oops, that is out of the question then... - Original Message - From: Nick de Voil To: CF-Talk Sent: Tuesday, October 28, 2003 4:34 PM Subject: Re: How can it be done ? I think that writing to the registry will be the best solution for this. cfregistry writes to the server's registry

RE: How can it be done ?

2003-10-28 Thread John Stanley
what about having the program write to a text file on the client machine, then when the user comes back up, read from that text file. -Original Message- From: Nick de Voil [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 10:34 AM To: CF-Talk Subject: Re: How can it be done ? I

Re: How can it be done ?

2003-10-28 Thread Chris
Writing to a text file is another download, can only be one download (to keep it simple for the user) - Original Message - From: John Stanley To: CF-Talk Sent: Tuesday, October 28, 2003 4:37 PM Subject: RE: How can it be done ? what about having the program write to a text file

RE: How can it be done ?

2003-10-28 Thread Greg Luce
. Wouldn't this be best? Greg -Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 11:46 AM To: CF-Talk Subject: Re: How can it be done ? Oops, that is out of the question then... - Original Message - From: Nick de Voil To: CF-Talk Sent

Re: How can it be done ?

2003-10-28 Thread Chris
: How can it be done ? In a closed group of users (non-public) like this sounds, I would prefer users allow cookies for your specific domain if they are set to restrict cookies accross the board. For this I would code for modern IE, and in internet options-privacy you can override cookie handling

RE: How can it be done ?

2003-10-28 Thread Tangorre, Michael
If a cookie is not set, and you can not use the IP, I can not think of another way.. -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 10:09 AM To: CF-Talk Subject: RE: How can it be done ? hmmmtricky especially since

RE: How can it be done ?

2003-10-28 Thread John Stanley
-Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 10:50 AM To: CF-Talk Subject: Re: How can it be done ? Writing to a text file is another download, can only be one download (to keep it simple for the user) - Original Message - From

RE: How can it be done ?

2003-10-28 Thread John Stanley
could the first download place a copy of the text file that is looked for when the user logs back in? -Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 10:50 AM To: CF-Talk Subject: Re: How can it be done ? Writing to a text file is another download

RE: How can it be done ?

2003-10-28 Thread Robertson-Ravo, Neil (RX)
: How can it be done ? Writing to a text file is another download, can only be one download (to keep it simple for the user) - Original Message - From: John Stanley To: CF-Talk Sent: Tuesday, October 28, 2003 4:37 PM Subject: RE: How can it be done ? what about having the program write

Re: How can it be done ?

2003-10-28 Thread Chris
Can be done, although snall problem then : The ID comes from the atabase, the downloaded file is a zip-file, means unzip, run, reboot. If I only could make the following download.zip?ID=5656565 with the zip-file - Original Message - From: John Stanley To: CF-Talk Sent: Tuesday

Re: How can it be done ?

2003-10-28 Thread Chris
: How can it be done ? I think you are on a hiding to nothing on this one.. :-(sounds like you are trying to do something which the web was not designed to do.. if you get a good resolutionthen post it though! _ From: Chris [mailto:[EMAIL PROTECTED] Sent: 28 October 2003 15:50

RE: How can it be done ?

2003-10-28 Thread Jeff Beer
If they have to login, just associate the login with the provided ID. When the login occurs, retrieve the appropriate ID. -Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 9:52 AM To: CF-Talk Subject: How can it be done ? Good afternoon

RE: How can it be done ?

2003-10-28 Thread DURETTE, STEVEN J (AIT)
- From: Chris [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 10:58 AM To: CF-Talk Subject: Re: How can it be done ? Will keep working on this, and will post what I've done I also think it is one way street with a roadblock in the begining on this, although any ideas are welcome. Chris

RE: How can it be done ?

2003-10-28 Thread Tangorre, Michael
, you have their ID and they are at the URL you need them to be at!!! :-) -Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 10:56 AM To: CF-Talk Subject: Re: How can it be done ? Can be done, although snall problem then : The ID comes from

Re: How can it be done ?

2003-10-28 Thread Chris
To: CF-Talk Sent: Tuesday, October 28, 2003 4:58 PM Subject: RE: How can it be done ? If they have to login, just associate the login with the provided ID. When the login occurs, retrieve the appropriate ID. -Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Tuesday, October

Re: How can it be done ?

2003-10-28 Thread Chris
startpage. Can that be done ? - Original Message - From: Tangorre, Michael To: CF-Talk Sent: Tuesday, October 28, 2003 5:27 PM Subject: RE: How can it be done ? How about on the page that presents the download you givea popup window in German (or another non English language... the intent here

RE: How can it be done ?

2003-10-28 Thread Tangorre, Michael
... -Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 11:32 AM To: CF-Talk Subject: Re: How can it be done ? Good ideas, though cannot be done. The login occurs, the id is being retrieved, download started, reboot occurs and immediately (without login) a html

RE: How can it be done ?

2003-10-28 Thread Tangorre, Michael
, October 28, 2003 11:35 AM To: CF-Talk Subject: Re: How can it be done ? Thanks Michael, That opens up a new perspective. Now, one thing that the page being called after reboot is started automatically. I would have to put it in the Startup Page of their browser, copy the old one first, start up

Re: How can it be done ?

2003-10-28 Thread Chris
hmmm I believe this dead end, I will keep you guys updated on this. - Original Message - From: Tangorre, Michael To: CF-Talk Sent: Tuesday, October 28, 2003 5:45 PM Subject: RE: How can it be done ? No way... you can ASK them to set their homepage by clicking ok when the setHomePage

RE: How can it be done ?

2003-10-28 Thread Jeff Beer
! Jeff -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 11:36 AM To: CF-Talk Subject: RE: How can it be done ? You are talking about setting client's system level parameters to launch their browser and open a specific page

RE: How can it be done ?

2003-10-28 Thread Adam Reynolds
Just email them the link they should run. Keeps it simple -Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: 28 October 2003 16:52 To: CF-Talk Subject: Re: How can it be done ? hmmm I believe this dead end, I will keep you guys updated on this. - Original Message

  1   2   3   >