RE: passing variables (was: Hiding Source Code)

2002-09-05 Thread A . Little
How about using form variables? (Doesn't hide the values from the end user though, if that's what you're trying to achieve) Alex > -Original Message- > From: Aunger, Mitch [mailto:[EMAIL PROTECTED]] > Sent: 05 September 2002 16:39 > To: CF-Talk > Subject: passing variables (was: Hiding S

RE: Verity: getting file size and date last modified from CFSEARC H

2002-07-16 Thread A . Little
I don;t think you can do it directly with cfsearch - I'm sure someone will correct me if I'm wrong :-) One way you might be able to achieve what you want is to make use of the custom1 and custom2 fields when indexing the collection. You may then have to add each file individually to the collectio

RE: Auto includes???

2002-07-11 Thread A . Little
onRequestEnd.cfm > -Original Message- > From: Kris Pilles [mailto:[EMAIL PROTECTED]] > Sent: 11 July 2002 13:50 > To: CF-Talk > Subject: Auto includes??? > > > Correct me if I am wrong But isn't there something similat to > application.cfm that functions as a automatic footer >

RE: filemaker

2002-07-10 Thread A . Little
I tried using the built in ODBC driver for FileMaker so CF could read the data, but the driver that comes with FM is really slow (this could also have been because of the design of this particular FileMaker db), the other odd thing that it took me a while to work out was that the FileMaker db need

RE: CFQUERY Question to populate a drop down for search

2002-05-29 Thread A . Little
You could use: SELECT DISTINCT city FROM profiles Alex > -Original Message- > From: Brian Simpson [mailto:[EMAIL PROTECTED]] > Sent: 29 May 2002 10:32 > To: CF-Talk > Subject: CFQUERY Question to populate a drop down for search > > > CFQUERY Question to populate a drop down for searc

RE: FileExists returns NO every time, even with absolute path

2002-04-05 Thread A . Little
Have you checked that the form tag where you select the file has the attribute: enctype="multipart/form-data" Alex -Original Message- From: Stocke Terri [mailto:[EMAIL PROTECTED]] Sent: 05 April 2002 15:36 To: CF-Talk Subject: RE: FileExists returns NO every time, even with absolute pa

RE: FileExists returns NO every time, even with absolute path

2002-04-05 Thread A . Little
doesn't fileExists look to find the file on the server, not the local machine. The form.description is the reference to the path & filename on the client PC. Alex -Original Message- From: Stocke Terri [mailto:[EMAIL PROTECTED]] Sent: 05 April 2002 15:24 To: CF-Talk Subject: FileExists re

Prevent mode=debug working

2002-03-15 Thread A . Little
Hi all, I'm being a little slow today how can I disable the mode=debug function when entered by users in the url to display the list of params at the end of the page? Alex __ Get Your Own Dedicated Windows 2000 S

RE: Uploading file directly into SQL database

2002-03-01 Thread A . Little
Yes, we want to be able to use the SQL server indexing. In the db I'm already storing a reference to the file, for when someone needs to download it. We're finding that Verity is way too slow when we have a mixture of several Verity database collections and a Verity file collection. When we outpu

Uploading file directly into SQL database

2002-03-01 Thread A . Little
Hi, I want to insert an uploaded file directly into a SQL database field. So after the user has uploaded the file to our CF server, at some point later (probably overnight), we can move this file to store it directly in the db. I have no idea how to make a start on this (the file's already uploa

RE:

2002-02-21 Thread A . Little
I think you could use then treat ReadMe as a comma separated list to loop through to generate the checkboxes Alex -Original Message- From: phumes1 [mailto:[EMAIL PROTECTED]] Sent: 21 February 2002 15:47 To: CF-Talk Subject: Re: ", "ALL")> #ReadMe# Outputs: file1 file2 file3 fi

Tool to convert files on server

2002-02-13 Thread A . Little
Hi all, We allow users to upload .doc and .pdf files to our webserver and would like to be able to automatically create a .txt or .rtf versions of these files, also to be saved on the webserver. Does anyone know of any tools/tags available allow us to do this? thanks, Alex

Running CF and iHTML on same server

2002-01-11 Thread A . Little
Hi all, We're planning to move some of our websites written in iHTML over to the same (W2K) server that we run our CF websites on. Has anyone out there had any experience in running iHTML and CF on the server - and if so, have there been any problems or anything else we need to be aware of, or l

RE: client vars

2001-12-14 Thread A . Little
No, I'm using IE 5.5. I have tested the site with ie6, and it was working fine. -Original Message- From: Mark Smyth [mailto:[EMAIL PROTECTED]] Sent: 14 December 2001 10:54 To: '[EMAIL PROTECTED]' Subject: client vars are you using ie6? Mark Smyth Internet Systems Developer SUeBS 00

Client variables driving me up the wall!

2001-12-14 Thread A . Little
Hi all, We're storing our client variables in a SQL 2k database and the application.cfm file checks that 'client.iamid' exists, if not, sends user to the login screen. This has all been working fine, until recently, now each request from the client machine creates a new record in the Cdata and cg

Using CFCONTENT with Office XP

2001-10-30 Thread A . Little
Hi All, Has anyone else come across the following problem... I'm using cfcontent to display a powerpoint presentation in the browser. This method has worked fine so far, but we recently tried it on a W2K machine with Office XP installed and instead of displaying the presentation, a presentation

Using CFHTTP

2001-08-20 Thread A . Little
Hi all, I'm trying to use the cfhttp tag to get a webpage in a directory on our server which is not open to the general public. I don't like the idea of having to hard code a username and password into the attributes of the cfhttp tag. Is there a way round this? I've tried to change the login a

RE: Access and CFGraph

2001-08-14 Thread A . Little
You could change your query to: SELECT state, COUNT (state) AS StateCount FROM Wobinfo GROUP BY state WHERE COUNT(State) > 1 ORDER BY COUNT(state) Alex > -Original Message- > From: Ann Harrell [SMTP:[EMAIL PROTECTED]] > Sent: 14 August 2001 16:31 >

RE: counting form fields

2001-08-09 Thread A . Little
Not sure about counting the number of fields returned by a form, but... you can use: MyQueryName.RecordCount to show the number of results returned by a CF query. Alex > -Original Message- > From: Michael Wolter [SMTP:[EMAIL PROTECTED]] > Sent: 09 August 2001 14:34 > To: CF-Talk >

RE: Verity problem

2001-08-03 Thread A . Little
I've found that verity doesn't seem to like criteria with leading or trailing spaces, so I trim the search criteria before passing it to the cfsearch tag. Anyone know why Verity doesn't like the spaces? Alex > -Original Message- > From: Christian L. Watt [SMTP:[EMAIL PROTECTED]] > Sent:

RE: Verity: Searching multiple collections

2001-08-03 Thread A . Little
You can put multiple collections in the cfsearch tag. This will combine the output and it will be ready formatted. I've had to do this for database and file collections. For the database collections I defined 'custom1' of the index to be the ID and for the file collections I have not defin

RE: Hooking to Lotus Notes.

2001-07-27 Thread A . Little
Yes you can use ODBC to link to a Notes db. I'm not so sure about linking to a remote Notes db though. I know for Notes 4.5 to get the ODBC working you needed to have a Notes client installed, so you may need to install a Notes client on your CF server. This may of course be different for Notes 5

RE:

2001-07-19 Thread A . Little
Try using '190' instead of "190" Alex Little IET Open University > -Original Message- > From: nyon [SMTP:[EMAIL PROTECTED]] > Sent: 19 July 2001 14:40 > To: CF-Talk > Subject: > > Hi, > > I get an error when using the following statement. > > "> > > Only when I remove th