RE: Proxy Authentication with Oracle - Does ColdFusion Support th is?

2008-04-21 Thread Joseph Bugeja
Is there a workaround? Speaking of .NET/C#, to discern the identity of the actual user while keeping the benefits of pooling, the following two approaches can be used: Proxy Authentication using C#: String oradb = Data Source=OraDb;User Id=ActualUser;Password=secret; Proxy

CF8.0.1 - GC overhead limit exceeded?

2008-04-21 Thread James Blaha
CF Pro’s, I recently upgraded to 8.0.1 and had no issues but oddly I got a first time error for a big scheduled job which runs every morning, I haven’t seen this one before. Any ideas? Message GC overhead limit exceeded StackTrace java.lang.OutOfMemoryError: GC overhead limit

RE: [BULK] Re: args arg collections

2008-04-21 Thread Leitch, Oblio
Yes, you get two dumps. However, you'll notice that the output from testMe2 dumps a structure of two keys, both containing undefined struct element. If you remove the cfargument from testMe2, the dumps are identical. My question is, why? -Original Message- From: Azadi Saryev

Re: [BULK] Re: args arg collections

2008-04-21 Thread Dominic Watson
ArgumentCollection passes named arguments; this is why the arguments are undefined (the 'one' argument is not supplied and the other argument is unnamed). I agree that the second argument being undefined is odd; not entirely sure why but I think the above is the jist of it. If you call the

Re: [BULK] Re: args arg collections

2008-04-21 Thread Dominic Watson
I should mention that the workaround will only work with simple values - which is somewhat of a downside. Dominic -- Blog it up: http://fusion.dominicwatson.co.uk ~| Adobe® ColdFusion® 8 software 8 is the most important and

RE: args arg collections

2008-04-21 Thread Gaulin, Mark
Well then you shouldn't be surprised that it doesn't work! One way or the other you need the make the keys in the arguments struct match up. -Original Message- From: Leitch, Oblio [mailto:[EMAIL PROTECTED] Sent: Friday, April 18, 2008 5:11 PM To: CF-Talk Subject: RE: args arg

Re: CF8.0.1 - GC overhead limit exceeded?

2008-04-21 Thread Cutter (CFRelated)
Jim, Have you tried to move back to the 1.5 JVM? I found many references on improved performance, even with 8.0.1, and it's been really good for us. Steve Cutter Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer _

RE: [BULK] Re: args arg collections

2008-04-21 Thread Leitch, Oblio
Actually, they *are* technically named; the keys in the structure are numeric. You can't evaluate 'struct.1', but you _can_ evaluate 'struct[1]'. Further, what I'm saying is you *can* pass arguments through using an argumentCollection attribute. What you *can't* do is name the arguments in the

RE: Remove everything but numbers and letters from a string

2008-04-21 Thread Andy Matthews
You need to add a caret just after the opening bracket. It inverts the selected items and says everything BUT these. -Original Message- From: Steve Sequenzia [mailto:[EMAIL PROTECTED] Sent: Sunday, April 20, 2008 8:52 PM To: CF-Talk Subject: Re: Remove everything but numbers and letters

CFFile append with a source file?

2008-04-21 Thread Stephane Vantroyen
Hi, i'm looking for a custom tag (cfx or anything else) that would allow me to use cffile action=append with a source file: the purpose here is to merge several documents (xml files) into another one without having to read them in a variable (too large amount of data for the server's RAM).

RE: Ajax: Who's into Ajax and Business Cases

2008-04-21 Thread Steve Brownlee
Don: If you want to ask questions about AJAX, there are a vast number of other resources available to you. Each of the major libraries has their own message board or Google group. Here's some URLs to get you started... http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid=72catid

Re: CF8.0.1 - GC overhead limit exceeded?

2008-04-21 Thread James Holmes
This is definitely worth a try, as there are other good reasons to move back to 1.5. For example, the JRun web server can't serve pages via SSL on Java 6 but it works fine on Java 1.5. On Mon, Apr 21, 2008 at 9:08 PM, Cutter (CFRelated) [EMAIL PROTECTED] wrote: Jim, Have you tried to move

RE: CFFile append with a source file?

2008-04-21 Thread Bobby Hartsfield
You could use cfexecute to `type` (or `cat`... depending on your platform) the files into 1 file Example... type file1.xml file2.xml combined.xml ..:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com http://cf4em.com -Original Message- From: Stephane Vantroyen

Re: [BULK] Re: args arg collections

2008-04-21 Thread Dominic Watson
Yes, this is exactly as I said. The 'one' argument is undefined because it has not been passed to the function - that is clear enough. I also said that I wasn't 100% sure why the '1' argument was undefined but that I suspect that ColdFusion knows it is an unnamed argument even though it has

Re: output column average using coldfusion

2008-04-21 Thread erik tom
I have to point out that this approach is terribly inefficient. Calculations like this should be in at the database level using SQL, that's exactly what it's supposed to do. Any time you're looping over queries to run more queries, or to total things up, it should be a big red flag, because in

Re: Accessing SSIS package

2008-04-21 Thread Phil Cruz
Another option is to call the sp_start_job stored procedure. http://technet.microsoft.com/en-us/library/ms186757.aspx -Phil You should be able to run it using CFEXECUTE to run an app called DTEXEC.exe. Check out the docs here: http://msdn2.microsoft.com/en-us/library/ms162810.aspx

cfgrid flash formating questions

2008-04-21 Thread Paul Ihrig
ok, have googled, but no luck. Q1. how do i align the submit button, to the insert button within the cfgrid? or remove the insertButton and make a button that does the same thing... Q2. how do i remove the column that is thrown in for id.. i have my own id column i am using, but cfgrid inserts

RE: output column average using coldfusion

2008-04-21 Thread Bobby Hartsfield
Select avg(columnname) as whatever from table ..:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com http://cf4em.com -Original Message- From: erik tom [mailto:[EMAIL PROTECTED] Sent: Monday, April 21, 2008 10:01 AM To: CF-Talk Subject: Re: output column average using

Adobe Spry Menu and Flash - Last Try

2008-04-21 Thread Robert Harrison
I know this is a bit OT, but it's still a problem maybe someone on list has seen. In CS3 Adobe provides a new function for generating fly out menus called Spry menus. The work well, but they don't seem to play very nicely with flash animation files (swfs). The flash animation and Spry menus seem

Re: [BULK] Re: args arg collections

2008-04-21 Thread Dominic Watson
I just realised what an eejit I was with my first solution (close but no cigar). The following 'TestMe' function will work when either named OR unnamed arguments are passed to it: cffunction name=testMe output=1 cfset var arg = cfset var argList = cfset var aKeys =

Embedded YouTube movies

2008-04-21 Thread Torrent Girl
Hi All. I would like to allow site visitors to post a link to their youtube video to a database and then I output the link as a variable. It is not working. Has any successfully done this before? See my code below. object width=425 height=355 param name=movie value=#video#/param param

Re: Adobe Spry Menu and Flash - Last Try

2008-04-21 Thread Massimo Foti
In CS3 Adobe provides a new function for generating fly out menus called Spry menus. The work well, but they don't seem to play very nicely with flash animation files (swfs). The flash animation and Spry menus seem to be interfering with each other. Here's an example:

Re: Embedded YouTube movies

2008-04-21 Thread Crow T. Robot
It's not working I think we've been down this road before, but how exactly is it *not* working? Error messages? What *does* happen? Help us help you... On Mon, Apr 21, 2008 at 9:35 AM, Torrent Girl [EMAIL PROTECTED] wrote: Hi All. I would like to allow site visitors to post a link to

Re: Adobe Spry Menu and Flash - Last Try

2008-04-21 Thread Massimo Foti
Doesn't Flash have a z-index property for the embed tags (to be clear, thats an HTML feature, not Flash). In the past when I've had DHTML and Flash issues, it was fixed by simply setting the zindex... no wait - I think it might wmode. One of those things. ;) I think it was wmode :-)

Re: Proxy Authentication with Oracle - Does ColdFusion Support th is?

2008-04-21 Thread Matthew Williams
If the proxy user supports using a password, you could always override the values supplied in the ColdFusion datasource at runtime. CFQUERY takes an optional setting of username and password. If you plug the proxy user information into those optional values, it will use those credentials for

Re: Embedded YouTube movies

2008-04-21 Thread Torrent Girl
Sorry. The movie looks as if it is loading but never comes up. It's not working I think we've been down this road before, but how exactly is it *not* working? Error messages? What *does* happen? Help us help you... On Mon, Apr 21, 2008 at 9:35 AM, Torrent Girl [EMAIL PROTECTED] wrote:

Re: cfgrid flash formating questions

2008-04-21 Thread Paul Ihrig
Q2: remove column, rowheaders=no colheaders=yes ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;192386516;25150098;k Archive:

Re: Embedded YouTube movies

2008-04-21 Thread Jerry Johnson
And still the crowd yells for more. What exactly is the value for video? Can you go to that link in your browser (and it comes up?) On Mon, Apr 21, 2008 at 10:54 AM, Torrent Girl [EMAIL PROTECTED] wrote: Sorry. The movie looks as if it is loading but never comes up. It's not working I

Re: Adobe Spry Menu and Flash - Last Try

2008-04-21 Thread Raymond Camden
Doesn't Flash have a z-index property for the embed tags (to be clear, thats an HTML feature, not Flash). In the past when I've had DHTML and Flash issues, it was fixed by simply setting the zindex... no wait - I think it might wmode. One of those things. ;) On Mon, Apr 21, 2008 at 9:10 AM,

RE: Adobe Spry Menu and Flash - Last Try

2008-04-21 Thread Bobby Hartsfield
Yeah, wmode ..:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com http://cf4em.com -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Monday, April 21, 2008 10:34 AM To: CF-Talk Subject: Re: Adobe Spry Menu and Flash - Last Try Doesn't Flash have a

Re: Embedded YouTube movies

2008-04-21 Thread Torrent Girl
And still the crowd yells for more. What exactly is the value for video? Can you go to that link in your browser (and it comes up?) On Mon, Apr 21, 2008 at 10:54 AM, Torrent Girl [EMAIL PROTECTED] wrote: Yes the movie comes up in the browser when i go directly to it.

Re: Embedded YouTube movies

2008-04-21 Thread Jerry Johnson
What is the url? On Mon, Apr 21, 2008 at 11:12 AM, Torrent Girl [EMAIL PROTECTED] wrote: And still the crowd yells for more. What exactly is the value for video? Can you go to that link in your browser (and it comes up?) On Mon, Apr 21, 2008 at 10:54 AM, Torrent Girl [EMAIL PROTECTED]

Re: CF8.0.1 - GC overhead limit exceeded?

2008-04-21 Thread James Blaha
I raised the Max JVM Heap Size on my cf8 ent server from 1024 to 1236 and was able to get to the root cause. I have a scheduled job that opens a SFTP connection and looks at a directory. cfftp action = LISTDIR stopOnError = Yes name = ListFiles timeout=300 directory = /myFiles/ connection

Re: Embedded YouTube movies

2008-04-21 Thread Mik Muller
I find this works for me. I've actually embedded it into the ActivateURL() by Joel Mueller, updated by Lucas Sherwood. /* thisURL = {youtube url} */ object width=425 height=350 param name=movie value=http://www.youtube.com/v/' listFirst(listrest(thisURL,=),) '/param param name=wmode

Re: Embedded YouTube movies

2008-04-21 Thread Jim Wright
On Mon, Apr 21, 2008 at 10:35 AM, Torrent Girl [EMAIL PROTECTED] wrote: Hi All. I would like to allow site visitors to post a link to their youtube video to a database and then I output the link as a variable. It is not working. Has any successfully done this before? See my code below.

having issues populating information to a new window

2008-04-21 Thread Nisher
hello, I am working on a custom form for a cms system in coldfusion. what i am doing is attempting to set a new option in a dropdown list to be 5 custom. when you click on the edit button a new window pops up which gives you the course.edit.cfm. within this window is the dropdown list i am

RE: Adobe Spry Menu and Flash - Last Try

2008-04-21 Thread Robert Harrison
Doesn't Flash have a z-index property for the embed tags ... I think it was wmode :-) Yes, but layering is not the problem. It's more like the Spry menus and Flash animation are using the same resources on the video card or the same locations in memory. We can make it work fine with flash that

cfquery and mysql help

2008-04-21 Thread Richard White
Hi, im sure there must be a better way of doing the following code, and much quicker. i have a query which is built up from data in excel - so i used a excel2query function on it i want to check through the database to see if any of the items within my query exist in the database. so i am

Re: Embedded YouTube movies

2008-04-21 Thread Torrent Girl
What is the url? On Mon, Apr 21, 2008 at 11:12 AM, Torrent Girl [EMAIL PROTECTED] wrote: I am testing random youTube videos so i don't have a specific one yet try this one http://www.youtube.com/watch?v=Dzr32OqGlOA ~|

RE: cfquery and mysql help

2008-04-21 Thread Andy Matthews
Do you have the query? -Original Message- From: Richard White [mailto:[EMAIL PROTECTED] Sent: Monday, April 21, 2008 10:53 AM To: CF-Talk Subject: cfquery and mysql help Hi, im sure there must be a better way of doing the following code, and much quicker. i have a query which is

RE: URL re-write SEO friendly

2008-04-21 Thread Bryan Stevenson
Hi All, First off...the question was how to do it the way this SEO company is aksing. So let's clarify shall we 1) We currently transform this: http://www.domainname.com/index.cfm?pg=listing_detailsid=83hit=1popup=0 into this:

Re: URL re-write SEO friendly

2008-04-21 Thread Paul Stewart
Does google find this http://www.domainname.com/index.cfm/pg/listing_details/id/83/hit/1/popup/0 more friendly than this http://www.domainname.com/index.cfm?pg=listing_detailsid=83hit=1popup=0 Bryan Stevenson wrote: Hi All, First off...the question was how to do it the way this SEO

RE: Embedded YouTube movies

2008-04-21 Thread Bobby Hartsfield
http://www.youtube.com/watch?v=Dzr32OqGlOA would convert to http://www.youtube.com/v/Dzr32OqGlOA for embedding the video just try doing this to your URLs to get them ready for the embed portion #rereplace(theurl, '\?|=', '/', 'all')# ..:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield

RE: Proxy Authentication with Oracle - Does ColdFusion Support th is?

2008-04-21 Thread Dave Watts
If the proxy user supports using a password, you could always override the values supplied in the ColdFusion datasource at runtime. CFQUERY takes an optional setting of username and password. If you plug the proxy user information into those optional values, it will use those

RE: Proxy Authentication with Oracle - Does ColdFusion Support th is?

2008-04-21 Thread Dave Watts
Is there a workaround? Speaking of .NET/C#, to discern the identity of the actual user while keeping the benefits of pooling, the following two approaches can be used: Proxy Authentication using C#: String oradb = Data Source=OraDb;User Id=ActualUser;Password=secret;

RE: URL re-write SEO friendly

2008-04-21 Thread Dave Watts
So how does one go about doing this WITHOUT an Apache mod rewrite (as this is hosted on Windows for better or for worse) There are mod_rewrite analogues for Windows/IIS, such as ISAPI_Rewrite. Alternatively, you could use CF to rewrite URLs for you, although I doubt that would perform as

Re: URL re-write SEO friendly

2008-04-21 Thread Bryan Stevenson
Does google find this http://www.domainname.com/index.cfm/pg/listing_details/id/83/hit/1/popup/0 more friendly than this http://www.domainname.com/index.cfm?pg=listing_detailsid=83hit=1popup=0 Sorry if I seem frustrated Paul, but so far I've been told I didn't ask a

Re: cfquery and mysql help

2008-04-21 Thread Richard White
hi andy query 1 has 2 columns firstName and lastName then i want to query the database to ensure that each firstName and lastName combination exists in the database, if not then i want it to return me a list of those that dont. i have achieved this through a loop but i am thinking there must

RE: URL re-write SEO friendly

2008-04-21 Thread Bobby Hartsfield
Thanks all for keeping the useless bandwidth usage down ;-) We all live out 'californeeway' and have plenty of 'internets' to spare so we waste it all day long ;-) Besides... you started it :-) THE QUESTION (for those that couldn't find it..hehe) There was no question until your second post...

Re: URL re-write SEO friendly

2008-04-21 Thread Dominic Watson
I have used ISAPI_Rewrite for IIS, excellent and only $99 per server. http://www.isapirewrite.com/ You'll probably need help setting up the regex rules and the like - but help is always at hand it seems (not from me tho) Dominic -- Blog it up: http://fusion.dominicwatson.co.uk

RE: URL re-write SEO friendly

2008-04-21 Thread Mark Kruger
Dominic, There is one called IsapiRewrite4 by Phil Hazel from the uk. It is open source and free And it seems to perform well - with no difference between it and the commercial verison referenced below. -Mark Mark A. Kruger, CFG, MCSE (402) 408-3733 ext 105 www.cfwebtools.com

Reading sessiontimeout dynamically

2008-04-21 Thread Bobby Hartsfield
Does anyone know of a way (or if it's even possible) to programmatically read the sessiontimeout value of a CF app? ..:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com http://cf4em.com ~| Adobe®

Re: URL re-write SEO friendly

2008-04-21 Thread Dominic Watson
There is one called IsapiRewrite4 by Phil Hazel from the uk. It is open source and free :) Good news thanks - opensource AND uk! I have only used ISAPI_rewrite within a company who inherited a project that used it; never bought it for myself, though I have been on the verge of doing so.

cfquery options and connection pooling

2008-04-21 Thread Maureen Barger
I am trying to figure out the technical ramifications of defining the username and password for a specific DSN in a separate text file and how it may relate to connection pooling v. supplying the user/pass directly in the DSN. Once the file is loaded, user and password are passed to cfqueries

RE: URL re-write SEO friendly

2008-04-21 Thread Bryan Stevenson
Thanks Dominic and Mark...straight answersI like that ;-) 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: URL re-write SEO friendly

2008-04-21 Thread Dominic Watson
Thanks Dominic and Mark...straight answersI like that ;-) Lol, my favourite responses: 'Why would you want to do that? (fool)' or 'Why don't you just...???' (fool) ;) -- Blog it up: http://fusion.dominicwatson.co.uk

RE: cfquery options and connection pooling

2008-04-21 Thread Dave Watts
I am trying to figure out the technical ramifications of defining the username and password for a specific DSN in a separate text file and how it may relate to connection pooling v. supplying the user/pass directly in the DSN. Once the file is loaded, user and password are passed to

RE: URL re-write SEO friendly

2008-04-21 Thread Dave Watts
Lol, my favourite responses: 'Why would you want to do that? (fool)' or 'Why don't you just...???' (fool) Sometimes - very often, actually - that is the correct response. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Training: Adobe/Google/Paperthin Certified

RE: Proxy Authentication with Oracle - Does ColdFusion Support th is?

2008-04-21 Thread mailme
Is the pooling not smart enough to go looking for a connection that already uses those credentials? If it is smart enough, how would this be a bad thing? Unless you have a really high traffic site? Not looking to be a wise ass here, just expressing curiosity as this is bound to come up

Re: Reading sessiontimeout dynamically

2008-04-21 Thread Barney Boisvert
You can read the request timeout from the internal Java singletons underlying CF: http://www.barneyb.com/barneyblog/2007/08/17/requestmonitorgetrequesttimeout/ I'd imagine that reading the session timeout would be similarly accomplished, though you'd need to find the session monitor, not the

Re: cfquery options and connection pooling

2008-04-21 Thread Maureen Barger
thanks, we are using Oracle driver provided in the macromedia.jar, 3.5 since Oracle's own driver does not support stored procedures. On Mon, Apr 21, 2008 at 1:56 PM, Dave Watts [EMAIL PROTECTED] wrote: I am trying to figure out the technical ramifications of defining the username and

Re: URL re-write SEO friendly

2008-04-21 Thread Dominic Watson
Sometimes - very often, actually - that is the correct response. ;) agreed, but when written in that way the subtext is very obviously just 'fool', especially the second one (used all the time). 'Why don't you just...' can usually be replaced with 'This is how... and look this up in google to

RE: Proxy Authentication with Oracle - Does ColdFusion Support th is?

2008-04-21 Thread Dave Watts
Is the pooling not smart enough to go looking for a connection that already uses those credentials? If it is smart enough, how would this be a bad thing? Unless you have a really high traffic site? Not looking to be a wise ass here, just expressing curiosity as this is bound to come up

RE: URL re-write SEO friendly

2008-04-21 Thread Andy Matthews
I'll second ISAPI_REWRITE... -Original Message- From: Dominic Watson [mailto:[EMAIL PROTECTED] Sent: Monday, April 21, 2008 12:24 PM To: CF-Talk Subject: Re: URL re-write SEO friendly I have used ISAPI_Rewrite for IIS, excellent and only $99 per server. http://www.isapirewrite.com/

RE: Reading sessiontimeout dynamically

2008-04-21 Thread Bobby Hartsfield
Hey thanks Barney. Good stuff. Even if I don't find what I'm looking for in there, I'm sure I'll find something useful! ..:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com http://cf4em.com -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Monday,

RE: Embedded YouTube movies

2008-04-21 Thread Mike Francisco
Also, don't forget to escape/replace the tag parameter double quotes with single quotes. Example: object width=425 into object width='425' ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date

Re: cfquery and mysql help

2008-04-21 Thread Matt Gutting
You could try something like cfquery name=combined dbtype=query SELECT firstName, lastName FROM query1 WHERE NOT EXISTS ( SELECT firstName, lastName FROM query2 WHERE firstName = query1.firstName AND lastName = query1.lastName ) /cfquery No guarantees - this

RE: Embedded YouTube movies

2008-04-21 Thread Bobby Hartsfield
Just curious but why? ..:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com http://cf4em.com -Original Message- From: Mike Francisco [mailto:[EMAIL PROTECTED] Sent: Monday, April 21, 2008 2:25 PM To: CF-Talk Subject: RE: Embedded YouTube movies Also, don't forget to

RE: Proxy Authentication with Oracle - Does ColdFusion Support th is?

2008-04-21 Thread mailme
But isn't that what the OP wanted? The ability to have auditing based on user authentication over the datasource and the session it creates (not just as a login to a table)? Wouldn't a datasource created at the J2EE server behave the same way? I would assume that the ASP pool would work

RE: Strange Behavior - stumped

2008-04-21 Thread Jenny Gavin-Wear
working fine here .. IE and FF -Original Message- From: Brad Wood [mailto:[EMAIL PROTECTED] Sent: 16 April 2008 22:39 To: CF-Talk Subject: RE: Strange Behavior - stumped Nevermind. Must have been a server restart. It works fine for me now. IE 7, 4:38 pm. ~Brad -Original

RE: Proxy Authentication with Oracle - Does ColdFusion Support th is?

2008-04-21 Thread Dave Watts
But isn't that what the OP wanted? The ability to have auditing based on user authentication over the datasource and the session it creates (not just as a login to a table)? Wouldn't a datasource created at the J2EE server behave the same way? I would assume that the ASP pool would

RE: Embedded YouTube movies

2008-04-21 Thread Mike Francisco
Ooops, my bad... I did not read the original problem correctly. -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: Monday, April 21, 2008 11:34 AM To: CF-Talk Subject: RE: Embedded YouTube movies Just curious but why?

Re: Strange Behavior - stumped

2008-04-21 Thread Dominic Watson
On some browser this page shows up fine, on other the page is garbled. Can you see this page ok? No problems here: IE7 FF2 Windows XP Pro, SP2 Dominic -- Blog it up: http://fusion.dominicwatson.co.uk ~| Adobe® ColdFusion® 8

RE: URL re-write SEO friendly

2008-04-21 Thread Mark Kruger
I confess to not having a clue as to what is going on here.. A pop culture inside joke is my best guess :) Mark -Original Message- From: Dominic Watson [mailto:[EMAIL PROTECTED] Sent: Monday, April 21, 2008 1:03 PM To: CF-Talk Subject: Re: URL re-write SEO friendly Sometimes - very

Re: Embedded YouTube movies

2008-04-21 Thread Torrent Girl
You can't just put the browser URL in... the Flash Movie needs a slightly different URL, thus the string manipulation shown above. Mik I am using the code provided by youtube: object width=425 height=355param name=movie value=http://www.youtube.com/v/61_UIFQHLv8hl=enrel=0;/paramparam

Re: Embedded YouTube movies

2008-04-21 Thread Torrent Girl
On Mon, Apr 21, 2008 at 10:35 AM, Torrent Girl [EMAIL PROTECTED] wrote: Hi All. I would like to allow site visitors to post a link to their youtube video to a database and then I output the link as a variable. It is not working. Has any successfully done this before? See my

RE: Embedded YouTube movies

2008-04-21 Thread Steve Brownlee
Plz send me teh codez -Original Message- From: Torrent Girl [mailto:[EMAIL PROTECTED] Sent: Monday, April 21, 2008 1:35 PM To: CF-Talk Subject: Re: Embedded YouTube movies On Mon, Apr 21, 2008 at 10:35 AM, Torrent Girl [EMAIL PROTECTED] wrote: Hi All. I would like to allow

Re: Embedded YouTube movies

2008-04-21 Thread Crow T. Robot
Please do my work for me...again. On Mon, Apr 21, 2008 at 2:10 PM, Steve Brownlee [EMAIL PROTECTED] wrote: Plz send me teh codez -Original Message- From: Torrent Girl [mailto:[EMAIL PROTECTED] Sent: Monday, April 21, 2008 1:35 PM To: CF-Talk Subject: Re: Embedded YouTube

Re: cfquery and mysql help

2008-04-21 Thread Richard White
thanks Matt, i will see if this works in query on query You could try something like cfquery name=combined dbtype=query SELECT firstName, lastName FROM query1 WHERE NOT EXISTS ( SELECT firstName, lastName FROM query2 WHERE firstName = query1.firstName

Re: Embedded YouTube movies

2008-04-21 Thread Mik Muller
You have too much stuff in there. Lose the hl=enrel=0 embed src=http://www.youtube.com/v/fmACYY3_LXo; Mik At 03:02 PM 4/21/2008, Torrent Girl wrote: You can't just put the browser URL in... the Flash Movie needs a slightly different URL, thus the string manipulation shown above. Mik

Re: Ajax: Who's into Ajax and Business Cases

2008-04-21 Thread Don L
Don: If you want to ask questions about AJAX, there are a vast number of other resources available to you. Each of the major libraries has their own message board or Google group. Here's some URLs to get you started... http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid=72catid

Re: Embedded YouTube movies

2008-04-21 Thread Jim Wright
On Mon, Apr 21, 2008 at 2:34 PM, Torrent Girl [EMAIL PROTECTED] wrote: Is that all of your code? If not would you mind posting it all. The code that I am using is very similar to the code you postedit just makes sure to use the correct URL.

RE: Reading sessiontimeout dynamically

2008-04-21 Thread Bobby Hartsfield
Thanks again barney, your suggestion lead me down the right path. I'm just posting what I came up with for the sake of the archives. The only place I could find to use getMaxInactiveInterval() was on an actual node inside the returned structure of getSessionCollection(). I don't like the loop

NEED HELP ASAP-meta.cfc

2008-04-21 Thread Stone, Lori
I am having to update the metadata(just the title) in a ton of documents. I am trying to use the meta.cfc and I keep getting an object instantiation error on line 158 of meta.cfc dsi = createobject(java, org.apache.poi.hpsf.DocumentSummaryInformation).init(ps); It works fine

Re: Grouping emails by domain

2008-04-21 Thread Mik Muller
Anybody have any advice? Not looking for code samples, just advice on grouping email blasts by domain to minimize the number of SMTP connections. Would the CFMAIL GROUP attribute help? Should I loop over my userbase by top level domain and chunk it out that way? Mik At 03:37 PM 4/20/2008,

Accessibility tools

2008-04-21 Thread Stone, Lori
Any thoughts on section 508 compliance tools? Pro's and Con's of tools used would be greatly appreciated! Thanks!!! -Lori ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free

Re: Grouping emails by domain

2008-04-21 Thread Jochem van Dieten
Michael Muller wrote: I've been having trouble sending opt-in posts to a local university. They cite that each post on my website results in 250 unique smtp sessions to their mail server, and that they'd prefer one session per post. This is a reasonable request, and would probably help with

RE: URL re-write SEO friendly

2008-04-21 Thread Russ
-Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Monday, April 21, 2008 12:14 PM To: CF-Talk Subject: RE: URL re-write SEO friendly Hi All, First off...the question was how to do it the way this SEO company is aksing. So let's clarify shall we

Re: Reading sessiontimeout dynamically

2008-04-21 Thread Barney Boisvert
Glad that got you going. You can ask for the key list of a structure using structKeyList, and then just pull out the first key using listFirst. cheers, barneyb On Mon, Apr 21, 2008 at 12:42 PM, Bobby Hartsfield [EMAIL PROTECTED] wrote: Thanks again barney, your suggestion lead me down the

RE: Reading sessiontimeout dynamically

2008-04-21 Thread Bobby Hartsfield
Ha! Of course you can... *blush* Thanks :-) ..:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com http://cf4em.com -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Monday, April 21, 2008 4:38 PM To: CF-Talk Subject: Re: Reading sessiontimeout

Re: output column average using coldfusion

2008-04-21 Thread Brian Kotek
Use the AVG aggregate function. I think you really need to take a step back from what you're doing and spend some time learning basic SQL, because a huge number of the issues you've been posting about would be immediately solved if you had an understanding of joins and aggregate functions. There

RE: Embedded YouTube movies

2008-04-21 Thread Bobby Hartsfield
cffunction name=embedYouToobVideo access=public hint=EMbeds a youtube video for lazy people cfargument name=theurl required=true hint=Either the YouToob page url or the actual video url / cfargument name=width required=false default=425 hint=Width of the video / cfargument

Reading data from a website

2008-04-21 Thread Rob Parkhill
Good day, I have been tasked to get temperature data on a daily basis from a website. I thought that I had seen something about this from somewhere, but can't seem to put my finger on it, so, Is there a way that I can automatically get data from another website that is stored in a table, by

RE: Reading sessiontimeout dynamically

2008-04-21 Thread Bobby Hartsfield
Here it is again without the loop just for the sake of archive searches. cfscript function getSessionTimeout(appName) { var i = 1; var sessionTiemOutValue = 'Unkown'; var tracker =

Re: Reading data from a website

2008-04-21 Thread Dominic Watson
I have been tasked to get temperature data on a daily basis from a website Good evening, This very much depends on a couple of factors: * If you own the application that is publishing the temperatures - You could create a webservice that other applications can access, - You could publish

Re: Reading data from a website

2008-04-21 Thread Charlie Griefer
On Mon, Apr 21, 2008 at 1:57 PM, Rob Parkhill [EMAIL PROTECTED] wrote: Good day, I have been tasked to get temperature data on a daily basis from a website. I thought that I had seen something about this from somewhere, but can't seem to put my finger on it, so, Is there a way that I can

RE: Reading data from a website

2008-04-21 Thread Dave Watts
I have been tasked to get temperature data on a daily basis from a website. I thought that I had seen something about this from somewhere, but can't seem to put my finger on it, so, Is there a way that I can automatically get data from another website that is stored in a table, by

Re: Reading data from a website

2008-04-21 Thread Ron Gowen
http://tutorial451.easycfm.com/ :) On 4/21/08, Dave Watts [EMAIL PROTECTED] wrote: I have been tasked to get temperature data on a daily basis from a website. I thought that I had seen something about this from somewhere, but can't seem to put my finger on it, so, Is there a way that

CFLAYOUTAREA - Attaching an ONRESIZE event

2008-04-21 Thread Paul Cormier
Any ideas? I need to run some Javascript whenever the center cflayoutarea's size changes. This might be from: a) The browser window being resized b) An adjoining splitter is moved c) An adjoining sliding panel is collapsed It seems I should be able to attach an event to that center DIV. The

RE: URL re-write SEO friendly

2008-04-21 Thread Bryan Stevenson
Don't let the fact that you're running on Windows keep you from enjoying the awesomeness that is Apache. Russ Shared server Russ 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:

  1   2   >