Validating forms (security)

2002-01-02 Thread joachim
Hi, I'm tuning a forum (as in security checks) but i'm quite confused about how one would handle form input. I know that one should always validate data before doing any operations with it, eg validating numbers (see also url hack). But how does one handle plain text ? For the , characters

RE: death of coldfusion

2002-01-02 Thread Maureen
At 09:11 PM 12/30/01, you wrote: We're not kidding ourselves, we know that compatibility is an absolute must, and we know it is a big undertaking, which is why (as Matt mentioned) we have such a large team working on Neo. And so far so good. --- Ben I hope you assign at least one team member

ePDQ

2002-01-02 Thread Kevin Roche
Hi, One of my customers is changing his credit card processing from the current supplier to Barclays Merchant Services (Here in the UK). Is there anyone out there who has already interfaced CF to their ePDQ service ? Kevin Roche

RE: vspider --- help please

2002-01-02 Thread Ben Whalley
Can someone point me to some info on using vspider - does it come bundled with the CF? Sounds just like what I've been looking for. Ben -- From: Garza, Jeff Reply To: [EMAIL PROTECTED] Sent: Friday, December 28, 2001 10:59 PM To: CF-Talk Subject: RE:

Re: ePDQ

2002-01-02 Thread Stephen Moretti
Kevin, ePDQ is just Cybercash rebadged... Regards Stephen - Original Message - From: Kevin Roche [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, January 02, 2002 11:11 AM Subject: ePDQ Hi, One of my customers is changing his credit card processing from the current

RE: vspider --- help please

2002-01-02 Thread Sean McCarthy
Ben, Take a look at the link below: http://www.daemon.com.au/navitron/display.cfm?objectID=DD870544-07B0-4 AF0-8B 67792653EDB5D4 Sean -Original Message- From: Ben Whalley [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 02, 2002 6:20 AM To: CF-Talk Subject: RE: vspider --- help

RE: vspider --- help please

2002-01-02 Thread Garza, Jeff
Ben, Try going to the online docs at the old allaire site... http://www.allaire.com/developer/documentation/coldfusion.cfm Download the Advanced ColdFusion Administration manual in .pdf format. It should have a complete section on the advanced Verity stuff (K2 Server documentation, VSpider,

RE: And the award goes to ....

2002-01-02 Thread Mark Stewart
I lurk quite a bit, but not because I'm shy :-) I've come to the realization, unfortunately, that I really do need to get work done. I'm not the greatest multi-tasker in the world. Therefore, I've cut down on my posts, especially on the community list. Anyway, a big thanks to Michael and

RE: Any ideas on how to do this please?

2002-01-02 Thread Sandy Clark
I wrote a program to batch schedule prize giveaways on a specific basis. Took the outlook re-curring calendar program and modeled it on that. Basically what I did, was once the user chose how they wanted to repeat the occurance, I then generated the dates and inserted a record for each specific

RE: CF Studio 5

2002-01-02 Thread Mark Stewart
Haven't tried this, but you might be able to go into the registry and add the new serial number. Mark -Original Message- From: Larry Juncker [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 01, 2002 8:42 AM To: CF-Talk Subject: RE: CF Studio 5 Just re-run the new install and it

RE: null characters in a file

2002-01-02 Thread Mark Stewart
Kelly, We ran into this EXACT same problem about a month ago. We were doing a cffile, then parsing through the file to modify it and then spitting the modified version to screen. We discovered, as you did, that cf chokes on null characters and were perplexed at what to do. In our situation, we

RE: CF Studio 5

2002-01-02 Thread Neil Clark
Yep, simply install the Full Retail Version over the top and it will import and adopt all of your settings. One thing it will do is to keep the serial # as #EVALUATION, but it is the full ver. Hope this helps. Neil Team Macromedia Volunteer for Spectra

RE: null characters in a file

2002-01-02 Thread Kelly Matthews
That's what we are considering now using VB we aren't running perl on our machine here and I would rather not hopefully VB can handle it. We are just going ot have VB split the file in 2, CF will edit the one portion then VB would put them batch together. Is Cold Fusion able to CALL a vb

RE: null characters in a file

2002-01-02 Thread Mark Stewart
I've never called a vbscript before. I would assume that if you made it an exe, that you could call it through cfexecute or, as you mentioned, instantiate an object and call it that way. Another reason we decided to modify files on the back-end instead of on-the-fly was because some of our files

RE: Quarter formula

2002-01-02 Thread Raymond Camden
Um, have you tried the BIF (built in function) Quarter? :) Quarter(Now()) === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a

RE: Any ideas on how to do this please?

2002-01-02 Thread Mike Kear
Need I say .. Yes please! Aidan Whitehall generously and thoughtfully sent me a calendar app, and t hat does part of what I need, and will be perfect for another project on this same site that's a bit further down on my to do list, but Sandy, what you're doing sounds like what I'm trying to do.

Summing session variable?

2002-01-02 Thread Kris Pilles
I need to add up the cost of several items in my session variable. However __ Why Share? Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant Activation · $99/Month · Free Setup

Scheduler Running Processes Twice

2002-01-02 Thread Kevin Cundick
Hi All, We have our CF Server running several scheduled processes. I have one that runs hourly the rest run daily. The scheduler for the most part has run great without any problems, until just recently. For some reason it has all of a sudden spontaneously started to run processes twice, back

RE: Quarter formula

2002-01-02 Thread Raymond Camden
If your logic is: 1=4 2=1 3=2 4=3 Then just say: cfset Quarter = QuarterNow()-1 cfif not Quarter cfset Quater = 4 /cfif === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL

RE: Quarter formula

2002-01-02 Thread Raymond Camden
Oops, QuarterNow should be Quarter(Now()). This is what happens when I try to code listening to 80s music. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM :

Session Variable help???

2002-01-02 Thread Kris Pilles
I can't get my Session Variables to Work~! Here is my create/add item action page: !--- Make sure that all of the necessary attributes are passed in --- cfif isdefined(attributes.CatalogId) and isdefined(attributes.SectionID) and isdefined(attributes.price) and

RE: Scheduler Running Processes Twice

2002-01-02 Thread Mark A. Kruger - CFG
Kev, We had this problem when we set up a pre-production server and the inexperienced admin setting it up (naturally wanting it to be just like production) added the secheduled processes (pointing back to production). Probably not your problem, but it IS a funny story ha. Mark -Original

RE: Session Variable help???

2002-01-02 Thread Raymond Camden
Um, can you tell us what the error is though? Also, you are using session variables without the cflock tag. Since there is no cflock in cfscript, you should either lock the entire cfscript block, or convert to tag format, or work with a temp structure and then copy to the session scope.

RE: Session Variable help???

2002-01-02 Thread Kris Pilles
I'm not getting an error, I am just unable to get the delete to work. I am using this as a tag, this is just the action page. The add/create works fine, the delete is what doesn not work -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 02,

Insert Date/Time Format into MS Access DB

2002-01-02 Thread Mark Leder
I want to insert a date from a form, as MM/DD/ I set up an SQL Statement as follows: CFQUERY NAME=INSOBJ DATASOURCE=uspc INSERT INTO t_sectest (cal_date_start, cal_date_end) VALUES ('#form.cal_date_start#',

RE: Insert Date/Time Format into MS Access DB

2002-01-02 Thread Declan Maher
CFQUERY NAME=INSOBJ DATASOURCE=uspc INSERT INTO t_sectest (cal_date_start, cal_date_end) VALUES ('#CreateODBCDate(form.cal_date_start)#', '#CreateODBCDate(form.cal_date_end)#') /cfquery -Original Message- From: Mark Leder

Re: Insert Date/Time Format into MS Access DB

2002-01-02 Thread Howie Hamlin
You need to use the CreateODBCDate() function in your insert like: CFQUERY NAME=INSOBJ DATASOURCE=uspc INSERT INTO t_sectest (cal_date_start, cal_date_end) VALUES ('#createodbcdate(form.cal_date_start)#', '#createodbcdate(form.cal_date_end)#') Remeber - the formatting settings in

RE: Insert Date/Time Format into MS Access DB

2002-01-02 Thread Shawn Grover
The CreateODBCDate is probably the better option, but if you know your form field is a valid date format (valid from Access's perspective), then you can do this: Insert (DateField) Values (###Form.DateField###) The first two pounds indicates a date to Access, and the next is used as a

RE: Insert Date/Time Format into MS Access DB

2002-01-02 Thread Mark Leder
Thanks to all, that did the trick. Mark -Original Message- From: Howie Hamlin [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 02, 2002 11:00 AM To: CF-Talk Subject: Re: Insert Date/Time Format into MS Access DB You need to use the CreateODBCDate() function in your insert like:

Re: Any ideas on how to do this please?

2002-01-02 Thread Bryan Stevenson
And now we go WAY OT... Just saw the Victoria referencewelll I'm in the other Victoria...Victoria, British Columbia, Canada (near Seattle for those in the US) ;-) Hello Down Under and now back to your regular scheduled CFing ;-) Bryan Stevenson VP Director of E-Commerce Development

Speeding up select queries

2002-01-02 Thread Tracy Bost
What is the best approach to speed up select statements with a sql2000 database? The data is constantly being updated,deleted,inserted, through out the day with each user seeing data depending on his/her access level and assigned zip codes. I worry that using cachedwithin will not work in

RE: Scheduler Running Processes Twice

2002-01-02 Thread Kevin Cundick
Mark, As embarrassed as I am to admit it, that is exactly what was happening. We had crashed our development server last week. We took the cfregistry and stuff off of our production server so that we wouldn't have to reinstall CF. Well, in doing so all of the scheduled processes moved on to

Re: Insert Date/Time Format into MS Access DB

2002-01-02 Thread Jeffry Houser
Someone mentioned using createodbcdate, which should work fine if you have your datasource set up as an ODBC datasource. If you are using access as an OLE datasource, you'll (probably) have to use Access's native format, which surrounds it by pound signs: CFQUERY NAME=INSOBJ

RE: Speeding up select queries

2002-01-02 Thread Sandy Clark
General rules of thumb I use. Avoid Select * always specify your fields. Fastest is to select fields in the following datatype order, integers, numeric, strings according to field size. Memo or Long text fields are always last. The latter one is most important because all fields selected

RE: Validating forms (security)

2002-01-02 Thread Bruce, Rodney (Contractor)
Check out qForms: http://www.pengoworks.com/qForms/ I got this from another post on this list. It might help. -Original Message- From: joachim [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 02, 2002 11:24 AM To: CF-Talk Subject: Validating forms (security) Hi, I'm tuning a

Re: Validating forms (security)

2002-01-02 Thread Douglas Brown
There is a nice custom tag on allaire for this. http://devex.allaire.com/developer/gallery/info.cfm?ID=0FFF0D11-BF26-11 D5-83 F700508B94F85Amethod=Full There are two major products that come out of Berkeley: LSD and [Unix] BS D. We don't believe this to be a coincidence. Doug Brown

RE: Scheduler Running Processes Twice

2002-01-02 Thread Mark A. Kruger - CFG
hehe... hey - it happens to the best of us. If it wasn't so complicated we'd all be making minimum wage - right g? -Original Message- From: Kevin Cundick [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 02, 2002 8:36 AM To: CF-Talk Subject: RE: Scheduler Running Processes Twice

RE: Speeding up select queries

2002-01-02 Thread Declan Maher
Other attributes of cfquery which may be of help in speeding up a query is to try using blockfactorwhick specifies the max number of rows to fetch at a time from the server or maxrows if you want to limit the number of rows returned. Regards, Declan -Original Message- From: Tracy

RE: Speeding up select queries

2002-01-02 Thread Craig Dudley
Maybe sorting the zip list might help. Although if it contains that many zip codes it might be worthwhile having a re-think. One more thing, the dateadd in your query, I'd convert that into SQL functions rather than CF, as follows. so.. Appt_Time #DateAdd(h, -48,#Now()#)# would become

RE: Speeding up select queries

2002-01-02 Thread Paris Lundis
hmmm how many zipcodes are we talking, and which database? and how many total records? -Original Message- From: Tracy Bost [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 02, 2002 11:55 To: CF-Talk Subject: RE: Speeding up select queries This query takes about 47ms to execute,

RE: Speeding up select queries

2002-01-02 Thread Mark Stewart
In addition to Sandys rules of thumb, I would convert any query you have into a stored procedure. One of the added benefits is that you can have multiple result sets when using stored procs. Also, index columns that are frequently accessed and/or columns you use in your where clause. Mark

Re: Visual Basic?

2002-01-02 Thread David Green
http://peach.ease.lsoft.com They have good lists on various pieces of software and levels. I'm on the VB beginner list and it has helped greatly. Good Luck David pieces - Original Message - From: Douglas Brown [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, January 01,

OT: Java based file uploader

2002-01-02 Thread E C HOF list
Does anyone know of a java or flash based drag and drop file uploader (like the ones they use on Photo Album websites)? Thanks! __ Do You Yahoo!? Send your FREE holiday greetings online!

OT: Sorry was wondering if anyones use this CGI Script

2002-01-02 Thread Troy Montour
Hello, was wondering if anyone has used http://web.mit.edu/wwwdev/cgiemail/ CGI script before?? I don't have a unix sever to find out what the out put use to look like and I need to convert it to something that works on windows so I figured I would use CF but need to know what the out put

RE: Speeding up select queries

2002-01-02 Thread Bill Grover
My suggestion would be to create a table in your SQL Server that contains the list of zip codes that a user can see. Each record would contain the user's ID and 1 zip code they can see. Then you can either join this table in, or user it in the in clause. So your select statement would be

RE: Sorry was wondering if anyones use this CGI Script

2002-01-02 Thread Cameron Childress
We have a few legacy clients using that script on a MindSpring server. The layout of the text file should be defined by a special formatting file. RTM at the MIT site and look for that formatting file in the original code. -Cameron Cameron Childress elliptIQ Inc.

Email Stats Tool? (Was: And the award goes to ....)

2002-01-02 Thread Cameron Childress
Out of curiosity, what tool are you using to generate these stats? -Cameron Cameron Childress elliptIQ Inc. p.770.460.1035.232 f.770.460.0963 -- http://www.neighborware.com America's Leading Community Network Software -Original Message- From: Hoffman, Joe

Re: Lock CFPOP?

2002-01-02 Thread Tyler Silcox
Are you checking for cfpop's special errors such as COM.Allaire.ColdFusion.POPAuthFailure and COM.Allaire.ColdFusion.POPConnectionFailure? I just built an app that extensively used cfpop (arrrggg! Note to Neo-philes: please make Neo email friendly) and I was pulling a similar

RE: Lock CFPOP?

2002-01-02 Thread Cameron Childress
CFPOP is a little flaky at times. After all, lots of things can go wrong when you are 1) looking up a mail server DNS entry 2) depending on the network connection to the mail server remaining up 3) depending on the mail server itself being up 4) depending on the mail server not to throw errors

RE: Speeding up select queries

2002-01-02 Thread Cameron Childress
Other attributes of cfquery which may be of help in speeding up a query is to try using blockfactorwhick specifies the max number of rows to fetch at a time from the server or maxrows if you want to limit the number of rows returned. FYI - The MaxRows attribute of the CFQUERY tag is applied

Re: Lock CFPOP?

2002-01-02 Thread Owen Leonard
Are you checking for cfpop's special errors such as COM.Allaire.ColdFusion.POPAuthFailure and COM.Allaire.ColdFusion.POPConnectionFailure? No, I wasn't aware of those. Where should I have looked to find out about these? I was pulling a similar non-descriptive error and I had to put a

RE: Speeding up select queries

2002-01-02 Thread Cameron Childress
Tracy, When using 'IN' keep in mind that SELECT blah FROM table WHERE ID IN (1,2,3) is basically the same as: SELECT blah FROM table WHERE ID = 1 OR ID = 2 OR ID = 3 If the ID list is really long, you could imagine how many 'OR' statements you are sticking into your query, and how slow it

Re: Visual Basic?

2002-01-02 Thread Paul Hastings
http://peach.ease.lsoft.com/archives/visbas-beginners.html http://peach.ease.lsoft.com/archives/visbas-l.html http://groups.yahoo.com/search?query=vba http://peach.ease.lsoft.com/archives/index.html --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system

Efficient Logging Application

2002-01-02 Thread Jim McAtee
I need to log views of dynamically generated pages in a MySQL database. We're just going to be logging on a monthly basis, so this means that each page will have one log record per month. A couple of ideas we're kicking around: 1. Every time a page is accessed on the site, we'll call a CF tag

RE: Efficient Logging Application

2002-01-02 Thread Mark A. Kruger - CFG
Jim, How about an application variable - a structure with all the current pages that is built from your table. Check the structure (structkeyexists( )) to see if the your ap is aware of the page - if it's not, do an insert, otherwise proceed to the update. I have used this method before for

Re: Speeding up select queries

2002-01-02 Thread Paul Hastings
If the ID list is really long, you could imagine how many 'OR' statements you are sticking into your query, and how slow it will make it run. I suspect restructuring your query to avoid the huge 'IN' list will speed your query up substantially. one trick is to shove those IDs into a temp

RE: Speeding up select queries

2002-01-02 Thread Joel Parramore
I'm not familiar with the query analysis capabilities of sql2000, but you could look to see how that query might be behaving with respect to the database and get some suggestions for optimization that way, with any too ls available. Perhaps you could try indexing that table on the zip code (if

Re: Lock CFPOP?

2002-01-02 Thread Tyler Silcox
Yep, that's another nifty feature of cfpop, the cfcatch type=any doesn't catch those errors. Here's what I use: !--- i'll catch any connection errors --- cftry !--- i retrieve the emails --- cfpop action=GetAll attachmentpath=#request.Path.FileDir#attachmentpath\ maxrows=250

CF Server

2002-01-02 Thread Adkins, Randy
Has anyone experienced a CF Application Server lose the ODBC connections to a native box and reboot itself? Any ideas? Randy Adkins Tech Lead - Novient SRA International [EMAIL PROTECTED] (703) 803-1677 __ Why

RE: Efficient Logging Application

2002-01-02 Thread Bruce, Rodney (Contractor)
Jim I do the following to keep track of hits, monthly to my web pages: I have a table to hold the current monthly web pages info and an identical historical table. I call a tag that checks to see if the page is already in the table if not it creates a record with hits=1

CF and C++

2002-01-02 Thread Jaye Morris
Is there a SDK for creating custom tags with C++? Thanks, Jaye Morris [EMAIL PROTECTED] __ Get Your Own Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant Activation · $99/Month · Free

RE: Email Stats Tool? (Was: And the award goes to ....)

2002-01-02 Thread Hoffman, Joe (CIT)
Outlook 2000 .pst, exported to Access then sql on the 'from email' address. Some people have more than one email address and more than one exact name. Joe Hoffman mailto:[EMAIL PROTECTED] National Institutes of Health Center for Information Technology Division of Computer System Services

Re: CF and C++

2002-01-02 Thread Howie Hamlin
Yes. It comes with ColdFusion. You can also download the SDK as well as many many examples from www.intrafoundation.com HTH, -- Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. - www.CoolFusion.com - 631-737-4668 x101 inFusion Mail Server (iMS) - The Intelligent Mail

Re: Efficient Logging Application

2002-01-02 Thread Jim McAtee
Mark, That's a possibility. I'd have to evaluate how much memory that might require. There could easily be 10,000 distinct records. I think I'd either need to just keep only a day's worth of data within this application structure, or else write it out periodically to disk, just in case the CF

CFHTTP?

2002-01-02 Thread Kris Pilles
I AM HAVING AL SORTS OF PROBLEMS WITH CFHTTP... HTTP://Webmaster.wsboces.org/test.cfm Refresh the page multiple times and notice a bunch of different error messages Notice all the different errors anyone have any idea on how or why this

Re: CFHTTP?

2002-01-02 Thread Bryan Stevenson
Just 1 error: The page cannot be displayed ;-) Bryan Stevenson VP Director of E-Commerce Development Electric Edge Systems Group Inc. p. 250.920.8830 e. [EMAIL PROTECTED] - Allaire Alliance Partner www.allaire.com - Original Message

RE: Efficient Logging Application

2002-01-02 Thread Tyler M. Fitch
What are any of these homebrew page view scripts performing that can't be derived from the webserver logs? Webtrends sells their Log Analyzer for $499. How many development hours will you spend before you've spent more than $499 of your time? The reporting functionality of WebTrends should be

Does CFX_GETHOSTBYADDR Leak?

2002-01-02 Thread Craig Fisher
All- I am working with a client who is using the tag CFX_GETHOSTBYADDR. They are running CF 5.0 on a Windows 2000 box and they are having problems with memory leaks. I have no particular reason to suspect the tag (in fact we have much more likely candidates for the leak) but in the interest of

RE: Does CFX_GETHOSTBYADDR Leak?

2002-01-02 Thread Brunt, Michael
Craig, in the call or any interactivity to the CFX tag locked? if not I strongly recommend that it should be. Mike Brunt Sempra Energy 213.244.5226 Smith Wesson - the original point and click interface. -Original Message- From: Craig Fisher [mailto:[EMAIL PROTECTED]] Sent: Wednesday,

Re: Sorry was wondering if anyones use this CGI Script

2002-01-02 Thread Troy Montour
Ack even a txt file I mean not a tx. - Original Message - From: Troy Montour [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, January 02, 2002 1:29 PM Subject: Re: Sorry was wondering if anyones use this CGI Script Cameron, Does it put the results in a tx file or

RE: CFHTTP?

2002-01-02 Thread Paul Wille
Kris, I'm getting a 500 Server Error. Is the rest of the site working okay? Perhaps you could post the code for us to take a look at. Regards, --Paul Paul W. Wille[EMAIL PROTECTED] -- --

RE: Efficient Logging Application

2002-01-02 Thread Matt Robertson
Under idea #2: Can you make an adjustment to the content production side of the fence, so when a content producer does a new page insert a corresponding insert is also done to your log db? That would keep the two tables synch'd and you'd be down to one query doing UPDATEs. --Matt Robertson--

RE: CFHTTP?

2002-01-02 Thread Kris Pilles
Ok... Here is the link to the file: http://webmaster.wsboces.org/courseinfo/courses.txt The code is: cfhttp url=http://webmaster.wsboces.org/courseinfo/courses.txt; method=Get delimiter=, throwonerror=yes textqualifier=|| columns=sname,

Re: Efficient Logging Application

2002-01-02 Thread Jim McAtee
Good question. We also run a web log analyzer. There are a couple of things that a web stats package can't do for us. First, if it's not storing data in a database that we can query, then we're limited in the types of queries that we can do, and we're limited to the particular presentation of

Re: Does CFX_GETHOSTBYADDR Leak?

2002-01-02 Thread Jon Hall
Since you are running 5.0 Ben Forta wrote a UDF that uses Java to do the lookup. I'm pretty sure that Java doesn't have any leaks... http://www.cflib.org/udf.cfm?id=447 jon - Original Message - From: Craig Fisher [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, January

RE: Sorry was wondering if anyones use this CGI Script

2002-01-02 Thread Cameron Childress
Does it put the results in a tx file or directly into the email?? In the body of the message... Your txt file would look something like this, and the output would simply replace the placeholders (in brackets) with the form field data. The first three lines of the txt file actually dictate

RE: Efficient Logging Application

2002-01-02 Thread Mark A. Kruger - CFG
Jim, Yes those are all issues. 10,000 records doesn't seem like too much (depending on your hardware and how managed your code is) however. My structure of symbols grows from 0 to around 18,000 routinely throughout the day. For you, the first time it is built it will be slow, but after that

RE: CFHTTP? Solution?

2002-01-02 Thread Kris Pilles
Really weird but once I moved those text files to a different URL on the same server, It works??? Anyone know why? Maybe CFhttp doesn't play well with subdomains? New file location: www.careerlearn.org/KrisKart/courses.txt -Original Message- From: Kris Pilles [mailto:[EMAIL

Re: Efficient Logging Application

2002-01-02 Thread Jim McAtee
Mark, I follow you now. Sounds like a very good idea. Use the struct to parrallel the database table so that I can avoid checking the table itself before doing an UPDATE. I guess your question about StructKeyExists() really gets down to how structs themselves are implemented in CF and how

RE: CFHTTP? Solution?

2002-01-02 Thread Garza, Jeff
Have you tried hitting that page from the server console (actually logging into the server and firing up IE or Netscape)? Perhaps it's a DNS issue on your webserver. Jeff Garza Lead Developer/Webmaster Spectrum Astro, Inc. -Original Message- From: Kris Pilles [mailto:[EMAIL

RE: Speeding up select queries

2002-01-02 Thread Justin Greene
It will be far more efficient to do the whole query in SQL rather than creating 2 queries in CF. Let SQL do the work, it is very good at it. I suspect that you IN clause is causing the Query optimizer to have problems determining which index to use which is why you are seeing a huge difference

RE: Efficient Logging Application

2002-01-02 Thread Mark A. Kruger - CFG
That's an interesting thought -Original Message- From: Jim McAtee [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 02, 2002 12:03 PM To: CF-Talk Subject: Re: Efficient Logging Application Mark, I follow you now. Sounds like a very good idea. Use the struct to parrallel the

Inheriting Application.cfm?

2002-01-02 Thread Andrew Peterson
Hi, I haven't heard of anyone ever doing this, but it seems to work for me, so I was wondering if it was in some way poor programming or otherwise not recommended. I've got an application.cfm file in my root folder, whose properties also apply to a subfolder since no application.cfm file is in

RE: Inheriting Application.cfm?

2002-01-02 Thread Raymond Camden
My subfolder's application file would look like this: cfscript CSOnline = True; /cfscript cfinclude template=/application.cfm Like I said, it seems to work. Any reason not to do this? Thanks! As long as you are aware that changes to the root app.cfm affect the children - I say go for it.

Re: Inheriting Application.cfm?

2002-01-02 Thread Bryan Stevenson
Ditto to Ray's comment. I use it all the time and it works great! Bryan Stevenson VP Director of E-Commerce Development Electric Edge Systems Group Inc. p. 250.920.8830 e. [EMAIL PROTECTED] - Allaire Alliance Partner www.allaire.com

RE: Inheriting Application.cfm?

2002-01-02 Thread Mark A. Kruger - CFG
Able Commerce's e-comm package is built around just such an approach and it seems to work well. Mark -Original Message- From: Andrew Peterson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 02, 2002 12:32 PM To: CF-Talk Subject: Inheriting Application.cfm? Hi, I haven't heard of

RE: vspider --- help please

2002-01-02 Thread jon
Ok... the spider is driving me friggin' insane. The spectrum astro docs were good enough to get me started, but I'll be darned if I can get it to spider my site. Here's the issue -- we've got multiple IP addresses on a single machine. I was able to create the collection alright, but I can't get

RE: vspider --- help please

2002-01-02 Thread Sean McCarthy
Ouch you just ran into the same problem I did I ended up scrapping the vspider, may purchase the full blown one. You cannot, that I have found, get the spider to do its thing on anything but the base IP of the server, 127.0.0.1, localhost, servername, or servername with a port number. The

RE: vspider --- help please

2002-01-02 Thread jon
I *may* have found a solution -- it's plugging away right now. Basically, since the machine's actual IP is 206.239.147.xx I changed IIS to serve the same site at 206.239.147.xx and www.epilepsyfoundation.org. It's plugging away like it knows wassup, so apprently that solved the problem. We shall

RE: vspider --- help please

2002-01-02 Thread Sean McCarthy
Yep that should work but I did not see anyway to automate things in the future using that method or temporarly pointing the sites to port numbers. I called Verity this morning to find out pricing on the full spider unfortunately their offices are closed from Dec 24 to Jan 4 (nice vacation!).

RE: vspider --- help please

2002-01-02 Thread Garza, Jeff
Lucky Verity employees... They're off until the 7th... I'll know more then. Jeff Garza Lead Developer/Webmaster Spectrum Astro, Inc. -Original Message- From: jon [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 02, 2002 2:10 PM To: CF-Talk Subject: RE: vspider --- help please

Re: Inheriting Application.cfm?

2002-01-02 Thread Jim McAtee
Question: Do custom CF tags see the parent template's application scope variables? Without testing it, I'm guessing the answer is 'No'. How then, would I access application variables from a custom tag? Can I do a 'caller.application.whatever = something'? Jim - Original Message -

?iso-8859-1?Q?Fwd:_Urgent_Browser_Security_Notice_=96_?= Immediate Action Recomm ended

2002-01-02 Thread Chad Gray
Dear Microsoft .NET Passport Member: Thank you for using Microsoft® .NET Passport. Because Microsoft recognizes the importance of security and reliability when using Internet software, we have now made available free browser security upgrades to better protect your online information. We

Javascript/CF/HTML combination

2002-01-02 Thread Bosky, Dave
I'm trying to jump to a specific part of a page using a javascript OnChange event but can't seem to find the correct syntax. It works without the '#Page2' but I need to jump to this portion of the page. Maybe an extra set of eyes will help.

RE: Inheriting Application.cfm?

2002-01-02 Thread Dave Watts
Question: Do custom CF tags see the parent template's application scope variables? Without testing it, I'm guessing the answer is 'No'. How then, would I access application variables from a custom tag? Can I do a 'caller.application.whatever = something'? Yes, the Application scope is

RE: Javascript/CF/HTML combination

2002-01-02 Thread Dave Watts
I'm trying to jump to a specific part of a page using a javascript OnChange event but can't seem to find the correct syntax. It works without the '#Page2' but I need to jump to this portion of the page. Maybe an extra set of eyes will help.

RE: Inheriting Application.cfm?

2002-01-02 Thread Mark A. Kruger - CFG
For that matter so is both the FORM and URL scope. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 02, 2002 1:49 PM To: CF-Talk Subject: RE: Inheriting Application.cfm? Question: Do custom CF tags see the parent template's application scope

Re: Inheriting Application.cfm?

2002-01-02 Thread Bryan Stevenson
Yes Jim. You can use the Application scope inside custom tags Bryan Stevenson VP Director of E-Commerce Development Electric Edge Systems Group Inc. p. 250.920.8830 e. [EMAIL PROTECTED] - Allaire Alliance Partner www.allaire.com -

RE: How do I handle Large Record Sets from the DB? (o8i)

2002-01-02 Thread Jeffrey Polaski
You could use an Oracle stored procedure to write out the results to a file/files on the web server. Then you are just serving files from a web server--no big deal. You might need to be creative in how you re-assemble the files, or you might need to map a drive so the web server and your db

RE: Any ideas on how to do this please?

2002-01-02 Thread Office
Yes please as well I'd really like to look at your code and see if if it will help get this system going. Thanks Mike Peters NZERN Mail: PO Box 9000, Christchurch (03) 338-5451 E-mail: [EMAIL PROTECTED] http://www.bush.org.nz

  1   2   >