RE: Removing loop from a query

2004-08-12 Thread Pascal Peters
I don't understand your question exactly, but here are some improvements that come to mind: 1. USE CFQUERYPARAM !!! 2. Get rid of evaluate 3. Put the loop inside the cfquery (there will be one instead of 5 cfquery) 4. What is the lock for ???   SELECT COUNT(*) AS cnt   FROM round_#round_

RE: structFindDuplicates???

2004-08-12 Thread Pascal Peters
lValues = ""; lDuplicates = ""; for(i=1;1 LE ArrayLen(request.arrayName);i=i+1){ if(ListFind(lValues,request.arrayName[i].pointValue)) lDuplicates = ListAppend(lDuplicates,i); else lValues = ListAppend(lValues,request.arrayName[i].pointValue); } Indexes containing duplicates #lDuplicates#

Re: query into session scope.

2004-08-12 Thread Peter Tilbrook
>maybe its too late, and im losing my mind... Heh! Happens to us all sooner or later :) [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: query into session scope.

2004-08-12 Thread Nathan Strutz
you sure can select * from blah or, just do: -nathan strutz Tony Weeg wrote: > maybe its too late, and im losing my mind...but is it possible to make > a query recordset a persistent scope recordset?  like > session.queryName? > > thanks. > > -- > tony > > Tony Weeg > human. > email: t

RE: query into session scope.

2004-08-12 Thread Michael T. Tangorre
yup > -Original Message- > From: Tony Weeg [mailto:[EMAIL PROTECTED] > Sent: Thursday, August 12, 2004 11:08 PM > To: CF-Talk > Subject: query into session scope. > > maybe its too late, and im losing my mind...but is it > possible to make a query recordset a persistent scope > record

Removing loop from a query

2004-08-12 Thread Mark Henderson
After reading some interesting comments on looping and queries, I have a question. In the one instance I have used this approach, I could not find another way to structure the logic. So, I'm wondering if anyone out there can suggest a more efficient method. On a page called dsp_weeklyPicks.cfm I d

Re: CF_directory

2004-08-12 Thread vishnu prasad
Thks Isaac it would be gr8 help if u give that code i try to work on that ,face lots of problem in displaying i want to display like this Filename   Path test.cfm   c:\ test1.cfm  c:\ test2.cfm  c:\test testfile.cfm   c:\test test3.cfm 

structFindDuplicates???

2004-08-12 Thread Tony Weeg
hi all... lets say i have an array of structures called request.arrayName and the structure of this looked like this: and lets say there could be 15 of these...so it would look like this... request.arrayName[1].pointValue request.arrayName[1].winner request.arrayName[1].matchup request.arrayNam

Re: OT Unix

2004-08-12 Thread Dave Carabetta
On Thu, 12 Aug 2004 21:14:23 -0400, S. Isaac Dealey <[EMAIL PROTECTED]> wrote: > 022 ? > > http://www.bu.edu/cc/support/aboutunix/commands/umask/ > No, you wouldn't use the umask in this case. I think the previously made suggestion of 755 is more than sufficient, and 744 might be even better. Th

query into session scope.

2004-08-12 Thread Tony Weeg
maybe its too late, and im losing my mind...but is it possible to make a query recordset a persistent scope recordset?  like session.queryName? thanks. -- tony Tony Weeg human. email: tonyweeg [at] gmail [dot] com blog: http://www.revolutionwebdesign.com/blog/ Check out http://www.antiwrap.com

Re: OT Unix

2004-08-12 Thread Paul Giesenhagen
Perfect .. thanks! Paul Giesenhagen QuillDesign 417-885-1375 http://www.quilldesign.com   - Original Message -   From: chris johnson   To: CF-Talk   Sent: Thursday, August 12, 2004 9:03 PM   Subject: Re: OT Unix   On Thu, 12 Aug 2004 21:51:27 -0400, S. Isaac Dealey <[EMAIL PROTECTED]>

Re: OT Unix

2004-08-12 Thread chris johnson
On Thu, 12 Aug 2004 21:51:27 -0400, S. Isaac Dealey <[EMAIL PROTECTED]> wrote: > I thought you only needed read rights to download it and that 777 > would provide all users with all rights (including delete)? ... > Granted that I'm pretty sure there's no way to take advantage of > delete privileges

RE: OT Unix

2004-08-12 Thread S . Isaac Dealey
I thought you only needed read rights to download it and that 777 would provide all users with all rights (including delete)? ... Granted that I'm pretty sure there's no way to take advantage of delete privileges via a web browser, but then I'm not a unix guru either, so... > sorry I did not know

Re: SOT: ASP book for CF programmer?

2004-08-12 Thread Frank Mamone
I've been using MCAD/MCSD Developing nd Implementing Wev Applications wit Visual C# .NET and Visual Studio .NET. I like it a lot because it's a certification book it covers most topics. Of course,  you will also  have to use other books for in-depth discussions of specific topics like ADO.NET f

RE: OT Unix

2004-08-12 Thread Coldfusion
sorry I did not know you were seeking a mode less than providing the item for download for all users. In UNIX is should be accessible by the same user that ColdFusion application server is running as right? Would that provide the file to everyone the same way?   _   From: Paul Giesenhagen

Re: OT Unix

2004-08-12 Thread Paul Giesenhagen
Yes, that is alittle strong .. I was thinking it was 755 .. but wanted to make sure from some of the U Guru's out there. Paul Giesenhagen QuillDesign 417-885-1375 http://www.quilldesign.com   - Original Message -   From: S. Isaac Dealey   To: CF-Talk   Sent: Thursday, August 12, 2004 8

RE: OT Unix

2004-08-12 Thread S . Isaac Dealey
that's all permissions to all users right? > mode=777 >   _ > From: Paul Giesenhagen [mailto:[EMAIL PROTECTED] > Sent: Thursday, August 12, 2004 8:07 PM > To: CF-Talk > Subject: OT Unix > If you want to create a directory with cfdirectory that is > moving a file > from one location into the

Re: OT Unix

2004-08-12 Thread S . Isaac Dealey
022 ? http://www.bu.edu/cc/support/aboutunix/commands/umask/ > If you want to create a directory with cfdirectory that is > moving a file from one location into the newly created > directory and you wanted it to be available for download > via http ... what MODE would you set on the new directory

RE: OT Unix

2004-08-12 Thread Coldfusion
mode=777   _   From: Paul Giesenhagen [mailto:[EMAIL PROTECTED] Sent: Thursday, August 12, 2004 8:07 PM To: CF-Talk Subject: OT Unix If you want to create a directory with cfdirectory that is moving a file from one location into the newly created directory and you wanted it to be available

OT Unix

2004-08-12 Thread Paul Giesenhagen
If you want to create a directory with cfdirectory that is moving a file from one location into the newly created directory and you wanted it to be available for download via http ... what MODE would you set on the new directory and file? Paul Giesenhagen QuillDesign 417-885-1375 http://www.quilld

Re: CFMX connector issue

2004-08-12 Thread Michael Hodgdon
Does every site have the same domain name or do they have different ones?  If you can access the CF administrator and one of the sites is working, I would say it is a safe bet to rule out CF or IIS causing this issue for you.  If each site is configured to work with different domain names and you a

Re: CF_directory

2004-08-12 Thread S . Isaac Dealey
> HI > in that file it usese other files to .do u have its > confusing as i am nt very strng in cfm ,its difficult to > work on that , will u help me to do that pls Here you go, stick this in a filemap.cfm template and execute it as a custom tag: directory="#attributes.directory#"> default

going loopy

2004-08-12 Thread dave
ok maybe my scheduled task problem is in my loop what would be the best loop 4 the job it needs to loop through a query 1 record at a time do an cfhttp request parse the results enter it into a db then do the next one seems like they all just time out, like its trying to do them all at once inst

Re:_using_

2004-08-12 Thread S . Isaac Dealey
Good point. That hadn't even occurred to me. Funny how simple things like that get by you when you think a problem is complicated. :) > as long as you're not using the > enctype="multipart/form-data" n your tag, the file > can't be uploaded can it? >   - Original Message - >   From: Gonzo

CFMX Database Management

2004-08-12 Thread Dwayne Cole
I would like to use some sort of coldfusion tag or component to add tables and fields to a list of  ms access.mbd files.  Does anyone one know of any useful utilities. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: Document Icons

2004-08-12 Thread dave
i have crap loads of these things, if ppl want i will siz them and upload them but its about a 70 mb dl -- Original Message -- From: "Pascal Peters" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] Date:  Thu, 12 Aug 2004 21:58:33 +0200 >Find them here http:

Re: CFqueryParam

2004-08-12 Thread S . Isaac Dealey
>>Unfortunately I don't think you're going to be able to >>make that work >>without being able to save the file somewhere. ... How are >>you even >>uploading it? I thought the CFFILE tag required you to >>specify a >>location to store the file on disk? ... > Hmmm well i was just storing the va

Re: using

2004-08-12 Thread Ewok
as long as you're not using the enctype="multipart/form-data" n your tag, the file can't be uploaded can it?   - Original Message -   From: Gonzo Rock   To: CF-Talk   Sent: Thursday, August 12, 2004 2:20 PM   Subject: using   I have a form where the user can capture a link to a file.

Re: add form elements online

2004-08-12 Thread Ewok
I have done just that... This section is usually turned off but I'll leave it open for a couple of days User end: http://tests.ned.bounceme.net/ Admin Side :http://tests.ned.bounceme.net/survey/admin/surveys This is where I built the app. The admin tools are harder to follow than what I ended up

Re: Problems sending auto-email through CF

2004-08-12 Thread Peter Farrell
Can you post the error? Anyways, I had the same problem a few days ago on a shared server and I was able to fix it by putting in the STMP server IP (or Domain Name) in the server="XXX" attribute in the CFmall tag.  The hosting company claimed that they had the correct into in the CFML admin for th

RE: Is this possible in SQL

2004-08-12 Thread Bryan Love
Join the tables together so they are treated like a single table...(assuming they are join-able) SELECT c.categoryid, sc.sub_CategoryId FROM categories c, sub_category sc WHERE c.categoryID = sc.categoryID AND (c.category = '#form.searchVal#' OR sc.sub_Category = '#form.searchVal#') LIMIT 1 +

Re: getting rid of Evaluate in CF 5.0

2004-08-12 Thread Peter Farrell
I'm being anal about something here, but you should be able to remove the pound signs (#) in this statement and it should continue to work correctly: To: Sorry, I'm so weird about using pounds - read this article by Ben Forta for a better understand why: http://www.defusion.com/articles/index.c

RE: getting rid of Evaluate in CF 5.0

2004-08-12 Thread Bryan Love
reconsider the way you create those variables.  How are "RM1DAY" and the other variables getting created?  A struct or an array would probably work very nicely to store those variable values differently and speed up your code. Also, it's generally a very bad idea to put a query inside a loop.  O

RE: SQL help!

2004-08-12 Thread Bryan Love
That would work, but if you have more than a thousand or so items in the sub-select, you're query will not return the expected results.  Some databases limit the list length for the IN clause to 1,000 items. Better to do it this way SELECT t1.id FROM table1 t1 LEFT OUTER JOIN table2 t2 ON t1.

RE: Document Icons

2004-08-12 Thread Pascal Peters
Find them here http://users.pandora.be/pascal.peters/download/ Pascal > -Original Message- > From: Tangorre, Michael [mailto:[EMAIL PROTECTED] > Sent: 12 August 2004 21:58 > To: CF-Talk > Subject: RE: Document Icons > > Pascal gave me a zip file that covers just about anything your web a

RE: Document Icons

2004-08-12 Thread S . Isaac Dealey
Peters? > Pascal gave me a zip file that covers just about anything > your web app > might deal with... They are all the same size, > transparency, etc... They > work great! s. isaac dealey   954.927.5117 new epoch : isn't it time for a change? add features without fixtures with the onTap open

RE: Document Icons

2004-08-12 Thread Tangorre, Michael
Pascal gave me a zip file that covers just about anything your web app might deal with... They are all the same size, transparency, etc... They work great! Michael T. Tangorre   > -Original Message- > From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] > Sent: Thursday, August 12, 2004 3:49

RE: getting rid of Evaluate in CF 5.0

2004-08-12 Thread Pascal Peters
NOT in cf5 it won't (variables became a struct in cf6). But you could put your vars in a structure and then use that syntax. Pascal > -Original Message- > From: Joe Rinehart [mailto:[EMAIL PROTECTED] > Sent: 12 August 2004 18:56 > To: CF-Talk > Subject: Re: getting rid of Evaluate in CF 5

RE: Document Icons

2004-08-12 Thread S . Isaac Dealey
Thanks Tony, nice set for some of the common file types... looks like the zip.gif might need a transparent background applied to it, and I'm not sure about using a computer for "default" or the Internet Explorer logo for html documents, but it's a good start. :) > I have a set. I don't remember wh

Re: CF_directory

2004-08-12 Thread S . Isaac Dealey
Sure, when I get home this evening I'll see if I can extract the code you need from it. It's pretty simple code actually -- just a couple of cfdirectory tags and a condition loop. Displaying the results may be more difficult. > HI > in that file it usese other files to .do u have its > confusing a

RE: Document Icons

2004-08-12 Thread Tony Gruen
I have a set. I don't remember where I came upon them but they are fairly consistent and in .GIF format. Would this help? If so -> http://www.tonygruen.com/doc_icons.zip Wow, I am finally able to contribute something to this great list. Most of the topics are a little above my development lev

RE: scheduled task woes

2004-08-12 Thread dave
i had already tried that and it really hadnt seemed too matter, it still timed out rather fast. method="Get" timeout="3000"> seems to be a rather intence deal gets a page like so http://waterdata.usgs.gov/co/nwis/uv?dd_cd=01&dd_cd=18&format=rdb&period=1&site_no=09085000 parses it, inserts wha

Re: getting rid of Evaluate in CF 5.0

2004-08-12 Thread Jim Louis
Thank you Jim > > >...should start to get ya there. > >-joe > > >- Original Message - >From: Jim Louis <[EMAIL PROTECTED]> >Date: Thu, 12 Aug 2004 12:46:48 -0400 >Subject: getting rid of Evaluate in CF 5.0 >To: CF-Talk <[EMAIL PROTECTED]> > >I have a complex page that I use this system ri

RE: ecommerce storefronts

2004-08-12 Thread Bryan Love
Check out the new website for Netready: http://cfnetready.com/ And as part of our kickoff for this website, we'll sell our software for $200 to anyone who mentions this message through the end of August! +---+ Bryan Love   Database Analyst   M

Re: CF_directory

2004-08-12 Thread vishnu prasad
HI in that file it usese other files to .do u have its confusing as i am nt very strng in cfm ,its difficult to work on that , will u help me to do that pls >No, you should be able to remove the code from that tag and just use >that in a separate tag or by itself. I don't think anything in that >

RE: techspedition.com - Fusebox 4

2004-08-12 Thread Dave Watts
> It's not an argument...why is it that simply asking the question > results in several people launching into accusations?  One of the > reasons I rarely post on this list I suppose, a few too many folks > (actually, it's usually just the same few folks) just itching to start > arguments. I would

Re: tip of the day

2004-08-12 Thread daniel kessler
> Well it all or mostly worked great.  I made a few small changes, > nothing serious.  Oddly though it seems to periodically output extra > characters in the beginning.  It appears  to occur when the tip_used > column is reset to 0. ok, well I figured that out.  It had extra non-displayed chara

RE: CF Administrator won't load??

2004-08-12 Thread Mark W. Breneman
Hey Christy, You can leave 127.0.0.1 assigned to the webserver. 127.0.0.1 is a special "loop-back"IP address that can only be access by the machine itself. Thus it is not publicly accessible. See link below. Chris makes a very good point regarding the CFadmin being exposed to the public. Am I

Re: CFqueryParam

2004-08-12 Thread Metzy Martinez
>Unfortunately I don't think you're going to be able to make that work >without being able to save the file somewhere. ... How are you even >uploading it? I thought the CFFILE tag required you to specify a >location to store the file on disk? ... Hmmm well i was just storing the variable in th

RE: Document Icons

2004-08-12 Thread Adkins, Randy
look at: http://demo.mindkeeper.net/filemanager there are many of those there that you can click on and save   _   From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] Sent: Thursday, August 12, 2004 2:22 PM To: CF-Talk Subject: RE: Document Icons Well for common file types, you can alw

Re:_using_

2004-08-12 Thread S . Isaac Dealey
> I have a form where the user can capture a link to a file. > They click on Browse and navigate their network and point > to the file they > want to link to. (Bullet Proof browse to the file.) > When the form is submitted I capture the full path to the > file with some > _javascript_ > kinda th

Re: CFMX on OracleAS 10g Problem

2004-08-12 Thread eric . davis
I know it's not supported, but according to OTN it will run on AS10g, and I've seen on the forum that people have successfully done it.  If someone has it working could you please respond to my posting. Thanks. >AFAIK, Oracle is not a supported J2EE server for CFMX 6.1. I've heard some >people req

RE: Basic Eclipse/He3 question

2004-08-12 Thread Spike
I'm not sure if He3 has implemented any external browser actions, but Eclipse allows you to create an action that will launch an external browser through the run > External Tools menu. If you play around with the configuration and variables you can get close to having it launch the current file. It

RE: Document Icons

2004-08-12 Thread S . Isaac Dealey
Well for common file types, you can always take screen captures of the icons from your desktop assuming you're using Windows. I use SnagIt for this. > I was looking for the exact same thing.  Care to share? > Emmet >   _ > From: Tangorre, Michael [mailto:[EMAIL PROTECTED] > Sent: Wednesday,

RE: Basic Eclipse/He3 question

2004-08-12 Thread Matt Liotta
> Q: How do I launch the current CFM file in an external browser > (http://127.0.0.1:8500/myFile.cfm)? > Eclipse/He3 currently has no built-in way to launch the current file being edited in an external browser. > Q: How do I browse datasources? > Eclipse/He3 currently doesn't offer any functiona

Re: Document Icons

2004-08-12 Thread JT
ME TOO   - Original Message -   From: Emmet McGovern   To: CF-Talk   Sent: Thursday, August 12, 2004 10:48 AM   Subject: RE: Document Icons   I was looking for the exact same thing.  Care to share?   Emmet     _     From: Tangorre, Michael [mailto:[EMAIL PROTECTED]   Sent: Wedne

using

2004-08-12 Thread Gonzo Rock
I have a form where the user can capture a link to a file. They click on Browse and navigate their network and point to the file they want to link to. (Bullet Proof browse to the file.) When the form is submitted I capture the full path to the file with some _javascript_ kinda thing. Then I

Re: CFqueryParam

2004-08-12 Thread S . Isaac Dealey
>>You have to save the file being uploaded to a location >>first and then >>read the file using CFFILE before you can store it -- you >>can't just >>pass the form variable because... as strange as this may >>sound... CF >>treats different files differently during the upload >>process, so you >>can'

Re: CF Administrator won't load??

2004-08-12 Thread chris johnson
On Thu, 12 Aug 2004 14:10:29 -0400, Christy Carter <[EMAIL PROTECTED]> wrote: > Okay, in going back into IIS, I see that there are 2 websites - Default website and Administration website. Maybe I should assign the 127.0.0.1 to the Admininstration website? > I do not use IIS, but this is what I wo

RE: Document Icons

2004-08-12 Thread Emmet McGovern
I was looking for the exact same thing.  Care to share? Emmet   _   From: Tangorre, Michael [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 11, 2004 1:21 PM To: CF-Talk Subject: OT: Document Icons Anyone have a set of icons for various document types: .zip .doc .xls .ppt .txt .pdf .htm

Re: Problems sending auto-email through CF

2004-08-12 Thread Doug White
Perhaps the mail server requires a user name and password to accept mail from the CF server? == Our Anti-spam solution works!! http://www.clickdoug.com/mailfilter.cfm For hosting solutions http://www.clickdoug.com http://www.forta.com/cf/isp/isp.cfm?isp_id=1069

Re: CF Administrator won't load??

2004-08-12 Thread Christy Carter
Okay, in going back into IIS, I see that there are 2 websites - Default website and Administration website. Maybe I should assign the 127.0.0.1 to the Admininstration website? Oh, I don't know. :) thanks, Christy [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Set

Re: CF Administrator won't load??

2004-08-12 Thread Christy Carter
Yikes!  yes, it's sort of a production server - right now it's hosting our site, which is only available to testers by typing in the IP address we've given them. It is not available through a domain name. So by having the 2 IPs there, I'm allowing our users to access CF Admin? Not good. :) How wo

OT: Basic Eclipse/He3 question

2004-08-12 Thread David K
"Well, this aint Kansas anymore, Dorothy" I've never used Eclipse before so I'm completely lost after installing He3 (I suppose I should leave all expectations at the door). Q: How do I launch the current CFM file in an external browser (http://127.0.0.1:8500/myFile.cfm)? Q: How do I browse data

Re: CF Administrator won't load??

2004-08-12 Thread chris johnson
On Thu, 12 Aug 2004 13:43:47 -0400, Christy Carter <[EMAIL PROTECTED]> wrote: > Ok, I went in a changed the IP to 127.0.0.1 and I couldload the Administrator page using localhost fine.  But our website itself no longer loaded. > > So I kept the IP as the network ideentification IP, but I went into

Re: techspedition.com - Fusebox 4

2004-08-12 Thread Brian Kotek
Eric, I'll yell at Hal and John for letting the book sell out.  I'd be happy to send you one if you give me your name and address (just email it to [EMAIL PROTECTED]).  Maybe you could paypal me for the shipping cost? Also, Jeff Peters wrote a Fusebox 4 book which you can get here: http://www.cafe

Re: CFqueryParam

2004-08-12 Thread Metzy Martinez
>You have to save the file being uploaded to a location first and then >read the file using CFFILE before you can store it -- you can't just >pass the form variable because... as strange as this may sound... CF >treats different files differently during the upload process, so you >can't rely on any

Re: Problems sending auto-email through CF

2004-08-12 Thread Christy Carter
I wanted to add that when I put the server name into the mail server section of CF Administrator, I check the "Verify Mail Server Connection" box. It says it can connect to the mail server fine - I get this message "ColdFusion connected to your mail server. Verification completed without error."

Re: CF Administrator won't load??

2004-08-12 Thread Christy Carter
Ok, I went in a changed the IP to 127.0.0.1 and I couldload the Administrator page using localhost fine.  But our website itself no longer loaded. So I kept the IP as the network ideentification IP, but I went into the Advanced tab and added 127.0.0.1 as an additional IP using port 80, and that se

RE: techspedition.com - Fusebox 4

2004-08-12 Thread Eric Jones
Just an FYI to those who care. I've order the book at Amazon (as of June 25th) and it was supposed to be delivered or shipped today. Now Amazon is telling me that they have a delay in the shipping and it might go out by Sept 11th. I can't wait till Sept 11th so if you've got a copy in good conditi

Re: CFqueryParam

2004-08-12 Thread S . Isaac Dealey
> Thanks every one for your help. > i tried toBinary function but i get an error. > Parameter 1 of function toBinary which is now "temporary > path" must be a base64-encoded string You have to save the file being uploaded to a location first and then read the file using CFFILE before you can stor

Re: CF Administrator won't load??

2004-08-12 Thread Christy Carter
Mark, do you mean on the Website tab, if I go to Properties for "default website"?  I went there, and it specifies an IP but it's the IP that identifies the server on the network - should I change it to 127.0.0.1? Actually, it's Windows 2000 Server...does that make a difference? Thanks! Christy

Re: techspedition.com - Fusebox 4

2004-08-12 Thread Brian Kotek
It was what I meant, and I have not "backtracked" at all.  Thank you for acknowledging that you leapt to an incorrect assumption. - Original Message - From: Ray Champagne <[EMAIL PROTECTED]> Date: Thu, 12 Aug 2004 12:23:20 -0400 Subject: Re: techspedition.com - Fusebox 4 To: CF-Talk <[EMAI

RE: CF Administrator won't load??

2004-08-12 Thread Mark W. Breneman
Windows XP I assume. My guess is that IIS is not assigned to use 127.0.0.1. In the IIS admin you can assign 127.0.0.1 under the advanced button OR just select "all unsigned" that should fix it. MB Mark W. Breneman -Cold Fusion Developer -Network Administrator   Vivid Media   [EMAIL PRO

Problems sending auto-email through CF

2004-08-12 Thread Christy Carter
Our web application (developed in CF) allows users to register online - after they've registered, two things should happen: 1) they should be sent an auto-email with further instructions 2) we should be sent an auto-email saying they have registered But every time I do a test registration, it come

CF Administrator won't load??

2004-08-12 Thread Christy Carter
For some reason, I get a "404 page not found" error when I type the usual http://localhost/cfide/administrator/index.cfm or http://127.0.0.1/cfide/administrator/index.cfm. But then the Administrator loads up fine if I use the server name instead amd type: http://christy-srv/cfide/administrator/ind

Re: tip of the day

2004-08-12 Thread daniel kessler
Well it all or mostly worked great.  I made a few small changes, nothing serious.  Oddly though it seems to periodically output extra characters in the beginning.  It appears  to occur when the tip_used column is reset to 0. Here's a display of the tips: http://hhp.umd.edu/HHPv1/dbf/tipFunctions/t

Re: getting rid of Evaluate in CF 5.0

2004-08-12 Thread Joe Rinehart
...should start to get ya there. -joe - Original Message - From: Jim Louis <[EMAIL PROTECTED]> Date: Thu, 12 Aug 2004 12:46:48 -0400 Subject: getting rid of Evaluate in CF 5.0 To: CF-Talk <[EMAIL PROTECTED]> I have a complex page that I use this system right now.  This is  a sample of

MX Performance Data

2004-08-12 Thread Gavin Brook
Hi All,   Does anyone know if there is a way I can reset the performance data for ColdFusion MX 6.1? Not sure if there is an internal mechanism or it or if I need to call an external object.   Any ideas?? Thanks [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Set

Re: CF5 WDDX Question...

2004-08-12 Thread Steve Dworman
what does the content look like after you use HTMLEditFormat()? >I can't seem to figure this out. NOTE: Using CF5 and all client vars are >databased. > >Basically, I am trying to create a page that allows me to 'see' the contents >of all customer's shopping carts who are currently using my web sit

Re: add form elements online

2004-08-12 Thread Brook Davies
Jim, My site, www.logiforms.com, does this exactly. Im a bit pressed for time, but I can explain a bit about how we do it. There are 6 standard field types, (textinput,radio,checkbox,select,upload,textarea). For each field, we assign a value 1 through 6. We have a directory labelled fieldtypes

getting rid of Evaluate in CF 5.0

2004-08-12 Thread Jim Louis
I have a complex page that I use this system right now.  This is  a sample of the text. UPDATE table   SET Day#a1# = 1         WHERE ID = #query3.New_ID# UPDATE table2        SET day#a1# = #new_total#   WHERE ID = #query.H_ID# More code Is ther

Re: CFMX connector issue

2004-08-12 Thread Steve Dworman
have you checked your extensions list?  make sure you have the coldfusion extensions loaded. my other suggestion is to check your page caching (i can't remember the title of the checkbox exactly) in the cf administrator.  if you are running a development environment you don't want it checked.  btw

Re: Homepage content management

2004-08-12 Thread Jim Louis
I agree,  ActivEdit is a great piece of software I used when I  built a couple of websites for clients. if you want to go free of something  else this is a great site to get a list of almost all TTW WYSIWYG Editors. http://www.bris.ac.uk/is/projects/cms/ttw/ttw.html Jim Louis Best Meetings, Inc

Re: techspedition.com - Fusebox 4

2004-08-12 Thread Ray Champagne
Yea, that sounds like a lot of backtracking to me, too.  However, if what you say is what you meant, then I will retract my statement also. Subject over in my opinion. Ray At 11:45 AM 8/12/2004, you wrote: >Sure...and one can also infer what you mean by said question >Let's face it...it's a

CFMX connector issue

2004-08-12 Thread Brook Davies
I posted this yesterday and got no response. I'm about all out of ideas to get this to work, any suggestions? Hello, I have a number of websites hosted on IIS with CFMX 6.1. All of them work fine except for one. When I try to browse to a cfm file, CF returns a file not found error. The file do

Re: add form elements online

2004-08-12 Thread Jim Louis
Wow,  I did not think that I would get such range of responces.  Let me tell you what I was looking to do in more depth. 1. Have a screen where they put in the name of the question and what type( i.e. Checkbox, text, password, list/menu.). 2. Then click on a submit button. 3. This is added to a ta

Re: Comparing Query Results

2004-08-12 Thread Barney Boisvert
Better to use a DB-specific construct if possible (TOP for Acces/SQL Server, LIMIT for MySQL, etc.), unless database independance is important.  At least in my opinion. cheers, barneyb On Thu, 12 Aug 2004 12:03:36 -0400, Joe Rinehart <[EMAIL PROTECTED]> wrote: > Hi, > > Why not just select the l

RE: Determining physical length of text string (not char count)

2004-08-12 Thread Mark W. Breneman
Interesting idea.  I did not know that CSS had any "output" vars. How would one go about getting the length from a div?  How is this possible when CSS is rendered in the browser? Mark W. Breneman -Cold Fusion Developer -Network Administrator   Vivid Media   [EMAIL PROTECTED]   www.vividmedia.com

Re: Comparing Query Results

2004-08-12 Thread Joe Rinehart
Hi, Why not just select the latest customer record in one shot?   SELECT ...columns...   FROM customers   ORDER BY creationDate DESC -joe - Original Message - From: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: Thu, 12 Aug 2004 15:56:55 - (GMT) Subject: Comparing Query Results To: C

RE: CF Shutting down regularly

2004-08-12 Thread James Smith
OK, now it seems to be fixed (he says, crossing his fingers and everything else he owns that can be crossed). The method outlined below by Michael (thanks for this) is almost there but instead of copying the server folder from 'c:\cfusionmx\runtime\jre\bin\server' (which puts an old version of the

Comparing Query Results

2004-08-12 Thread cfer
Hi all- I have an application that pulls a customers record. There are some cases where the customer will have more then one record. What I thought about doing was query the customer table for the creationdate based on each customerkey returned. Then compare the results for the record with the new

Re: techspedition.com - Fusebox 4

2004-08-12 Thread Charlie Griefer
Sure...and one can also infer what you mean by said question Let's face it...it's a bit cryptic and leaves a lot of room for interpretation (I read it exactly the way Dave read it). Brian Kotek wrote: >Uh, I don't recall making such a statement.  Can one not simply ask >the question? > > >--

RE: techspedition.com - Fusebox 4

2004-08-12 Thread Stacy Young
I thought the book accomplished it's goal. Intro to CFC's and objects. Great primer for procedural folk. CFC Dev mailing list is a great place to expand beyond the basics. Cheers, Stace From: Matthew Walker [mailto:[EMAIL PROTECTED] Sent: Wednesday, Augus

Re: techspedition.com - Fusebox 4

2004-08-12 Thread Brian Kotek
It's not an argument...why is it that simply asking the question results in several people launching into accusations?  One of the reasons I rarely post on this list I suppose, a few too many folks (actually, it's usually just the same few folks) just itching to start arguments. The point I was ac

Re: techspedition.com - Fusebox 4

2004-08-12 Thread Brian Kotek
Uh, I don't recall making such a statement.  Can one not simply ask the question? - Original Message - From: Dave Watts <[EMAIL PROTECTED]> Date: Wed, 11 Aug 2004 20:37:22 -0400 Subject: RE: techspedition.com - Fusebox 4 To: CF-Talk <[EMAIL PROTECTED]> > Ever written a book, Aaron? I had

Re: CFqueryParam

2004-08-12 Thread Metzy Martinez
Thanks every one for your help. i tried toBinary function but i get an error. Parameter 1 of function toBinary which is now "temporary path" must be a base64-encoded string also i tried the longvarchar but when i try to open it I get a bunch of junk 2f7661722f746d702f4143465844416f6f61794e

Re: advice on structure and cfcs (petmarket related)

2004-08-12 Thread Paul Kenney
I would suggest that you look at the code that drives the MachII framework.  It might give you some ideas on how CFCs can be used and what they are capable of doing.  On that note (beware: shameless plug), you could also check out cfcUnit at SourceForge (http://sourceforge.com/projects/openxcf)

Re: online hotel reservation

2004-08-12 Thread Bryan Stevenson
hmmmI would tend to think that if someone had put together a tag or feed or whatever that integrates the reservation systems of every hotel on the planetthey may want a few $$ for it. Hotels.com is in the business of doing exactly what you seem to be talking aboutthey are doing very we

RE: scheduled task woes

2004-08-12 Thread Tom Jordahl
You should specify a TIMEOUT attribute for your cfhttp tag. The http tag will timeout after the number of seconds specified at the server level for the request timeout if no tag attribute is specified. -- Tom Jordahl Macromedia Server Development -Original Message- From: dave [mailto:[EM

  1   2   >