RE: CF and Java integration..

2003-11-19 Thread Craig Dudley
Not specific to CFMX but have a look at http://javaalmanac.com/egs/? Some very useful examples. -Original Message- From: Hassan Arteaga Rodriguez [mailto:[EMAIL PROTECTED] Sent: 18 November 2003 22:26 To: CF-Talk Subject: CF and Java integration.. Hi all: I'm looking

RE: Unblocking Ports

2003-11-19 Thread Kennerly, Rick H CIV
It all depends on the version of your server(s) and your network configuration and what you need to do.Normally anymore, ports in out of your system are opened and closed at the firewall(s), but depending on your equipment, layout, needs there are other places and methods that need to be checked

Re: Altering Date Objects?

2003-11-19 Thread Craig Earls
An immutable object is one that cannot be changed .Like a string in Java.The only way to change it is to create a new one based on the old with with the modifications you need.The answer to your last question is that it doesn't really matter.I am just so new to CF that I thought I was missing some

Which patches installed on a CF5 server

2003-11-19 Thread d.a.collie
Hi, I've had a root about and sorry, just can't find the info anywhere. How do you determine which patches are installed on an instance of CF5 Server? It's for a ISO 9001 procedure Thanks, -dc [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

REPOST: Creating treeview structure using cfftp? HOW COME NO ONE IS REPLYING???

2003-11-19 Thread Bushy
Hi, Is it possible to create a treeview structure using cfftp similar to the following and by clicking on the directory will drilldown? + dir1 + dir2 + dir3 + dir4 Click on dir2 + dir2 + subdir1 + subdir2 file1 file1 file1 I've done something similar using cfdirectory and cfloop but I'm stuck

RE: nesting output from 2 queries

2003-11-19 Thread Bert Dawson
One feature of nesting cfloop query=.. you should be aware of is that if you reference the outer query from inside the inner query it will always return the first row: cfloop query=query1 #query1.myCol# cfloop query=query2 #query1.myCol# --- this will always be row 1 of query1, i.e

Query to structure

2003-11-19 Thread Ryan Mitchell
Hello I have a query which returns one row with a lot of columns... I want to take the query and convert it to a structure, with the key being the column name and the value being the value of the column... How do you do this? Ryan [Todays Threads] [This Message] [Subscription] [Fast

RE: nesting output from 2 queries

2003-11-19 Thread Tim Laureska
Thanks to all that replied ...I ended up not having to do the nested loop scenario, but now at least I know that capability is there -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 18, 2003 3:15 PM To: CF-Talk Subject: RE: nesting output from 2

RE: nesting output from 2 queries

2003-11-19 Thread Tim Laureska
Yes Bert... I discovered that in my attempts Thanks for sharing that Tim -Original Message- From: Bert Dawson [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 19, 2003 7:35 AM To: CF-Talk Subject: RE: nesting output from 2 queries One feature of nesting cfloop query=.. you should be

RE: Query to structure

2003-11-19 Thread Mike Townend
You could try something like... CFQUERY NAME=qry... /CFQUERY CFSET strQuery = StructNew() CFLOOP LIST=#qry.ColumnList# INDEX=idxColumn CFSET strQuery[idxColumn] = qry[idxColumn][1] /CFLOOP CFDUMP VAR=#strQuery# HTH -Original Message- From: Ryan Mitchell [mailto:[EMAIL

RE: Query to structure

2003-11-19 Thread Tim Blair
Ryan, I want to take the query and convert it to a structure, with the key being the column name and the value being the value of the column... Simply loop over the column list: cfset mystruct = structnew() cfloop list=#myquery.columnList# index=col cfset mystruct[col] = myquery[col]

Re: Query to structure

2003-11-19 Thread Ryan Mitchell
Thanks :) On 19/11/03 12:51 pm, Tim Blair [EMAIL PROTECTED] wrote: Ryan, I want to take the query and convert it to a structure, with the key being the column name and the value being the value of the column... Simply loop over the column list: cfset mystruct = structnew() cfloop

RE: Altering Date Objects?

2003-11-19 Thread Pascal Peters
Date is not an object in cf, just a string. Cf just recognizes some strings as dates. -Oorspronkelijk bericht- Van: Craig Earls [mailto:[EMAIL PROTECTED] Verzonden: wo 19/11/2003 12:39 Aan: CF-Talk CC: Onderwerp: Re: Altering Date Objects? An immutable object is one that

Re: SOT: OO Design

2003-11-19 Thread Deanna Schneider
There is no relational model yet. There's only thoughts and a few rough diagrams on paper. So, it's not too late for anything. The hours/funny money vs. consumables thing is just coming from our use-case type discussions. They seem vastly different to me. For example: Hours: must be related to a

Re: Query to structure

2003-11-19 Thread Deanna Schneider
There's also a UDF on cflib.org that does this. -d - Original Message - From: Ryan Mitchell [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, November 19, 2003 7:14 AM Subject: Re: Query to structure Thanks :) On 19/11/03 12:51 pm, Tim Blair [EMAIL PROTECTED] wrote:

RE: kloodge

2003-11-19 Thread Bert Dawson
rename with attributes=normal does the trick on windows: cffile action=""> source=#GetCurrentTemplatePath()# destination=#GetCurrentTemplatePath()# attributes=Normal Not sure if that’s a kloodge... Bert -Original Message- From: Kyle McNamara [mailto:[EMAIL PROTECTED] Sent: 18

Problem with Dates and Access

2003-11-19 Thread Mickael
Hello All, I am having a little problem with writing a date in the format mm/dd/ to an access database.I have a text file that is uploaded to a server which I insert into a database, the file fields are is importing properly there is one field in my database for when the file is run. So I do

RE: Problem with Dates and Access

2003-11-19 Thread Pascal Peters
No dateformat. Just do CreateODBCDate(Now()) -Oorspronkelijk bericht- Van: Mickael [mailto:[EMAIL PROTECTED] Verzonden: wo 19/11/2003 15:26 Aan: CF-Talk CC: Onderwerp: Problem with Dates and Access Hello All, I am having a little problem with writing a date in the

Installing ImageMagick

2003-11-19 Thread John Burns
Does anyone know of any instructions for installing ImageMagick for CF?I'm new to using external libraries and the only one I've installed before is ImageJ which came with CF instructions.If someone could let me know what I need to do (if anything) for CF to see the ImageMagick install and then

Re: Problem with Dates and Access

2003-11-19 Thread Mickael
And then just mask the display on the website? - Original Message - From: Pascal Peters To: CF-Talk Sent: Wednesday, November 19, 2003 9:40 AM Subject: RE: Problem with Dates and Access No dateformat. Just do CreateODBCDate(Now()) -Oorspronkelijk bericht- Van: Mickael

Inappropriate Authentication

2003-11-19 Thread DeMarco, Alex
Trying to get CFMX 6.1 to talk to ActiveDirectory and I get the above error. Since I do not control the AD setup what do I need to tell our admin in order to get this to work? Thanks! - Alex [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Which Authorize.net tag/CFX?

2003-11-19 Thread stas
Could anyone comment on their experiences with available tags? Thanks! [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Sheduled Tasks

2003-11-19 Thread Mickael
Hello All, Is there a way to set a scheduled task to run once a month on the last day of the month.How is this done using the CF5 admin? TIA Mike [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Problem with Dates and Access

2003-11-19 Thread Pascal Peters
Yes, should work -Oorspronkelijk bericht- Van: Mickael [mailto:[EMAIL PROTECTED] Verzonden: wo 19/11/2003 15:40 Aan: CF-Talk CC: Onderwerp: Re: Problem with Dates and Access And then just mask the display on the website? - Original Message - From: Pascal Peters

Trapping COM Errors - MSXML

2003-11-19 Thread M C
Our ColdFusion 5 server has been restarting once per day because it is set to Restart when requests terminate abnormally. I tracked down the error to the MSXML COM object, which behaves similar to CFHTTP. Occasionally, when it does not receive a response from the server it is calling, it throws an

Re: Problem with Dates and Access

2003-11-19 Thread Mickael
Thanks :) - Original Message - From: Pascal Peters To: CF-Talk Sent: Wednesday, November 19, 2003 10:56 AM Subject: RE: Problem with Dates and Access Yes, should work -Oorspronkelijk bericht- Van: Mickael [mailto:[EMAIL PROTECTED] Verzonden: wo 19/11/2003 15:40 Aan: CF-Talk

AOL and Macromedia and AIM-ICQ

2003-11-19 Thread Mike Brunt
I just came across this article on C-Net, “Macromedia developers get a shot at AIM”.It revolves around Macromedia Central which if you have not tried yet is well worth a look.What with Flex and now this MM are really giving us many opportunities to prosper IMHO.

RE: CF and Java integration..

2003-11-19 Thread Hassan Arteaga Rodriguez
Thanks a lot !! -- M.Sc. Hassan Arteaga Rodrguez. Microsoft Certified System Engineer. Grupo de Desarrollo. DIGI COPEXTEL, S.A -Original Message- From: Craig Dudley [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 19, 2003 3:09 AM To: CF-Talk Subject: RE: CF and Java integration..

RE: Installing ImageMagick

2003-11-19 Thread Nathan Strutz
Well, you need to call it via cfexecute, so if they have it installed, that probably just means they have it unzipped in a directory somewhere. Ask them where it is and if you have access to it... If not, you could upload it with your site. It's just a bunch of EXE files and some extra library

IE6.0 Error!!

2003-11-19 Thread Hassan Arteaga Rodriguez
I installed MSDN in my PC with IE6.0. Now when i try to access to the left frame in ColdFusion Administrator i got an error message. I can't remember where i read about it.who can help me to remember? Regards, -- M.Sc. Hassan Arteaga Rodrguez. Microsoft Certified System Engineer. Grupo de

RE: AOL and Macromedia and AIM-ICQ

2003-11-19 Thread Stacy Young
Yes, I think that's awesome...especially since IM is seeping deeper and deeper into our workflow. Great news. Stace _ From: Mike Brunt [mailto:[EMAIL PROTECTED] Sent: November 19, 2003 11:16 AM To: CF-Talk Subject: AOL and Macromedia and AIM-ICQ I just came across this article on C-Net,

RE: IE6.0 Error!!

2003-11-19 Thread John Beynon
You installed MSDN? Can you clarify what you mean by that, do you mean MSDE? -Original Message- From: Hassan Arteaga Rodriguez [mailto:[EMAIL PROTECTED] Sent: 19 November 2003 17:29 To: CF-Talk Subject: IE6.0 Error!! I installed MSDN in my PC with IE6.0. Now when i try to access to the

Active Directory LDAP and Security on Windows 2003

2003-11-19 Thread Robert Everland III
I am trying to follow the process set up by Macromedia to authenticate on an active directory through LDAP on a Windows 2003 server. Does anyone know if any security needs to be changed in order to authenticate on it? I am having issues getting a domain user to authenticate. [Todays Threads]

RE: IE6.0 Error!!

2003-11-19 Thread Hassan Arteaga Rodriguez
Microsoft Developer Network ..i'm talking about the last action i made in my PC after that IE 6.0 in Cold Fusion Administrator send me error. Regards -- M.Sc. Hassan Arteaga Rodrguez. Microsoft Certified System Engineer. Grupo de Desarrollo. DIGI COPEXTEL, S.A -Original Message-

Array Sum

2003-11-19 Thread Ben Densmore
Can someone tell me why this won't work correctly. I have the following code code cfloop from=1 to=#clickCount# index=i cfset prodLinkTotal = ArrayNew(1) cfset prodLinkTotal[i] = clicks_per_product.click[i] cfoutput#ArraySum(prodLinkTotal[i])#/cfoutput /cfloop /code Rightnow the

RE: Array Sum

2003-11-19 Thread Philip Arnold
Why are you re-creating the array every iteration of the loop? Also, is clicks_per_product.click[i] an array? if not, then you can't ArraySum it -Original Message- From: Ben Densmore [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 19, 2003 11:51 AM To: CF-Talk Subject: Array Sum

RE: Array Sum

2003-11-19 Thread DURETTE, STEVEN J (AIT)
Ben, First, you should be creating the array outside of the loop. Next, you are always displaying the sum of the current position of the array not a sum of the whole array. I think that this should work better. code cfset prodLinkTotal = arrayNew(1) cfloop from=1 to=#clickCount# index=i

RE: REPOST: Creating treeview structure using cfftp? HOW COME NO ONE IS REPLYING???

2003-11-19 Thread DURETTE, STEVEN J (AIT)
Bushy, I don't think what you are asking is possible.Unless in your cfftp you loop through and get the directories and subdirectories first and then display them in the tree form. Could you post your cfdirectory code and I will see if I can come up with something. Steve -Original

How are UDFs referenced/created...

2003-11-19 Thread Tyler Silcox
I'm trying something new out for all my UDFs and I wanted to get a little feedback if I could... I just started loading all my UDFs into a structure in the application scope called UDFs.So that if I wanted to call GetFileSizeFormat, I would do: #application.UDFs.GetFileSizeFormat(123456)#

RE: Array Sum

2003-11-19 Thread Ben Densmore
Yeah I didn't realize I was recreating the array at every iteration, that was an oversight. clicks_per_product.click[i] is a query but I thought by putting setting prodLinkTotal which is an array to clicks_per_product.click[i] would turn that into an array? I can get the values I need just can't

RE: Array Sum

2003-11-19 Thread Ben Densmore
Steven, The arrayappend function doesn't like the clicks_per_product.click[i], it's treating it as a Boolean value and I'm not sure why when it is actually a number. Ben -Original Message- From: DURETTE, STEVEN J (AIT) [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 19, 2003 12:08

RE: Array Sum

2003-11-19 Thread Patricia G. L. Hall
Yeah I didn't realize I was recreating the array at every iteration, that was an oversight. clicks_per_product.click[i] is a query but I thought by putting setting prodLinkTotal which is an array to clicks_per_product.click[i] would turn that into an array? I can get the values I need just

RE: Array Sum

2003-11-19 Thread Ben Densmore
Thanks Patti that worked. Ben -Original Message- From: Patricia G. L. Hall [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 19, 2003 8:44 AM To: CF-Talk Subject: RE: Array Sum Yeah I didn't realize I was recreating the array at every iteration, that was an oversight.

getRowCount() differences

2003-11-19 Thread Ben Densmore
Is there a difference in the getRowCount() method between CF 5 and MX 6.1? We just upgraded our development server to MX but our live server is still at 5 for the time being. I was using getRowCount() to count the rows in my query which worked great on the development server but when I uploaded to

it's my IE6.0 Browser error ?

2003-11-19 Thread Hassan Arteaga Rodriguez
Hi all: Some times when i trying to make chart using cfchart tag i can't see the image/flash as a result in the browser howeverin the CFusionMX\charting\cache the files are created... Regards, -- M.Sc. Hassan Arteaga Rodrguez. Microsoft Certified System Engineer. Grupo de Desarrollo. DIGI

it's my IE6.0 Browser error ?

2003-11-19 Thread Hassan Arteaga Rodriguez
Hi all: Some times when i trying to make chart using cfchart tag i can't see the image/flash as a result in the browser howeverin the CFusionMX\charting\cache the files are created... Regards, -- M.Sc. Hassan Arteaga Rodrguez. Microsoft Certified System Engineer. Grupo de Desarrollo.

Re:REPOST: Creating

2003-11-19 Thread Jeremy Brodie
I'll agree with Steven on this one for the most part. CFTP is for moving files from/to an FTP server to a Cold Fusion Server. To put it in another way, the Cold Fusion Server is the client and some FTP server out there is the server! There is a list function within FTP, however in my experiance

PayPal...

2003-11-19 Thread Schuster, Steven
Does anyone have info on using PayPal with Cold Fusion, is it easy, hard, etc .etc. Any free tags out there and the such or links? Thanks, Stephen [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: cftag for Zipping

2003-11-19 Thread Samuel R. Neff
These will work on CFMX 6.1, any OS: zip: http://www.cflib.org/udf.cfm?ID=744 unzip: http://www.rewindlife.com/archives/41.cfm btw, both of these are on cflib.org--it's a good resource for udf's. Sam --- Blog: http://www.rewindlife.com Charts:

RE: PayPal...

2003-11-19 Thread Eric Creese
easycfm.com has a tutorial -Original Message- From: Schuster, Steven [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 19, 2003 12:21 PM To: CF-Talk Subject: PayPal... Does anyone have info on using PayPal with Cold Fusion, is it easy, hard, etc .etc. Any free tags out there and the

RE: REPOST: Creating treeview structure using cfftp? HOW COME NO ONE IS REPLYING???

2003-11-19 Thread J E VanOver
There are many excellent examples of using CFFILE and CFFTP in all versions of Ben Forta's CFWACK.His books can be bought for less than $5 on Amazon. I can't recommend highly enough that anyone programming ColdFusion should own at least ONE copy of this book.Many of the answers you seek are there.

RE: PayPal...

2003-11-19 Thread Schuster, Steven
Thanks -Original Message- From: Eric Creese [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 19, 2003 1:20 PM To: CF-Talk Subject: RE: PayPal... easycfm.com has a tutorial -Original Message- From: Schuster, Steven [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 19,

RE: REPOST: Creating treeview structure using cfftp? HOW COME NO ONE IS REPLYING???

2003-11-19 Thread Bushy
IS the book called Advanced ColdFUsion 4.0 Application Development by QUE? --Original Message Text--- From: J E VanOver Date: Wed, 19 Nov 2003 10:31:05 -0800 There are many excellent examples of using CFFILE and CFFTP in all versions of Ben Forta's CFWACK.His books can be bought for less than $5

Re: Which Authorize.net tag/CFX?

2003-11-19 Thread David Delbridge
Hi Stas, We have had good experiences with an updated version (see below) of CF_Authorize_Net_3 by Frank Banks, available in the Developer's Exchange.Tried and true, this includes the collective experience of our staff and hosting customers over several years. Granted, in that time, we have

Scheduled Tasks

2003-11-19 Thread Shannon Rhodes
I have a scheduled task set up to check the database to see if we have any mass mailings pending to go out at that time, then cfmail is used to handle the mailing, and finally the database is updated so the mailing is marked as sent.My question is how do I handle potential problems...I'm not

Re: getRowCount() differences

2003-11-19 Thread Patricia G. L. Hall
Is there a difference in the getRowCount() method between CF 5 and MX 6.1? We just upgraded our development server to MX but our live server is still at 5 for the time being. I was using getRowCount() to count the rows in my query which worked great on the development server but when I

RE: getRowCount() differences

2003-11-19 Thread Ben Densmore
Because I need the number of rows the query is returning not a count of all the items. Because the part numbers are being grouped so we only display one part number and how many clicks that particular part number gets if I used recordcount it would give me all the records returned. Ben

Quick question- give text area focus

2003-11-19 Thread Janine Jakim
I have a page that the users wanted multiple textarea fields that could be spell checked.They also wanted to be able to review all of their previous work as they were submitting it AND for the page to advance to the next box. To do that plus to keep it from being a mess of huge textarea boxes

connecting tables from multiple databases

2003-11-19 Thread Tom Kitta
This is not really a CF question, but I notice that people have posted SQL questions before and nobody minded that. I have an employee table in database A, I am using it in database A but now I also want to use it in database B. I.e. I want to include its primary key as a foreign key in tables

RE: Quick question- give text area focus

2003-11-19 Thread Tom Kitta
You need to use _javascript_ in order for this to work. I think it is something like or place it inside href=""> document.yourFormName.yourTextAreaName.focus(); I am not an expert in JS but that should do the trick. TK -Original Message- From: Janine Jakim [mailto:[EMAIL PROTECTED] Sent:

using cffile to set privs (cloodge)

2003-11-19 Thread Kyle McNamara
I am using: cffile action="" source=#attachmentString# destination=#attachmentString# attributes=normal ... to make a file writeable... it works much of the time, but not consistently sometimes I get: Attribute validation error for tag CFFILE. The value of the attribute source, which is currently

Timezone capture

2003-11-19 Thread Peter Tilbrook
This was mentioned earlier I think but I would like to add a brief comment. It is Wednesday, 19 November, about 19:40 here in Australia. Yet when I blogged on Sean Corfields blog (http://www.corfield.org/blog) it is about 8 hours behind - about right. What do others think about the discrepancy

Re:Trapping COM Errors - MSXML

2003-11-19 Thread M C
FYI, I came across the below information in the ColdFusion forums that seems related to my MSXML problems. Are there any alternatives or patches to winhttp? [begin snip] I've been able to isolate part of the timeout problem with ServerXMLHTTP as it pertains to the winhttp stack. Because

RE: JJ Allaire?

2003-11-19 Thread Peter Tilbrook
Hey ppl - this was a serious request. JJ it must be if the best anyone can prove is Jumping Jellybeans. As I am not allowed to laugh at work, or have fun of any sort, this response was most distressing. I myself have always known JJ as JJ and admire him to a high degree - but as tasked with

RE: Timezone capture

2003-11-19 Thread cf-talk
If you record/store everything in the same time zone (UTC for example) then everything will be correct.You simply do the time zone conversion before you display the data to the user's screen. I might post something at 2pm my time (PST) but it's really being posted 5pm eastern time (EST).But

RE: JJ Allaire?

2003-11-19 Thread Bill Brown
J.J. stands for Joseph J. and I can't figure out what the middle name is, but that should get you further along. http://corp.sec.state.ma.us/corp/corpsearch/CorpSearchSummary.asp?ReadFr omDB=TrueUpdateAllowed=FEIN=411830792 Or if wrapping is a problem: http://tinyurl.com/vq8y I would imagine

Multipe file uploads

2003-11-19 Thread stas
Is it possible to upload several files through one from with multiple file fields, ala AspUpload? Thanks! [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: connecting tables from multiple databases

2003-11-19 Thread Smith, Matthew P -CONT(CSC)
You can reference across dbs db1..table.column is the syntax I think.That should plug in any query as needed; I think you can alias it to keep things clean as well. -Original Message- From: Tom Kitta [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 19, 2003 1:51 PM To: CF-Talk

Re: Which Authorize.net tag/CFX?

2003-11-19 Thread Carol Chandler
I was very pleased with cfx_aim from Al Nichols of cfxworks (available in the MM exchange), especially the utility he gives you to encode the authnet password into the tag.It is currently only for Windows, but he's working on java versions of much of his stuff now, and I can't wait. Carol

RE: Multipe file uploads

2003-11-19 Thread Barney Boisvert
Yeah, you bet.Just need a CFFILE ACTION="" for each file field. _ From: stas [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 19, 2003 12:54 PM To: CF-Talk Subject: Multipe file uploads Is it possible to upload several files through one from with multiple file fields, ala AspUpload?

Re: RE: JJ Allaire?

2003-11-19 Thread ksuh
Ok.It is actually Joey Joe Jeneau Shabadoo. - Original Message - From: Peter Tilbrook [EMAIL PROTECTED] Date: Wednesday, November 19, 2003 1:32 am Subject: RE: JJ Allaire? Hey ppl - this was a serious request. JJ it must be if the best anyone can prove is Jumping Jellybeans. As I am

OT: RE: JJ Allaire?

2003-11-19 Thread J E VanOver
You should ask JJ what it stands for! Did you ever watch M*A*S*H ?Hawkeye spent a whole episode trying to find out what B.J. stands for in Hunnicutt's name.He finally finds that his birth certificate says B.J. Sorry none of us could help with this one. Jevo (who is also known by her initials)

Re: Multipe file uploads

2003-11-19 Thread cf
it sure is:) Is it possible to upload several files through one from with multiple file fields, ala AspUpload? Thanks! [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: JJ Allaire?

2003-11-19 Thread Haggerty, Mike
Jeremiah Jonah. He was named after a famous newspaper editor. M -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 18, 2003 6:01 PM To: CF-Talk Subject: OT: JJ Allaire? Does anyone know what JJ Allaire'es full name is (ie what is JJ short

Php to coldfusion

2003-11-19 Thread Ryan Mitchell
Hello I have the following php code which I need to convert into coldfusion... preg_match_all('#\{(([a-z0-9\-_]+?\.)+?)([a-z0-9\-_]+?)\}#is', $code, $varrefs); $varcount = sizeof($varrefs[1]); for ($i = 0; $i $varcount; $i++) { $namespace = $varrefs[1][$i]; $varname = $varrefs[3][$i]; $new =

Site wide error template

2003-11-19 Thread Ryan Mitchell
Hello again I remember a good while ago (6 months maybe) somebody made a site-wide error template for shared hosting pages, which could be used to display a page styled to each site... I searched the archives and couldn¹t find it, does anybody have it handy? Care to share? Ryan [Todays

RE: Site wide error template

2003-11-19 Thread Dave Watts
I remember a good while ago (6 months maybe) somebody made a site-wide error template for shared hosting pages, which could be used to display a page styled to each site... All you need to do, I imagine, is use conditional logic within your site-wide error handler, and have it CFINCLUDE the

RE: Which patches installed on a CF5 server

2003-11-19 Thread Dave Watts
How do you determine which patches are installed on an instance of CF5 Server? Unfortunately, I don't think there's an easy answer for this question. Some patches replace the cfserver.exe file, and I suspect you might see those represented by later version numbers in CF Administrator, but

RE: Unblocking Ports

2003-11-19 Thread Dave Watts
I was just reading this article on Macromedia's site: http://www.macromedia.com/support/coldfusion/ts/documents/tn18336.htm, and this may be a stupid question but how do I unblock ports on my Windows server? By default, Windows doesn't block any ports. You have to explicitly block them

RE: Macromedia launches Flex (Was Royale)

2003-11-19 Thread Dave Watts
So it looks like Flex is a JSP application 1st, and an ASP.NET 2nd...but there's not any real mention of CFMX in the presentation. Hmmm... >From my understanding, having sat through the keynote and one other Flex presentation, Flex is all just client-side code, which can interoperate with

Re: Unblocking Ports

2003-11-19 Thread Marlon Moyer
I thought that Windows Server 2003 was supposed to be the first Windows shipped that by default blocked everything and you would have to explicitly open ports.Is this not the case? Marlon Dave Watts wrote: I was just reading this article on Macromedia's site:

RE: JJ Allaire?

2003-11-19 Thread peter . tilbrook
Thanks Mike! No wonder he prefers JJ :) Peter Tilbrook Transitional Services - Enterprise eSolutions Centrelink (http://www.centrelink.gov.au) 2 Faulding Street Symonston ACT 2609 Tel: (02) 62115927 Haggerty, Mike [EMAIL PROTECTED]To: CF-Talk [EMAIL PROTECTED] ov cc: Subject:RE: JJ

Re:connecting tables from multiple databases

2003-11-19 Thread Don
You may want to check out synchronization with BOL. Don Li This is not really a CF question, but I notice that people have posted SQL questions before and nobody minded that. I have an employee table in database A, I am using it in database A but now I also want to use it in database B. I.e. I

RE: Unblocking Ports

2003-11-19 Thread Dave Watts
I thought that Windows Server 2003 was supposed to be the first Windows shipped that by default blocked everything and you would have to explicitly open ports.Is this not the case? No, I don't think so. Admittedly, I don't have a Windows Server 2003 machine handy, but I seem to recall having

CFFTP list directory problem with space.

2003-11-19 Thread DURETTE, STEVEN J (AIT)
Hi all, I'm trying to do a cfftp connection=#ftpCon# action=""> name=myListDir directory='/usr/I have spaces' And it always fails.When I use the win2k command line I can change into the directory with cd /usr/I have spaces, so why won't the list work? Anyone have any insights? Steve

RE: Site wide error template

2003-11-19 Thread Matt Robertson
As Dave said, all you need is a cfswitch on cgi.server_name.Inside each case you can then do whatever you want.It can be either very simple or very complex depending on what you need. -- --- Matt Robertson,[EMAIL PROTECTED] MSB Designs, Inc.

Question about populating pulldown menus with queries (Beginner)

2003-11-19 Thread John Munyan
I am creating a page to allow users to edit links they have created. The links are grouped into categories such as personal hiking sites, or weather sites, etc.When users are editing their links I want to display the current value in the database as the currently selected value in a pull down

RE: Question about populating pulldown menus with queries (Beginner)

2003-11-19 Thread Daniel Mackey
Hi John, Try this code for the select bit: select name=CatergoryHeading cfoutput cfloop from=1 to=#RecordsetGetMenu.recordcount# index=i option value=#RecordsetGetMenu.LinkCatergory[i]# cfif isdefined(recordset1.CatergoryHeading) AND recordset1.CatergoryHeading eq

RE: Question about populating pulldown menus with queries (Beginner)

2003-11-19 Thread John Munyan
I am getting a context validation error for tag cfloop.Any ideas? Context validation error for tag cfloop. The start tag must have a matching end tag. An explicit end tag can be provided by adding /cfloop. If the body of the tag is empty you can use the shortcut cfloop .../. The CFML compiler

CFFTP, sandbox security and PORT mode

2003-11-19 Thread Alex Hubner
Friends, I'm not sure but I think I've found a bug in the CFMX Enterprise. The problem happens when you use CFFTP tag in a sandboxed account. As you may know CFFTP uses PORT by default (the passive attribute is no by default). So far so good except for the fact that CFMX is not dealing the

RE: Adding a dbase column via CF/ODBC

2003-11-19 Thread YC Nyon
Hi, I'm having problem to use ALTER TABLE on a dbase file using DSN-less connection. It' an online conversion application where users submit their dbase files and the app will add some columns before posting it back to the user via email. The code only works if there is no data in the table. My