Re: convert caps to small

2000-06-21 Thread rkeniger
Is there a tag that can instantly convert all the text that im outputting into all small letters .. Rather than some of them being in capitals ? Umm, yeah.. Lcase("INSERT YOUR CAPS STRING HERE") HTH Rob Keniger

RE: Searchy thing

2000-06-21 Thread Parker, Kevin
Thanks Paul - does anyone know if it is possible to extract the document title, subject, author etc contained in the pdf document's General Info using Verity and CF. The very good example provided by Paul only shows the file's name. Kevin Parker Service and

Re: convert caps to small

2000-06-21 Thread vincy
doh!!! Thanks!!! When I'm in a hurry ..I tend to miss small things like these ! : ) thanks again. At 04:18 PM 6/21/00 +1000, you wrote: Is there a tag that can instantly convert all the text that im outputting into all small letters .. Rather than some of them being in capitals ? Umm,

[ANN] ACT ColdFusion User Group Meeting

2000-06-21 Thread Stephen Collins
A N N O U N C E M E N T ACT ColdFusion User Group Meeting This Month - our highest profile speaker ever, AND a visit from Firmware!!! When: 5:30-6:45PM, Thursday 13 July 2000 Where: Level 2 Training Centre Defence Housing Authority 26 Brisbane Avenue BARTON

RE: Support for NCLOB Datatype in Oracle

2000-06-21 Thread Dave Watts
Can anyone tell me whether the native driver for Oracle that comes with Cold Fusion Enterprise 4.5 supports Oracle's NCLOB data type? I'm not 100% certain, but I don't think so - N' data types aren't ASCII, but Unicode, which CF doesn't understand. Dave Watts, CTO, Fig Leaf Software

RE: combining order by and cf group attribute

2000-06-21 Thread Dave Watts
I'm joining a few tables and grouping them by their "package". It works great until I try to add an ORDER BY price statement to the sql. When I do that, it creates several groups. The pricing order takes precedence over the grouping done in CF. How can I order by price and stay within the

RE: This is a multi-part message in MIME format????

2000-06-21 Thread Philip Arnold - ASP
Why is it some messages get posted with this? This is a multi-part message in MIME format. A little more expansively (sp?), any non-Plain Text format; i.e. Rich Text, HTML, etc. Basically, it's the poster not choosing Plain Text in the formatting of the email messages, which is annoying on

RE: Need help with a SQL query

2000-06-21 Thread Philip Arnold - ASP
Sorry about the non-descriptive subject, but I'm tired and really couldn't think of a way to describe my question in one line g. I have a database table of product information and a database table of product category information. Each product may exist in more than one category, so I

Re: MDAC 2.5 - i don't think so

2000-06-21 Thread Bud
On 6/20/00, Ric Smith penned: Just so you all know, I installed MDAC 2.5 on my production server (cf 4.5,nt4 sp6a) and access didn't like it one bit. I don't know if it's just my machine or what, but I reinstalled 2.1 and everything is happy again. The error I got was something like ODBC Access

Oracle vs SQL server

2000-06-21 Thread Tom Nunamaker
Hi everyone. We're using SQL server 7.0 and it's working great. The DoD recently purchases a site license for the entire DoD for Oracle. My question is should I move my SQL server DB to Oracle? I tend to say no just because everything is already working, including some stored procedures

RE: Database Design Question

2000-06-21 Thread cbevis
The standard way to take care of this is a self-referencing table, and a recursive function to bust them out. ID|Parent_ID Top levels have an id of 0, and the other rows work well with an autonumber in the id. If children can have multiple parents, as in a BOM(Bill of Materials) problem,

RE: Oracle vs SQL server

2000-06-21 Thread joeug
Tom, I have worked with both the databases and i think Sql server is "much more easier to set up and to work with". Sql server is much more flexible than oracle, Oracle might have some advantages for large databases, but i guess the latest Sql server version is equally powerful. Joe

RE: How to escape a - in a form post

2000-06-21 Thread Frédéric LeMieux
Well, since a FORM is essentially a struct, you can access you variable by referencing it this way : #FORM["E-Mail"]# I tested it with CFServer 4.5.1 on Solaris, but since this kind of reference can be made also on 4.0, it should work. -Original Message- From: Kevin Pechin

Re: Need help with a SQL query

2000-06-21 Thread Seth Petry-Johnson
Right, I'm not gonna address the whole thing (no time at the moment), but a quick word about sub-queries They should be used in 2 ways - one to return a single result; select * from myTable where myValue=(select myValue from myOtherTable where...) Or to return multiple values select *

RE: OT: RE: Looking for junior-level CF developer

2000-06-21 Thread Andrew Scott
I actually agree with this post, because I have been programming for 20 years. In this time I have learnt a lot in the logic of programming, and this would give me the Senior Analyst Programmer status. As I have also been developing in Coldfusion for the last 3 years, I have found that it is the

Re: How to escape a - in a form post

2000-06-21 Thread Seth Petry-Johnson
Well, since a FORM is essentially a struct, you can access you variable by referencing it this way : #FORM["E-Mail"]# I tested it with CFServer 4.5.1 on Solaris, but since this kind of reference can be made also on 4.0, it should work. This won't work in CF 4.01 or earlier. The FORM

RE: CFMAIL MIMEATTACH

2000-06-21 Thread Andrew Scott
Actually it is very possible with CF 4.5.1 :-) -Original Message- From: Kevin Langevin [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 21 June 2000 1:20 PM To: [EMAIL PROTECTED] Subject: RE: CFMAIL MIMEATTACH It isn't possible to send multiple attachments using CFMAIL. If you need to

Re: Need help with a SQL query

2000-06-21 Thread Justin v0.9 MacCarthy
Hi Seth, This book also has info on cross Tabulations which what you want Also there are scripts here http://www.swynk.com/sqlhome/6xlibrary.asp for doing this ... BTW It's an excellent site for SQL ~Justin Have a look at Joe Cleko's books SQL for Smarties . He has lots on these types

Re: Searchy thing

2000-06-21 Thread Chris Michl
As far as I know, the only thing you can extract are the keywords. Here's what I use: CFSEARCH name = "GetResults" collection = "MyCollection" criteria = "FTS_Keywords contains #Form.Criteria#" maxRows = "#Evaluate(Form.MaxRows + 1)#" startRow = "#Form.StartRow#" Regards, Chris - Original

Re: Need help with a SQL query

2000-06-21 Thread Deanna L. Schneider
Doh, I forgot to add all the where clauses in that last sql thing, but you get the idea where t1.itemid = t2.itemid andt1.itemid = 1 Deanna Schneider Interactive Media Developer UWEX Cooperative Extension Electronic Publishing

RE: How to escape a - in a form post

2000-06-21 Thread Kevin Pechin
It worked perfectly. Thank you so much Frédéric Frédéric LeMieux [EMAIL PROTECTED] 06/21/00 07:55AM Well, since a FORM is essentially a struct, you can access you variable by referencing it this way : #FORM["E-Mail"]# I tested it with CFServer 4.5.1 on Solaris, but since this kind of

Streaming audio

2000-06-21 Thread Todd Ashworth
Has anyone here ever made a CF site that involves on-demand streaming audio? If so, what streaming server did you use? Does CF have any effect on server choices, etc.? .Todd -- Archives:

Re: images, cold fusion, and sql server

2000-06-21 Thread Larry C. Lyons
Chad, Do yourself a favour and don't store the image in the database. Its probably faster to just reference the image name and parameters (height and width). Put the images in a directory that is not on the web server. Then use CFFile and CFContent to get the path and to display the images.

RE: Streaming audio

2000-06-21 Thread Zachary Bedell
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Has anyone here ever made a CF site that involves on-demand streaming audio? If so, what streaming server did you use? Does CF have any effect on server choices, etc.? We're using Windows Media Services w/ CF. We chose WMS over

K12 school application

2000-06-21 Thread Dan Schueler
Anyone know of an application in cf for schools? K-12 would be good, but college would be useful too. I'm trying to help out a local school district. They have cold fusion, but are just getting started. I'm thinking about things like school calendar, classes, teachers, staff, organizations,

Re: Streaming audio

2000-06-21 Thread Brian Mitter
No information about any possible problems with Cf here but this article from developer.com may help a little if youre using iis http://developer.earthweb.com/journal/techworkshop/060900_stream.html - Original Message - From: Todd Ashworth [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent:

RE: Database Design Question

2000-06-21 Thread Dan G. Switzer, II
Brook, I'd recommend buying SQL for Smarties by Joe Celko. There's a couple of chapter specifically on ways to handle hierarchy data w/different database systems. I really like the "Nested-Set Model." The nice thing about the Nested-Set model is that you can do all your tree parsing/order via

Re: Database Design Question

2000-06-21 Thread Dave Hannum
Ben Forta wrote an SQL book last year - published by SAMS. I think it's Learn SQL in 10 Minutes. Dave = "What we need is a list of specific unknown problems we will encounter" David Hannum Web Analyst/Programmer Ohio University [EMAIL PROTECTED] (740) 597-2524

RE: MDAC 2.5 - i don't think so

2000-06-21 Thread Eron Cohen
Me too. I initially DID have problems with MDAC 2.5, when I first installed it. I wound up using the component checker from Microsoft to uninstall it ( see my article in Fusion Authority entitled "What to Do When You're Having Trouble with an MDAC Installation"

Setting Fonts for CFTable

2000-06-21 Thread Paige Chandler
This is a multi-part message in MIME format. --=_NextPart_000_001A_01BFDB6A.0CA7C0C0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi All, Is there a way to set fonts for CFTable? I don't see any examples in = the books. Do I have to

RE: IIS sharing on IP address

2000-06-21 Thread Olive, Christopher M Mr USACHPPM
with IIS, the three things that make up a "site's ID" are IP address, port, and host header. change any one of these, and it's a "new" site. however, host headers are a bit sticky. the client browser needs to know how to use them (essentially 3+ browsers here) and the client box has to "know"

Re: K12 school application

2000-06-21 Thread Rod Tosten
Dan- i am rod tosten from Gettysburg College and CNAV Systems. We have a system that i believe fullfills your needs. i feel uncomfortable "advertising" on this list, please contact me. thanks, -rod Rod Tosten Associate Professor of Computer Science Gettysburg College Programmer/Architect

RE: K12 school application

2000-06-21 Thread Caulfield, Michael
My sister has actually put something together at webassignment.com in Cold Fusion. It has a templates for interactive assignments (DHTML fill in the blanks, matching, concentration), database-driven homework submissions and retrieval, a school calendar, DHTML seating charts, automatic grading

solaris

2000-06-21 Thread [EMAIL PROTECTED]
Hello everyone, Could someone please tell me how to configure ODBC from solaris 7(Sun) to Novell? The unix commands... Thanks, Nehal -- -- -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit

CF 404

2000-06-21 Thread [EMAIL PROTECTED]
Hi again, Does anyone know how does one go about making CF Server use a modified .cfm to replace the CF 404 Not Found error? Thanks, Nehal Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit

RE: Need help with a SQL query

2000-06-21 Thread Philip Arnold - ASP
Right, I'm not gonna address the whole thing (no time at the moment), but a quick word about sub-queries They should be used in 2 ways - one to return a single result; select * from myTable where myValue=(select myValue from myOtherTable where...) Or to return multiple values

Re: OT: IIS sharing on IP address

2000-06-21 Thread Eric Dawson
create a new web site. assign to the IP address. After created go into the properties, and add the header information for the domain. pretty simple. I think there is an "advanced" button next to IP address information (not in front of me, short attention span ...) easier to use on Win2K. HTH

DDE in CF

2000-06-21 Thread Dmitry Shkolnik
Hi All, I'm new to Cold Fusion, so, please forgive me if this is a stupid question. I'm trying to do DDE or OLE in cold fusion (communicating with MS Word or Excel) Please let me know if this is possible in CF and if it is, where can I find info. about it. Thank you, Dmitry

Re: K12 school application

2000-06-21 Thread Larry C. Lyons
You might want to check with the George Washington University. Their Prometheus system was developed in CF and does what you want. Its showcased at the allaire site in the case studies section. larry Dan Schueler wrote: Anyone know of an application in cf for schools? K-12 would be good,

Re: CF 404

2000-06-21 Thread Erki Esken
Does anyone know how does one go about making CF Server use a modified .cfm to replace the CF 404 Not Found error? You can define Missing Template Handler (and Site-wide Error Handler) file in CF Administrator (version 4.5 and up). Erki

CFX execution time

2000-06-21 Thread Michel Vuijlsteke
Hello. I have Delphi-built cfx that takes 2 integers and returns them to me multiplied with a status code. Is it normal for a simple cfx like that to take more than 2 seconds to process? Thing is, a more complex cfx which does a complex calculation involving a third-party dll and binary files

RE: COM object/Interface problems

2000-06-21 Thread Russel Madere
I gave it a try, and it didn't work. The program runs, but nothing happens. Russel -Original Message- From: Justin v0.9 MacCarthy [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 21, 2000 5:26 AM To: [EMAIL PROTECTED] Subject: Re: COM object/Interface problems Try using cfx_spawn

RE: Nesting cfswitch possible?

2000-06-21 Thread Bill Killillay
Ya, a long time ago, but mine was about time penalty's in doing so. I was looking for any pro's or cons on the time it takes to execute LARGE switch statements. I have been using nested switch statements for some time. I just wanted to know if I should be doing it some other way and have since

Re: Oracle vs SQL server

2000-06-21 Thread Judah McAuley
At 01:18 PM 6/21/2000 +0200, you wrote: Hi everyone. We're using SQL server 7.0 and it's working great. The DoD recently purchases a site license for the entire DoD for Oracle. My question is should I move my SQL server DB to Oracle? Just to be contrary, I'd put my vote in for Sybase. Great

CFCONTENT Internet Explorer

2000-06-21 Thread Percy E Perez
Hello Everyone, I have a problem with CFCONTENT, whenever I retrieve a PDF file using CFCONTENT, my internet explorer thinks is a CFM page. I visited allaire's website and they have a workaround which is specifying my link as: http://www.website.com/file.cfm/file.pdf?docId=101010rev=G This

Re: OT: IIS sharing on IP address

2000-06-21 Thread Todd Ashworth
As I recently learned from someone else in here, you *could* do it like this. In the default document of the root web at the IP address, put something like this: CFSWITCH EXPRESSION="#lcase(CGI.SERVER_NAME)#" CFCASE VALUE="www.site1.com, site1.com" CFLOCATION URL="/folder1/"

äãéîòî ä÷éèñéèèñì úéæëøîä äëùìä

2000-06-21 Thread jonathan hamner
Is there a way to have CF store input to a form in another language besides english( like : Arabic, Japanese, chinese etc) in SQL Server database? Thanks A lot __ Do You Yahoo!? Send instant messages with Yahoo! Messenger. http://im.yahoo.com/

Re: CFX execution time

2000-06-21 Thread Justin v0.9 MacCarthy
Is the CFX set to remain loaded in memory? ~Justin - Original Message - From: Michel Vuijlsteke [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, June 21, 2000 4:21 PM Subject: CFX execution time Hello. I have Delphi-built cfx that takes 2 integers and returns them to me

Re: äãéîòî ä÷éèñéèèñì úéæëøîä äëùìä

2000-06-21 Thread Justin v0.9 MacCarthy
CF doesn't support Unicode at this time. However I believe the next release will. ~JustinMacCarthy - Original Message - From: jonathan hamner [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, June 21, 2000 5:19 PM Subject: äãéîòî ä÷éèñéèèñì úéæëøîä äëùìä Is there a way to have

RE: OT: IIS sharing on IP address

2000-06-21 Thread Robert Everland
How do you go about writing the header information, do you put the url there, or do you put the folder. That's the only thing I can't figure out. It doesn't say specifically in the documentation on what to do. Robert Everland III Web Developer Dixon Ticonderoga -Original Message- From:

SQL convert

2000-06-21 Thread Brian Horn
Getting an error message in a SQL statement...any help is appreciated. select CONVERT(decimal(5,2),base_1) as Price from product_price product_price.base_1 is varchar 255 gives this error message: Msg 8114, Level 16, State 2 Error converting type varchar to type numeric. Brian D. Horn Society

Re:

2000-06-21 Thread Paul Hastings
Is there a way to have CF store input to a form in another language besides english( like : Arabic, Japanese, chinese etc) in SQL Server database? alphabet based languages in or out of unicode are pretty straightforward. multi-byte character ones like chinese japanese are another story. if

RE: SQL convert

2000-06-21 Thread mherbene
Perhaps a value in the base_1 field is not convertible to numeric? (non-digit) -Original Message- From: Brian Horn [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 21, 2000 12:30 PM To: '[EMAIL PROTECTED]' Subject: SQL convert Getting an error message in a SQL statement...any help is

CF updating values in database

2000-06-21 Thread Jamie Symonds
This is a multi-part message in MIME format. --0744F58F5C26C4A7D1D9CDD6 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hello everyone - thanks for provind an interesting list to read. I have now summoned the courage to make a posting, here's my question:

MAC error

2000-06-21 Thread Dan O'Keefe
I have an app with a self-posting template. There are 2 different ways it is submitted. Selecting an option from a select list and the onchange event, and a submit button. Both form object have a value associated with it. The template works fine in IE and NS WIN, but on the MAC, when I select an

Looping through a structure

2000-06-21 Thread Tim Bahlke
When I run the code below, the keys are outputted in alphabetic order, not the order that they are in the structure (which is of course what I am after). Can someone point me in the right direction ... *please*? And while we're at it ... is there a way I can output the name of the structure

Re: Streaming audio

2000-06-21 Thread Dirk De Bock
Is there any way of controlling access to the realmedia server, like writing in a table what users do or do not have access ? Also can you control from CF what point in a file the player should jump to. That is : create a link in CF that will instruct the realuadio player to open a specific file

RE: Oracle vs SQL server

2000-06-21 Thread jstiefel
Free on Linux even. ;-) -Original Message- From: Judah McAuley [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 21, 2000 12:05 PM To: [EMAIL PROTECTED] Subject: Re: Oracle vs SQL server At 01:18 PM 6/21/2000 +0200, you wrote: Hi everyone. We're using SQL server 7.0 and it's working

RE: OT: IIS sharing on IP address

2000-06-21 Thread Eric Dawson
if I understand correctly. you have to go in after creating the website in IIS and rightclick properties. on the first page, you'll have to hit an advanced button or something like that to get to where you can enter the header informtion. HTH From: Robert Everland [EMAIL PROTECTED] Reply-To:

Re: OT: IIS sharing on IP address

2000-06-21 Thread Stephenie Hamilton
you need to specify the url (without the http://) ie mysite.com www.mysite.com -- Stephenie Hamilton ColdFusion Administrator Express Technologies, Inc. Want CF_Freedom? try CFXHosting.com - Original Message - From: Eric Dawson [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday,

Re: Need help with a SQL query

2000-06-21 Thread KChapman
If all you want is a comma seperated list of the categories for each item. Why not just add a "categories" field to the item table? Store the comma seperated list there. --K Katrina Chapman Consultant Ameriquest Mortgage

ODBC User Directories

2000-06-21 Thread David B. Brooks
Greetings all, Has anyone had any luck creating an ODBC User Directory through the Advanced Security using Cold Fusion Server 4.0.1? I followed all the examples from the docs to the letter, and am now picking my brain to try other options to no avail. I've tried using Access and SQL databases,

RE: OT: IIS sharing on IP address

2000-06-21 Thread Robert Everland
What I'm asking is say I make it up the ip address is 192.168.0.2 the port is 80 and the header is www.here.com, what do I call the folder to keep the website in. Do I call it what I called my header, and do I make 2 headers, one for www.here.com and here.com or just have my DNS refer to it.

URL parameter and Frames

2000-06-21 Thread Tim Bahlke
Is there a secret to accessing a URL parameter from a deeply nested frame? Tim Bahlke, CIFO thinkcreate.com p. 336.230.0575 f. 336.230.0083 -- Archives: http://www.eGroups.com/list/cf-talk To

RE: OT: IIS sharing on IP address

2000-06-21 Thread Sean Daniels
if I understand correctly. you have to go in after creating the website in IIS and rightclick properties. on the first page, you'll have to hit an advanced button or something like that to get to where you can enter the header informtion. That's just about right. The advanced button opens

Amazon Tags

2000-06-21 Thread Stuart Duncan
Hey all, I've come across a few interesting tags for searching through Amazon's books and such but what I really need is something which allows me to actually select individual books and display those on the site. I was thinking, something where I could just enter the product id form

RE: OT: IIS sharing on IP address

2000-06-21 Thread Zachary Bedell
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 What I'm asking is say I make it up the ip address is 192.168.0.2 the port is 80 and the header is www.here.com, what do I call the folder to keep the website in. Do I call it what I called my header, and do I make 2 headers, one for

RE: OT: IIS sharing on IP address

2000-06-21 Thread Kent Runyan
You setup one site and make sure you use the advanced properties in that v-server to specify the headers for that domain (www. , ww. ,ww3. etc...) Once that is configured, you just point all of the DNS to that IP. Kent Runyan Konnections, Inc. www.konnections.com -Original Message-

RE: OT: IIS sharing on IP address

2000-06-21 Thread Judah McAuley
At 01:27 PM 6/21/2000 -0400, Zac wrote: Hope that's helpful. Do be careful using host headers, tho. They're far less reliable than using separate IPs. I'd consider them accessable for internal stuff or for personal sites, but I would NEVER rely on them for a publicly accessable site that

Re: CFX execution time

2000-06-21 Thread Neil H.
I used to do a make shift execution time for some pseudo webtrends logging. I would set a time in the application.cfm and set a time in onendrequest and compare the two. It would have a small margin of error, but not much. Thanks, Neil - Original Message - From: "Michel Vuijlsteke"

RE: OT: IIS sharing on IP address

2000-06-21 Thread Jeff Beer
AFAIK, you can not use SSL with host headers, as SSL requires binding to a specific IP address. -Original Message- From: Zachary Bedell [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 21, 2000 1:28 PM To: '[EMAIL PROTECTED]' Subject: RE: OT: IIS sharing on IP address

RE: OT: IIS sharing on IP address

2000-06-21 Thread Eric Dawson
when you create the website in IIS you will define the root directory of that site. So if you have the header, port and IP setup for the website, everything should work fine. Recap: call the folder whatever you like. Just make sure you map the website to that folder. I usually create two

Re: OT: IIS sharing on IP address

2000-06-21 Thread Todd Ashworth
So .. will all of this work with FTP as well? .Todd | when you create the website in IIS you will define the root directory of | that site. So if you have the header, port and IP setup for the website, | everything should work fine. | | Recap: call the folder whatever you like. Just make sure

Crystal Reports question

2000-06-21 Thread B Lakeman
The CF Web Application Construction Kit says in Ch. 16 that Allaire has "chosen it as the report writer to be bundled with their applications." That implies to me that it should be on their CD. I have looked on the CF Server 4.0 CD, the CF Studio 4.0 CD and the CF 4.5 Upgrade CD (all for

RE: Crystal Reports question

2000-06-21 Thread Braver, Ben:
Crystal Reports was formerly bundled with CF, but no longer is... In fact there have been threads on cf-talk that Crystal Reports 8 and ColdFusion do not get along. -Original Message- From: B Lakeman [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, June 21, 2000 10:58 AM To: [EMAIL

RE: Crystal Reports question

2000-06-21 Thread Robert Everland
IT was included in version 3, they no longer support or include it. THough if you upgrade from 3.0 they have legacy support in it still. Robert Everland III Web Developer Dixon Ticonderoga -Original Message- From: B Lakeman [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 21, 2000 1:58

CFMAIL running only once an hour

2000-06-21 Thread DSJ
Since installing CF 4.5, my CFMAIL only processes sends mail just once an hour and I cannot find where to configure it to process it immediately. Any help on this would be greatly appreciated. DSJ -- Archives:

OT: The Certified Internet Webmaster qualification

2000-06-21 Thread Hubert Earl
Hi, I've just come across a qualification I've never heard about before, and I'd like some information about it from the point of view of its usefulness. 1. How widely recognized is the Certified Internet Webmaster qualification? 2. How much of an advantage does its possession offer, in terms

Native Drivers

2000-06-21 Thread Tim Bahlke
Sorry to be flooding the list today ... but there's just so much gosh darn knowledge out there ... Can I use an Oracle native driver on Windows Professional? If so can someone direct me as to where I can find how to install and configure? Thanks again. Tim Bahlke, CIFO

OT: Bordercom International

2000-06-21 Thread Hubert Earl
Hi, Bordercom International is the only company I know of that offers training for the Certified Internet Webmaster qualification here in Jamaica. Because of this, I'd like some feedback from anyone with experience with it (as its name suggests, it operates world-wide). 1. If anyone reading

RE: OT: IIS sharing on IP address

2000-06-21 Thread Zachary Bedell
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Nope. Only with HTTP. Best regards, Zac Bedell So .. will all of this work with FTP as well? .Todd | when you create the website in IIS you will define the root directory of | that site. So if you have the header, port and IP setup for

Verity book-like index idea...

2000-06-21 Thread Scott Rowe
Is there anyway to sort of reverse engineer Verity so that you could produce a book-like index of common words and phrases? Is there a specific place in verity where it stores the words it has indexed? I looked thru the collections directory and haven't found anything, can anyone give me an idea

Re: OT: IIS sharing on IP address

2000-06-21 Thread Eric Dawson
not that I've seen. I will play with it. I am thinking that the host will direct you to the IP, but you would have userid for one domain available in the next domain. ? E From: "Todd Ashworth" [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: OT: IIS sharing on

Personalization Algorythms

2000-06-21 Thread AOusterhou
It is great to have the list back . Does anyone know of any CF-based personalization algorythms/tags? I am building an application for a company that requires that I learn about the level of sophistication of a User based on several factors and present different options based on these

RE: CFMAIL running only once an hour

2000-06-21 Thread Sean Daniels
Since installing CF 4.5, my CFMAIL only processes sends mail just once an hour and I cannot find where to configure it to process it immediately. Any help on this would be greatly appreciated. I would highly recommend upgrading to 4.5.1 if you haven't already. There were a number of cfmail

com object

2000-06-21 Thread Jason Egan
This is a multi-part message in MIME format. --=_NextPart_000_0010_01BFDB91.D4DB35A0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit Excuse any dups – I have a JAVA application that works great from a dos prompt, but I need the same (virtually)

RE: Native Drivers

2000-06-21 Thread Dave Watts
Can I use an Oracle native driver on Windows Professional? If so can someone direct me as to where I can find how to install and configure? Yes, you can, if you have CF Enterprise Edition - I'm not sure what the "Professional" you've mentioned refers to: Windows or CF. You'll need to get the

RE: com object

2000-06-21 Thread Robert Everland
Why not use CFExecute if it runs off of a dos prompt? Robert Everland III Web Developer Dixon Ticonderoga -Original Message- From: Jason Egan [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 21, 2000 3:03 PM To: Cf-Talk Subject: com object This is a multi-part message in MIME

CFLOCK timing out - why?

2000-06-21 Thread Anthony Israel-Davis
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01BFDBB2.E36B3E82 Content-Type: text/plain; charset="iso-8859-1" Good day, all: I am trying to lock a session variable but am

Re: CF updating values in database

2000-06-21 Thread Brenda Gammon
Well, there are several ways this could be done. Here are just a couple: get the existing database value and add to it as follows: cfset updatedList = myquery.fielddata "delimiter-of-your-choice" #form.additions# then do an update to the table, setting table.fieldname = '#updatedList#' or

CFFTP Error

2000-06-21 Thread Joshua Starr
I am having a slight problem with CFFTP. I am using an ACTION="GetFile" and trying to save the file in a local directory. No matter what, it won't save the file. The error is: Error Code: 1 Error Text: Cannot get remote file ftptest.htm to local file

RE: Need help with a SQL query

2000-06-21 Thread Dave Watts
If all you want is a comma seperated list of the categories for each item. Why not just add a "categories" field to the item table? Store the comma seperated list there. Because that would be denormalization of the data, which in a transaction processing system is VERY VERY BAD. That's why we

OT: how to rid MIME header...

2000-06-21 Thread Anthony Israel-Davis
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01BFDBB5.C0EB5538 Content-Type: text/plain; charset="iso-8859-1" First of all I apologize for a) the ugly headers and b) the OT

Re: Native Drivers

2000-06-21 Thread Stephen Garrett
nope. At 02:27 PM 6/21/2000 -0400, Tim Bahlke wrote: Sorry to be flooding the list today ... but there's just so much gosh darn knowledge out there ... Can I use an Oracle native driver on Windows Professional? If so can someone direct me as to where I can find how to install and configure?

Re: CFLOCK timing out - why?

2000-06-21 Thread Adam Cantrell
I believe that the syntax for the cflock tag in 4.5 is different - you can omit the type attribute. You just need the scope and the timout. - Original Message - From: "Anthony Israel-Davis" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, June 21, 2000 1:59 PM Subject: CFLOCK

Nesting Output

2000-06-21 Thread Ruthie Siegel
This is a multi-part message in MIME format. --=_NextPart_000_01B6_01BFDB96.16B98EA0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I am having a problem output nested infomation. I can't seem to get = more than 1 query (ie record stream)

RE: com object

2000-06-21 Thread Jason Egan
I thought I had seen here or elsewhere that cfexecute wasn't secure or stable.. can't remember... but I would like the contents to be in a variable rather than a file so that I won't have to go to the disk... but perhaps it will be a temporary solution. Have you heard anything negative about the

RE: CFLOCK timing out - why?

2000-06-21 Thread Dave Watts
I believe that the syntax for the cflock tag in 4.5 is different - you can omit the type attribute. You just need the scope and the timout. The TYPE attribute isn't required, but the default value is exclusive, and if you can use a readonly lock instead, that would be preferable. In this

RE: COM object/Interface problems

2000-06-21 Thread lsellers
Try... (I've forgotten which is which myself now)... um, CFX_ConsoleCommand. It can capture the text output that occurs during the program execution. Check out the text. Might show you if an error message is coming up. --min I gave it a try, and it didn't work. The program runs, but nothing

RE: com object

2000-06-21 Thread Dave Watts
I thought I had seen here or elsewhere that cfexecute wasn't secure or stable.. can't remember... but I would like the contents to be in a variable rather than a file so that I won't have to go to the disk... but perhaps it will be a temporary solution. Have you heard anything negative

  1   2   >