RE: IP Address Locator

2002-02-25 Thread Darryl Lyons
Can you check their locale? -Original Message- From: Jeff Green [mailto:[EMAIL PROTECTED]] Sent: Monday, 25 February 2002 8:03 AM To: CF-Talk Subject: IP Address Locator Hi all, I have a client that would like to deny any order placed from Indonesia. Is there an easy way to do this?

RE: Divide record output cleanly when printing?

2002-02-21 Thread Darryl Lyons
Yeah, we've done a HTML-based reporting thing here that counted the number of lines in a report and inserted a footer then a new header each time the line limit was met. We used CSS to force page breaks and ensure line height consistency. There's also a table trick with two rows (bottom being the

RE: Any Javascript people out there? I need help with select bo xes...

2002-02-21 Thread Darryl Lyons
Refer to the msdn dhtml reference library.. There are a number of functions that enable you to add options to select boxes. For instance, this works in IE.. oElement = document.createElement(OPTION); document.all.selectboxname.children(0).insertAdjacentElement(BeforeBegi

RE: Foreign keys

2002-02-20 Thread Darryl Lyons
Remove the quotes around the date (preferably use VALUES (#CreateODBCDate(form.date)#,#techs.id#,etc...) Darryl -Original Message- From: Jake Munson [mailto:[EMAIL PROTECTED]] Sent: Thursday, 21 February 2002 8:53 AM To: CF-Talk Subject: RE: Foreign keys Thanks for the reply. I

RE: SQL indexing

2002-02-17 Thread Darryl Lyons
Indexing any field that is used to search with on a regular basis is always a good idea. For instance, I had a database full of users (about 27,000 of them) and the login process would take forever. Placing an index on the username and password fields increases the query execution speed by over

RE: executing a dts package

2002-02-14 Thread Darryl Lyons
You've set up an SQL Job for running the DTS package I am assuming? -Original Message- From: Steven Dworman [mailto:[EMAIL PROTECTED]] Sent: Friday, 15 February 2002 7:15 AM To: CF-Talk Subject: executing a dts package Here's the deal. We have a DTS package that needs to be executed

RE: Recursive help!!!!

2002-02-14 Thread Darryl Lyons
Try secretagents.com and look for the nested hierarchy tute for SQL. It's what I use and its incredibly powerful (e.g. one-query hierarcy display, tree walks, etc) Darryl -Original Message- From: Ray Bujarski [mailto:[EMAIL PROTECTED]] Sent: Friday, 15 February 2002 9:32 AM To: CF-Talk

RE: cold fusion reporting...

2002-01-14 Thread Darryl Lyons
SELECT YEAR(datefield) as year, MONTH(datefield) as month, DAY(datefield) as day, COUNT(anotherfield) as nr FROMtablename WHERE datefield BETWEEN @start AND @end GROUP BY YEAR(datefield), MONTH(datefield), DAY(datefield) ORDER BY year, month, day *should* work. The reason I split up the

RE: verity and html comments

2002-01-09 Thread Darryl Lyons
Yeah it does. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, 10 January 2002 7:56 AM To: CF-Talk Subject: verity and html comments Does anyone know if verity indexes text within html comments !-- does it index me? -- thanks, phillip

RE: Is Their a Standard Way of Preventing Users from Entering Dou ble Records by Refreshing Browser?

2002-01-08 Thread Darryl Lyons
cflocation to a success page (or any template other than the action template) Darryl -Original Message- From: PHP [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 9 January 2002 10:57 AM To: CF-Talk Subject: Is Their a Standard Way of Preventing Users from Entering Double Records by

RE: Creating ZIP archives

2002-01-07 Thread Darryl Lyons
There's number of CFX tags on http://devex.allaire.com/developer/gallery/ that will do this (one is even free I believe). -Original Message- From: Nick Texidor [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 8 January 2002 9:39 AM To: CF-Talk Subject: Creating ZIP archives Hi, I have a

RE: Formating to HTML output

2002-01-01 Thread Darryl Lyons
ParagraphFormat(variable) Darryl -Original Message- From: atlantis [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 1 January 2002 8:32 AM To: CF-Talk Subject: Formating to HTML output I have data in a memo field in my access database that has carriage returns in it to separate different

RE: Formating to HTML output

2002-01-01 Thread Darryl Lyons
Disregard my last post :) -Original Message- From: atlantis [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 1 January 2002 8:32 AM To: CF-Talk Subject: Formating to HTML output I have data in a memo field in my access database that has carriage returns in it to separate different

RE: Long Live Cold Fusion and...

2001-12-30 Thread Darryl Lyons
Thomas, I'd listen to Andrew as he is completely correct.. Are you saying that you'd like a multi-user license version of a product that is only meant to run on a localhost? Because realistically that's all they can really do to stop people from placing a full-featured application server on a

RE: SQL Security

2001-12-27 Thread Darryl Lyons
I agree.. Stored procedures already filter input based on the type of data it is, so you don't really have to worry about people adding ; DELETE FROM table to form fields or Url strings. You don't even have to give them EXECUTE rights over the Stored procedure if the database only has one user

RE: Does anyone see a problem with this query?

2001-12-11 Thread Darryl Lyons
Well for one, get rid of the WHERE clause as you're effectively cancelling out the INNER JOIN. It's probably the topc.topics, bit of the query, but I can't be sure. Darryl -Original Message- From: Mike Connolly [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 11 December 2001 8:12 PM To:

RE: CFMAIL Spooling

2001-12-03 Thread Darryl Lyons
We've written our own 'spooling system' using SQL Server and an event script to fire off Jmail every five minutes. We've found this works a lot better than CF for bulk mail as you can use Microsoft's SMTP server and the pickup directory. Darryl -Original Message- From: Jim McAtee

RE: Session and Client Variables

2001-11-14 Thread Darryl Lyons
The main obstacle w/ session variables in scalability is if you're going to cluster your servers. Because client vars are in the database (and they should be) are avaiable across all servers running the same app. -Original Message- From: Gyrus [mailto:[EMAIL PROTECTED]] Sent: Thursday,

RE: can CF do multiple DB connection?

2001-11-04 Thread Darryl Lyons
support cross-database joins? Will - Original Message - From: Darryl Lyons [EMAIL PROTECTED] Newsgroups: gradwell.lists.cftalk Sent: Sunday, November 04, 2001 8:23 PM Subject: RE: can CF do multiple DB connection? If your using db like SQL Server you can do cross database joins

RE: Strangest Problem in a long time

2001-10-03 Thread Darryl Lyons
If you use _date appended to your field names CF will try to validate the field. Therefore the form field is in fact called ticketXXdue rather than ticketXXdue_date. Just change the name of the field to not end with _date (_required or a few other reserved names). Darryl -Original

OT: Unicode

2001-09-30 Thread Darryl Lyons
? --- Regards, Darryl Lyons Senior Systems Developer Fuzion: http://www.fuzion.com.au Email : [EMAIL PROTECTED] Phone : (07) 3620 1000 Fax : (07) 3620 1001 Technical Support : 1300 888 480 'merging business + technology' ~~ Get

Best Bulk Emailers

2001-09-19 Thread Darryl Lyons
What are the best bulk email programs out there that integrate with CF? E.g. Dear functionality --- Regards, Darryl Lyons Senior Systems Developer Fuzion: http://www.fuzion.com.au Email : [EMAIL PROTECTED] Phone : (07) 3620 1000 Fax : (07) 3620 1001

JMAIL

2001-09-19 Thread Darryl Lyons
Any ideas how many emails JMAIL can handle? Ie. Could it send 80,000? If not, most likely worth looking into a complete listserv/mailing list system? --- Regards, Darryl Lyons Senior Systems Developer Fuzion: http://www.fuzion.com.au Email : [EMAIL PROTECTED

RE: cf 5 can't join fields

2001-09-17 Thread Darryl Lyons
Maybe a stupid question, but does TermID exist in either or both tables? Darryl -Original Message- From: Aimee Abbott [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 18, 2001 7:44 AM To: CF-Talk Subject: cf 5 can't join fields Hello all, I used cold fusion 5 and the Merant

RE: cf 5 can't join fields

2001-09-17 Thread Darryl Lyons
You don't need to SELECT something in order to use it in the WHERE clause. I'm guessing that TermID doesn't exist in one of the tables, although I could be wrong. -Original Message- From: Bill Davidson [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 18, 2001 7:44 AM To: CF-Talk

RE: cf 5 can't join fields

2001-09-17 Thread Darryl Lyons
terms isn't a reserved word? -Original Message- From: Aimee Abbott [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 18, 2001 8:11 AM To: CF-Talk Subject: RE: cf 5 can't join fields No, I don't think that is it. I have been playing with it some more over the past few minutes and am

Mailing List Server/Bulk Mailer

2001-09-12 Thread Darryl Lyons
/databases.. Jmail? --- Regards, Darryl Lyons Senior Systems Developer Fuzion: http://www.fuzion.com.au Email : [EMAIL PROTECTED] Phone : (07) 3620 1000 Fax : (07) 3620 1001 Technical Support : 1300 888 480 'merging business + technology

Username/password attribs on CFQUERY

2001-09-07 Thread Darryl Lyons
Has anyone got any thoughts on what the implications are for using username/password attribs in the CFQUERY tag. Obviously on a shared environment do not want to be placing a username/password on the actual datasource.. Any other ways of securing datasources?

RE: protect downloadble documents

2001-08-27 Thread Darryl Lyons
Is there anyway to change the filename? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Saturday, August 25, 2001 8:52 AM To: CF-Talk Subject: RE: protect downloadble documents Darn, forgot you can't get at it. I'll put it up on the web Monday if anyone

RE: protect downloadble documents

2001-08-27 Thread Darryl Lyons
PROTECTED]] Sent: Tuesday, August 28, 2001 10:24 AM To: CF-Talk Subject: RE: protect downloadble documents Which filename? JoAnn A. Schlosser Senior Consultant Association Management Software Grant Thornton LLP Washington, D. C. 703.837.4428 -Original Message- From: Darryl Lyons [mailto:[EMAIL

RE: Passing list to Stored Procedure..

2001-08-23 Thread Darryl Lyons
list to SQL Server stored procs. I just wrote a few simple udfs in sql server to parse the list when it gets it. - Original Message - From: Darryl Lyons [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, August 22, 2001 4:50 PM Subject: SOT: Passing list to Stored Procedure

SOT: Passing list to Stored Procedure..

2001-08-22 Thread Darryl Lyons
Does anyone know if you can pass a list of values to a stored procedure via CF? This is mainly needed because the list values would be drawn from an unspecified datasource (e.g. a list of user groups stored in a session var).. --- Regards, Darryl Lyons Senior

RE: Passing list to Stored Procedure..

2001-08-22 Thread Darryl Lyons
a comma delimited list to SQL Server stored procs. I just wrote a few simple udfs in sql server to parse the list when it gets it. - Original Message - From: Darryl Lyons [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, August 22, 2001 4:50 PM Subject: SOT: Passing list

RE: Stored Procedure Question

2001-08-21 Thread Darryl Lyons
CREATE PROCEDURE qGetStates @state_ID int AS SELECT First you should only one input parameter for state_ID, as I assume you are doing a select statement.. If you need the two values, than rename one of the parameters. Second, make sure you've actually set the stored procedure to expect

RE: disappearing queries

2001-08-19 Thread Darryl Lyons
then a SELECT in a proc/query, you won't get any results back. For stored procedures, you should be using CFSTOREDPROC/CFPROCPARAM/CFPROCRESULT instead. --- Billy Cravens HR Systems, EDS [EMAIL PROTECTED] -Original Message- From: Darryl Lyons [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 16

RE: disappearing queries

2001-08-19 Thread Darryl Lyons
In SQL 7.0 or ? -Original Message- From: Kwang Suh [mailto:[EMAIL PROTECTED]] Sent: Monday, August 20, 2001 1:43 PM To: CF-Talk Subject: RE: disappearing queries There is a way around this. Look up SET NOCOUNT -Original Message- From: Darryl Lyons [mailto:[EMAIL PROTECTED

RE: How can I merge the results of two queries. (tds)

2001-08-19 Thread Darryl Lyons
You can use the UNION operator to merge two queries together. --- Regards, Darryl Lyons Senior Systems Developer Fuzion: http://www.fuzion.com.au Email : [EMAIL PROTECTED] Phone : (07) 3620 1000 Fax : (07) 3620 1001 Technical Support : 1300 888

RE: How can I merge the results of two queries. (tds)

2001-08-19 Thread Darryl Lyons
Sorry, didn't read until the last sentance -- my solution was DB orientated.. -Original Message- From: Darryl Lyons [mailto:[EMAIL PROTECTED]] Sent: Monday, August 20, 2001 2:01 PM To: CF-Talk Subject: RE: How can I merge the results of two queries. (tds) You can use the UNION operator

RE: Query Caching..

2001-08-17 Thread Darryl Lyons
Ahh, so basically caching a query with the same name and application within an application that uses different templates (e.g. dsp_list.cfm and dsp_list2.cfm) but the same query is pointless? Darryl -Original Message- From: Daniel Larson [mailto:[EMAIL PROTECTED]] Sent: Friday, August

disappearing queries

2001-08-16 Thread Darryl Lyons
) Remote Address: 210.11.100.2 --- Regards, Darryl Lyons Senior Systems Developer Fuzion: http://www.fuzion.com.au Email : [EMAIL PROTECTED] Phone : (07) 3620 1000 Fax : (07) 3620 1001 Technical Support : (07) 3230 8811 'merging business

RE: got hack !! Hacked By Chinese!

2001-07-19 Thread Darryl Lyons
Refer to the messages in this list about IIS hacks and red worm.. Your problem is related to an index server security hole. You can get the patch from: http://www.microsoft.com/technet/treeview/default.asp?url=/technet/security/ bulletin/MS01-033.asp Darryl -Original Message- From:

RE: GROUP BY gives an error?

2001-07-10 Thread Darryl Lyons
Should have been: SELECT modelname, modeldescription, makename, year FROM MODELS WHERE rating = 'Very Compatible' GROUP BY makename, modeldescription, modelname, year -Original Message- From: Darryl Lyons [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 10, 2001 9:18 AM To: CF-Talk

RE: GROUP BY gives an error?

2001-07-09 Thread Darryl Lyons
you need to include all of the columns in the SELECT in the GROUP BY also. e.g. SELECT modelname, modeldescription, makename, year FROM MODELS WHERE rating = 'Very Compatible' GROUP BY makename, modeldescription, makename, year -Original Message- From: Jeff Fongemie [mailto:[EMAIL

RE: Session hijacking - help!

2001-06-27 Thread Darryl Lyons
cflock scope=session type=exclusive timeout=30 also does the same job, as this supersedes the old syntax. Darryl -Original Message- From: Chris Straight [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 28, 2001 7:04 AM To: CF-Talk Subject: RE: Session hijacking - help! just a thought

Dynamic content (pages) being served from SQL Server 2000

2001-06-04 Thread Darryl Lyons
question is which is quicker and more efficient over which is the easiest to search. --- Regards, Darryl Lyons Senior Systems Developer Fuzion: http://www.fuzion.com.au Email : [EMAIL PROTECTED] Phone : (07) 3620 1000 Fax : (07) 3620 1001 Technical Support

RE: Dynamic content (pages) being served from SQL Server 2000

2001-06-04 Thread Darryl Lyons
other points that could be made. Case 2, IMHO, is where CF and SQL really shine! HTH Dick At 5:30 PM +1000 6/4/01, Darryl Lyons wrote: What are people's opinions on serving a page (i.e. info from a text data type) from a database over serving it from a text file. For instance, we're

RE: Client variables

2001-03-12 Thread Darryl Lyons
If you store your vars in a database, then yes. -Original Message- From: Haryono ... [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 13, 2001 12:07 PM To: CF-Talk Subject: Client variables does it accessible or not when client variables from one site is going to accessed by the other

RE: CF Pro okay for shopping carts?

2001-03-07 Thread Darryl Lyons
Cold Fusion express can handle a small shopping cart app :) -Original Message- From: Bud [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 08, 2001 1:26 PM To: CF-Talk Subject: Re: CF Pro okay for shopping carts? On 3/7/01, Sean Faulkner penned: This may be today's dumbest question, but

RE: File upload vs. Virus protection

2001-02-28 Thread Darryl Lyons
Anyone gotten that going with NT? -Original Message- From: Peter Theobald [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 01, 2001 1:28 PM To: CF-Talk Subject: Re: File upload vs. Virus protection We installed McAfee VirusScan for Linux and call a script with CFEXECUTE that scans just

RE: sql query

2001-02-22 Thread Darryl Lyons
Why don't you make it a stored procedure? -Original Message- From: Jones, Becky [mailto:[EMAIL PROTECTED]] Sent: Friday, February 23, 2001 7:57 AM To: CF-Talk Subject: sql query can anyone help me translate this FROM in my SQL query so CF will like it? it works fine in SQL but bombs in

RE: Two functions with a single onClick?

2001-02-21 Thread Darryl Lyons
or you can just call both functions from the onClick event like so: onclick="doOne(); doTwo()" -Original Message- From: David Baskin [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 22, 2001 9:27 AM To: CF-Talk Subject: RE: Two functions with a single onClick? Les, here's some code

RE: SQL

2001-02-20 Thread Darryl Lyons
When you set up an SQL datasource (usually OLEDB in CFADMIN), you specify which server the database in on -- e.g. www.servername.com.. You reference the datasource the same way in the CFQUERY. However I do recommend not setting up the datasource with the username and password and instead

RE: Detect browser type

2001-02-18 Thread Darryl Lyons
Use CF_Browser -- it does all the work for you. You can get it from the allaire dev exchange. -Original Message- From: Karen [mailto:[EMAIL PROTECTED]] Sent: Monday, February 19, 2001 5:41 PM To: CF-Talk Subject: Detect browser type Good day ppl. I'm not sure if this is a

RE: CFHTTP Link Checker?

2001-02-09 Thread Darryl Lyons
You could use CFHTTP to do a GET on the URL. If it fails then it's not valid.. (I'd keep a running log of the number of times, then you can say after 4 times in a week, then the link must be down.) Darryl Lyons -Original Message- From: John B Venable Jr [mailto:[EMAIL PROTECTED]] Sent

RE: Killing Single Session Variable

2001-02-08 Thread Darryl Lyons
cfset StructDelete(Session, "varname") -Original Message- From: Phoeun Pha [mailto:[EMAIL PROTECTED]] Sent: Friday, February 09, 2001 3:16 AM To: CF-Talk Subject: Killing Single Session Variable how do u kill a single session variable? ~~

Login failed for user CFADMIN

2001-02-01 Thread Darryl Lyons
has anyone ever gotten this error - "Login failed for user CFADMIN"? --- Regards, Darryl Lyons Web Development Team LogicWorld Internet Email : [EMAIL PROTECTED] Web : www.logicworld.com.au Team Site : webdevelopment.logicworld.com.au Phone : (07)

RE: Login failed for user CFADMIN

2001-02-01 Thread Darryl Lyons
Hard to tell.. I'd say it would be for a query though.. -Original Message- From: S C [mailto:[EMAIL PROTECTED]] Sent: Friday, February 02, 2001 2:20 PM To: CF-Talk Subject: Re: Login failed for user CFADMIN When do you get this error? With a query? --- Darryl Lyons [EMAIL PROTECTED

RE: Web Chat using CF?

2001-01-29 Thread Darryl Lyons
http://www.cfchat.net/cfchat/ Very good one.. -Original Message- From: Phil Palmer [mailto:[EMAIL PROTECTED]] Sent: Monday, January 29, 2001 11:29 AM To: CF-Talk Subject: Web Chat using CF? This message is in MIME format. Since your mail reader does not understand this format, some

RE: stop reposting of form data

2001-01-28 Thread Darryl Lyons
Fusebox does do that... You simply make the form action piont to an action fuse, (act_xxx_post or something) and then cfinclude the action template and then cflocation to a success page or anywhere else.. -Original Message- From: Peter Theobald [mailto:[EMAIL PROTECTED]] Sent: Saturday,

Login Failed for User CFADMIN

2001-01-28 Thread Darryl Lyons
Has anyone periodically gotten the error "login failed for user CFADMIN" when trying to access templates? It only happens occasionly, but is still a pain. I assume it has something to do with the datasource? Login limits problem? --- Regards, Darryl

RE: Multi-language Content Management

2001-01-28 Thread Darryl Lyons
. -Original Message- From: Darryl Lyons [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 24, 2001 18:05 To: CF-Talk Subject: Multi-language Content Management Has anybody developed an architecture or worked out a multi-language content

Multi-language Content Management

2001-01-25 Thread Darryl Lyons
on the same page won't affect the display, but chinese and japanese on the same page looks to be pretty hard. (All of the data is kept in the database btw). Any ideas or suggestions? --- Regards, Darryl Lyons Web Development Team LogicWorld Internet Email : [EMAIL

RE: OT, but helpful maybe

2001-01-22 Thread Darryl Lyons
Any chance of getting the source code? I love the way it works, but I'd like to customise the form/query output.. -Original Message- From: Bud [mailto:[EMAIL PROTECTED]] Sent: Monday, January 22, 2001 3:48 PM To: CF-Talk Subject: OT, but helpful maybe Howdy all. I built myself a cool

RE: Slightly OT: Securing SQL 7.0 database

2001-01-21 Thread Darryl Lyons
I think the second option of specifying the username and password in the query tag would work best - as it really isn't a globally available file - especially in an ISP environment. -Original Message- From: Aidan Whitehall [mailto:[EMAIL PROTECTED]] Sent: Friday, January 19, 2001 9:22 PM

Multi-language CF sites

2001-01-21 Thread Darryl Lyons
Hi, Has anybody successfully built a multi-language dynamic website - where the page data, etc, is kept within the database? How did you display the languages on screen, in the database, etc.. --- Regards, Darryl Lyons Web Development Team LogicWorld Internet

Stopping people doing the 'I clicked submit twice' thing..

2001-01-21 Thread Darryl Lyons
Has anybody found a way around this? It seems that whenever someone clicks submit twice, data is inserted twice (updates are ok). --- Regards, Darryl Lyons Web Development Team LogicWorld Internet Email : [EMAIL PROTECTED] Web : www.logicworld.com.au Team Site

RE: Stopping people doing the 'I clicked submit twice' thing..

2001-01-21 Thread Darryl Lyons
Can you explain more about database flags and how they may come in handy? -Original Message- From: Kym Kovan [mailto:[EMAIL PROTECTED]] Sent: Monday, January 22, 2001 12:01 PM To: CF-Talk Subject: Re: Stopping people doing the 'I clicked submit twice' thing.. Hi Darryl, Has anybody

RE: Stopping people doing the 'I clicked submit twice' thing..

2001-01-21 Thread Darryl Lyons
t" value="Submit" onClick="if(this.value == 'Submit') this.form.submit(); this.value = 'Please Wait.';" Good luck, Tim Fields President RGB Studios, Inc. -Original Message- From: Darryl Lyons [mailto:[EMAIL PROTECTED]] Sent: Sunday, January 21, 2001 8:25 PM To: CF-

Slightly OT: Securing SQL 7.0 database

2001-01-19 Thread Darryl Lyons
, but that doesn't seem to work.. --- Regards, Darryl Lyons Web Development Team LogicWorld Internet Email : [EMAIL PROTECTED] Web : www.logicworld.com.au Team Site : webdevelopment.logicworld.com.au Phone : (07) 3230 8800 Fax : (07) 2320 8801 Technical Support : (07) 3230

RE: Allaire, Macromedia merger

2001-01-19 Thread Darryl Lyons
Could you do a searh and replace on the text looking for chr(10) and replace it with a br then apply paragraphformat() to it? -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 17, 2001 8:21 AM To: CF-Talk Subject: Allaire, Macromedia merger Allaire

RE: Recursive Tree Structure

2001-01-11 Thread Darryl Lyons
You could build a recursive template that simply displays data in a tree structure - although it wouldn't look like the CFTREE output. We use a multi-select box here to build parent-child relationships for certain data. With this method though you have to dynamically name the queries otherwise

Merging Verity and Table search results

2001-01-11 Thread Darryl Lyons
and everything else is in the database..?? --- Regards, Darryl Lyons Web Development Team LogicWorld Internet Email : [EMAIL PROTECTED] Web : www.logicworld.com.au Team Site : webdevelopment.logicworld.com.au Phone : (07) 3230 8800 Fax : (07) 2320 8801 Technical

RE: CAB extracting

2001-01-11 Thread Darryl Lyons
Java applets are used within CFFORM if your using a CFTREE or CFSLIDER control. -Original Message- From: Dian Oktosoma [mailto:[EMAIL PROTECTED]] Sent: Friday, January 12, 2001 1:38 PM To: CF-Talk Subject: RE: CAB extracting I c. Thanks How if I set parameter ENABLECAB="No". What

RE: request scope revisted

2001-01-10 Thread Darryl Lyons
I use request scopes for most of my page level data, ie. mapping names, paths, dsns, site name, contact emails, etc.. I also duplicate most of the session vars into a request structure and use them throughout the app to get around the infamous CFLOCK problems.. Darryl -Original Message-

RE: ORDER BY question

2001-01-10 Thread Darryl Lyons
Is it possible to create a paragraph number field? -Original Message- From: Erika Foster [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 10, 2001 11:48 PM To: CF-Talk Subject: ORDER BY question I have a table that has three fields: Paragraph, Title, Content. The Paragraph field is

RE: Newbie Question about Application.cfm

2001-01-09 Thread Darryl Lyons
Remove the HTML code from the application.cfm file. (And BTW it would have come up with a blank page the first time wouldn't it?) The application.cfm is really where you should be storing your variable declarations - your global variables. E.g. Your login management would be placed within this

RE: CF_Activedit alternatives??

2001-01-09 Thread Darryl Lyons
SiteObjects has just released a FREE WYSIWYG editor which is pretty much as good as Active Edit: http://www.siteobjects.com/index.cfm?fuseaction=showezedit Darryl -Original Message- From: Benjamin S. Rogers [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 10, 2001 6:04 AM To:

RE: LOCKING revisited...

2000-12-20 Thread Darryl Lyons
So something like cfset request.userinfo.member_id = StructCopy(session.member_id) should work fine? -Original Message- From: Ben Lowndes [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 21, 2000 3:54 AM To: CF-Talk Subject: RE: LOCKING revisited... Is the duplicate() function

RE: Is this even possible?

2000-12-14 Thread Darryl Lyons
Just have the image filename in the products table.. pretty simple if that's what you meant. -Original Message- From: t nelson [mailto:[EMAIL PROTECTED]] Sent: Friday, December 15, 2000 8:51 AM To: CF-Talk Subject: Is this even possible? Hi all, I am wondering if this will even be

RE: Help!!! Cooke Monster!!

2000-12-08 Thread Darryl Lyons
You'd have to set the cookie domain to .beachin.net, otherwise only test.beachin.net could read it (or subdomains of test). -Original Message- From: Jeffry Houser [mailto:[EMAIL PROTECTED]] Sent: Friday, December 08, 2000 9:58 AM To: CF-Talk Subject: Re: Help!!! Cooke Monster!! If

RE: session variables

2000-12-07 Thread Darryl Lyons
your session vars once.. Any comments or further explainations on this? Darryl Lyons -Original Message- From: Nick Betts [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 07, 2000 9:30 PM To: CF-Talk Subject: RE: session variables Ensure that wherever you reference or set session

RE: CFFILE and IE 5.0 on a Mac doesn't work

2000-12-07 Thread Darryl Lyons
CFTRY and CATCH the error? I only had this problem when the file field was optional... -Original Message- From: Craig A. Zingerline [mailto:[EMAIL PROTECTED]] Sent: Friday, December 08, 2000 6:06 AM To: CF-Talk Subject: CFFILE and IE 5.0 on a Mac doesn't work Hello, I'm wondering if

RE: Single Thread

2000-12-06 Thread Darryl Lyons
The other thing to note though is that if you're an ISP and people are not locking their variables properly then the alternative is probably going to be worse (i.e. possible server crashes). I've set our server to Single Threads mainly becuase we've got a lot of cold fusion sites hosted and you

RE: Application.cfm

2000-12-05 Thread Darryl Lyons
Do you use the fusebox methodology? -Original Message- From: Benjamin Fitts [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 05, 2000 10:01 AM To: CF-Talk Subject: RE: Application.cfm Regarding Application variables. When my code wasn't properly written I thought custom tags

RE: Display execution time

2000-12-05 Thread Darryl Lyons
Query time is easy = simply add debug="yes" to the cfquery tag -Original Message- From: Andrew Peterson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 06, 2000 6:58 AM To: CF-Talk Subject: Display execution time Forgive my ignorance, but is there a way to display page and/or

RE: cfstored procedure problem

2000-12-05 Thread Darryl Lyons
I'm pretty sure you don't need the quotes in your SQL statement -Original Message- From: S R [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 06, 2000 7:46 AM To: CF-Talk Subject: cfstored procedure problem Hi everyone, I can't figure this one out. I'm using SQL Server 7.0 and CF