Re: stupid ?

2003-08-02 Thread Dave Lyons
no way? haha btw~ i got it figured out see the problem was that a client was to see it in action and i made what we needed on my comp where it works fine but we cant get it to connect on the server for so damn reason. thats why we wanted to let them have access to my comp so they could try it

OT? Tracking email via embedded images

2003-08-02 Thread Rafael Alan Bleiweiss
I have a client who wants to send out emails with images embedded because he heard you can track info about the image being opened in the email through some sort of server process. I know a site's log reports on which images were viewed in a web browser during a visitor session, however how do

CFC Addressing

2003-08-02 Thread Jason Blum
Does anyone happen to know whether one's calling template and one's CFCs can reside in separate security sandboxes? For instance, could an ISP put all client sites in one default security sandbox with few permissions/tags/etc, but then allow them to tie into CFCs in another sandbox that does

CFFUNCTION and VAR's

2003-08-02 Thread Rich Z
I understand the importance of VARing variables created for function purposes - but I'm not getting where they belong in the grand scheme of things. I'm fine w/ the UDF/cfscript style, it's the tag-based CFFUNCTION style that's tripping me up. Does it belong before or after CFARGUMENT's? Can

RE: CFFUNCTION and VAR's

2003-08-02 Thread Raymond Camden
Just like var in script statements have to be 'on top', the same applies to var scoped variables in CFFUNCTION style UDFs. Simply place them after your cfargument tags and before any line of 'real' code. === Raymond Camden,

Re: OT? Tracking email via embedded images

2003-08-02 Thread Calvin Ward
I believe he'll be talking about html formatted email. Any image presented in that email must be served by a web server somewhere, if that webserver has logging turned on, then you may be able to parse the server logs for that image and extract anything that your web server is set to log on

RE: Alternatives to CF5's IP based debugging?

2003-08-02 Thread Dave Watts
Well not having played with the debugger before, I read Charlie Areharts presentation on it, and after some head scratching and one crash, I set up a dev mapping opened my default.cfm, added a couple breakpoints, and started a debug session. Lo and behold, up pops this ultra cool window

RE: Alternatives to CF5's IP based debugging? - MX Debugging

2003-08-02 Thread Dave Watts
Figured it out...CF MX doesn't support debugging! /me breathes deeply... Anyone know if debugging support is slated to be added back into MX? Probably not, but who can say? It never worked that well before, in my experience. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/

CFStoredproc problem in CFMX..

2003-08-02 Thread Ramesh Deva
Hi, I thought to give an email separately.. Here I am giving the testcode which I executed in cfmx version and CF4.5.1 version. But I am expecting value '4' from following code. I will be getting that value in only CF4.5.1 but not in CFMX. Is it unknown cfmx bug or do we need to change

Re: multipart form - passing fields

2003-08-02 Thread Jason Miller
Well instead of doing a database call every page - I just stored variables in a session scope. Once they finish the 4th step - they then get written into database because they are valuable now. I set sessions to expire after 30 minutes.. so if they got side tracked and came back - the form was

Re[2]: OT? Tracking email via embedded images

2003-08-02 Thread cf-talk
Rafael, I do s.th. like this behind the real image (img ... img src=http://www.foo.com/tracking.cfm?issue=20030721pictureID=2linkID=0campaignID=1; border=0 height=1 width=1 alt=dummy and in tracking.cfm I have: CFQUERY name=foo datasource=tracking dbtype=odbc Insert Into trackingData (email,

RE: CFFUNCTION and VAR's

2003-08-02 Thread Rich Z
The following code throws an error... cffunction name=execRulesetDetailed access=remote returntype=query displayname=Execute Rule Set (Simple Mode) output=yes cfargument name=RulesetID type=string required=yes

RE: CFFUNCTION and VAR's

2003-08-02 Thread Raymond Camden
Crrect, since cfscript is considered a tag of code so to speak. You must use this format: cfset var foo = goo === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc (www.mindseye.com) Member of Team Macromedia

OT? Tracking email via embedded images

2003-08-02 Thread Benjamin Rosenthal
There are lots of different ways to do this but the concept is the same. Do a search on google for web bugs. Here's a URL: http://www.eff.org/Privacy/Marketing/web_bug.html Benjamin ~| Archives:

Auction site question

2003-08-02 Thread Jack Poe
BlankDoes anyone out there know how Ebay's Proxy-Bid functionality works? I need to emulate it for a site and I am going NuTz trying to come up with a fair solution. Thanks -Jack _ Jack L. Poe Manager Greater Dayton ColdFusion User Group www.cfdayton.com [EMAIL PROTECTED]

REReplace not working as it should ... or is it me?

2003-08-02 Thread mayo
I'm creating a system to allow some users update parts of their site. 1. I'm using CFFILE action=read to pull the file. 2. Then I'm pulling out sections within divs to be replaced. 3. These sections are placed in forms allowing users to update them and then using CFFILE to update the file by

Re: Page Context Bug?

2003-08-02 Thread Sean A Corfield
On Friday, Aug 1, 2003, at 11:28 US/Pacific, Matt Liotta wrote: Just to be clear, I didn't say it was impossible; just not efficient of scalable. And just to be clear, I didn't say it was impossible to write efficient frameworks using CFCs - merely that it was difficult. You certainly *could*

Site with a font

2003-08-02 Thread Robert Everland
I am trying to find a CF site out there that has a picture of a guy with propeller head. The site offered a free font on it, I can't rem where it was from, anyone know of it offhand. Bob Everland ~| Archives:

Re: Site with a font

2003-08-02 Thread Critz
oi Robert!! maxfusion.co.uk that's max in the picture :P Saturday, August 2, 2003, 3:40:25 PM, you wrote: RE I am trying to find a CF site out there that has a picture of a guy with RE propeller head. The site offered a free font on it, I can't rem where

Random Form Validation Word with graphics

2003-08-02 Thread Rafael Alan Bleiweiss
First I want to thank everyone on the list for helping me so much lately. I'm up to my neck in new territory and CF Talk is invaluable to me, which in reality means everyone on the list is invaluable to me! OK - So I have a registration form that requires the need to generate a random 4 or 6

Re: Site with a font

2003-08-02 Thread Brian Mitter
:) www.maxfusion.co.uk - Original Message - From: Robert Everland [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, August 02, 2003 8:40 PM Subject: Site with a font I am trying to find a CF site out there that has a picture of a guy with propeller head. The site

REReplace not working as it should ... or is it me? -- REWRITTEN

2003-08-02 Thread mayo
I'm creating a system to allow some users update parts of their site. 1. I'm using CFFILE action=read to pull the file. 2. Then I'm pulling out sections within divs to be replaced. 3. These sections are placed in forms allowing users to update them and then using CFFILE to update the file by

Re: Site with a font

2003-08-02 Thread Brian Mitter
oi! - Original Message - From: Critz [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, August 02, 2003 8:55 PM Subject: Re: Site with a font oi Robert!! maxfusion.co.uk that's max in the picture :P Saturday, August 2, 2003,

Firefly / Data Connection Kit Weirdness

2003-08-02 Thread Ben Koshy
Hey All, I'm following along with Ben Forta's firefly example http://www.macromedia.com/devnet/mx/coldfusion/articles/data_conn.html I've gotten to the point where I'm displaying a recordset in the flash player properly. However, when I run the same via the webserver, I get nothing, just a

RE: CFFUNCTION and VAR's

2003-08-02 Thread Rich Z
Ah! Thanks much. I've got work to do. Heh. -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Saturday, August 02, 2003 11:59 AM To: CF-Talk Subject: RE: CFFUNCTION and VAR's Crrect, since cfscript is considered a tag of code so to speak. You must use this format:

RE: UTC Timezone Offset

2003-08-02 Thread Bryan F. Hogan
My server says GMT-5 but cf returns just the number 4. Is this a bug or am I missing something. Since your server says GMT+7 cf returns to you -7. If mine working correctly should do the opposite cf on my end should return +4? Let alone the fact it returns 4 instead of 5. -Original

Re[2]: OT? Tracking email via embedded images

2003-08-02 Thread Rafael Alan Bleiweiss
At 10:38 AM 8/2/03, you wrote: Rafael, I do s.th. like this behind the real image (img ... img src=http://www.foo.com/tracking.cfm?issue=20030721pictureID=2linkID=0campaignID=1; border=0 height=1 width=1 alt=dummy and in tracking.cfm I have: CFQUERY name=foo datasource=tracking dbtype=odbc

RE: REReplace not working as it should ... or is it me? -- REWRITTEN

2003-08-02 Thread Ben Doom
If you search the cf-regex archives, they're full of stuff like this. It's a common problem. What you are seeing (I suspect) is the regex grabbing everything from the div id=whatever to the last /div. This is because regex, by default, uses greedy matching. In CFMX, you can do a non-greedy

RE: UTC Timezone Offset

2003-08-02 Thread Tony Weeg
thats because of daylight savings time :) we are truly -4 here. (east coast, im in maryland) but with our concoction of DST, we make ourselves -5 Spring forward Fall back get it :) yeah its a bit confusing, but once you spend 6 months coding around it for a multi-time zone web based app !!!

RE: UTC Timezone Offset

2003-08-02 Thread Michael T. Tangorre
Tony, Where abouts in MD are you? I'm in Silver Spring You close? Mike -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Saturday, August 02, 2003 9:39 PM To: CF-Talk Subject: RE: UTC Timezone Offset thats because of daylight savings time :) we are truly -4

Powered by CFMX

2003-08-02 Thread Mike Kear
In days gone by, there was a Powered by ColdFusion logo we all used, to advertise to the non-enlightened that this was a site built on great technology. Is there an equivalent for CFMX that we can freely use on our CF sites? Cheers, Michael Kear Windsor, NSW, Australia AFP Webworks.