RE: Spell Checking??

2001-05-04 Thread Kola Oyedeji
2 Questions 1. How do you know if a cfx tag is thread safe 2. Do you need to lock cfx tags? Cheers KOla -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: 04 May 2001 14:06 To: CF-Talk Subject: RE: Spell Checking?? I have a customer who is insisting

using WDDX for next 'n' style browsing

2001-05-08 Thread Kola Oyedeji
I am passing a query object which consists of 1000 records in a hidden form field between pages as a WDDX packet, are there any reasons why this is a bad idea, such as limits to the amount of data which can be held in a form field or passed in a form? The reason for this is to save a trip to

RE: using WDDX for next 'n' style browsing

2001-05-08 Thread Kola Oyedeji
the database server. You're still making a trip to the *web* server for every page - and sending a lot of data. Without knowing exactly what you're trying to achieve, I'd guess cacheing the query would be better, yes. Nick -Original Message- From: Kola Oyedeji [mailto:[EMAIL PROTECTED]] Sent

RE: using WDDX for next 'n' style browsing

2001-05-08 Thread Kola Oyedeji
Thanks i'll give it a try KOla -Original Message- From: Michael Lugassy [mailto:[EMAIL PROTECTED]] Sent: 08 May 2001 13:36 To: CF-Talk Subject: Re: using WDDX for next 'n' style browsing I do search diffrently, I first get ALL the results (as COUNT(*)) into a variable, which I

RE: using WDDX for next 'n' style browsing

2001-05-08 Thread Kola Oyedeji
AM Kola Oyedeji wrote: I am passing a query object which consists of 1000 records in a hidden form field between pages as a WDDX packet, are there any reasons why this is a bad idea, such as limits to the amount of data which can be held in a form field or passed in a form? I did a similar

RE: using WDDX for next 'n' style browsing

2001-05-08 Thread Kola Oyedeji
Someone on another list proposed creating a unique id for each search query executed and then using this as a file name and writing the query as a WDDX packet to this file. Then on every page this id can be used to retreive the correct query object - and display it. Any one see any problemes

RE: using WDDX for next 'n' style browsing

2001-05-08 Thread Kola Oyedeji
- From: Kola Oyedeji [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 08, 2001 5:53 AM To: CF-Talk Subject: using WDDX for next 'n' style browsing I am passing a query object which consists of 1000 records in a hidden form field between pages as a WDDX packet, are there any reasons why

cfloop vs cfoutput

2001-05-09 Thread Kola Oyedeji
Sorry for the crosspost (had conflicting answers from other lists) but is there a consensus on which method of looping over a query is fastest? cfloop or cfoutput.. Cheers KOLa ~~ Structure your ColdFusion code with Fusebox. Get the official

RE: cfloop vs cfoutput

2001-05-09 Thread Kola Oyedeji
wouldn't be possible, you'd have to use CFLOOP Gregory Harris Web Developer The Stirling Bridge Group, LLC *We Engineer Internet Business Solutions* TEL: (949) 707-1534 FAX: (949) 707-1535 - Original Message - From: Kola Oyedeji [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED

RE: cfloop vs cfoutput - THE WINNER IS...

2001-05-10 Thread Kola Oyedeji
Seems to me no-ones 100% sure.           I've found cfloop to execute better overall in most situations when I am working with very large amounts of data, Chris. I don't generally see much difference in execution time between the two, in any other situation (and cfoutput

RE: cfloop vs cfoutput

2001-05-10 Thread Kola Oyedeji
Thanks for clearing that up for me KOla -Original Message- From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]] Sent: 10 May 2001 12:03 To: CF-Talk Subject: RE: cfloop vs cfoutput Sorry for the crosspost (had conflicting answers from other lists) but is there a consensus on which

RE: using WDDX for next 'n' style browsing

2001-05-11 Thread Kola Oyedeji
after a short while thus freeing memory that way. -Original Message- From: Kola Oyedeji [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 08, 2001 11:44 AM To: CF-Talk Subject: RE: using WDDX for next 'n' style browsing But wont that mean each query would be held in the server RAM? KOla

RE: Session Variables - I don't get it

2001-05-11 Thread Kola Oyedeji
Have you got cookies switched on? incidentaly you dont need ## signs inside cfset. KOla -Original Message- From: Kronenberger, Douglas [mailto:[EMAIL PROTECTED]] Sent: 11 May 2001 14:50 To: CF-Talk Subject: Session Variables - I don't get it Greetings, I'm not getting how to

CF stuy guide (was:New Cold Fusion book, O'riely Press)

2001-05-14 Thread Kola Oyedeji
Am i right in saying that the certification study guide only covers 4.5? When does coldfusion 5 certification come into effect? Thanks KOla -Original Message- From: Ben Forta [mailto:[EMAIL PROTECTED]] Sent: 11 May 2001 18:27 To: CF-Talk Subject: RE: New Cold Fusion book, O'riely

RE: Session/Application Locking

2001-05-14 Thread Kola Oyedeji
Would be grateful... Thanks KOla -Original Message- From: Mike Brunt [mailto:[EMAIL PROTECTED]] Sent: 13 May 2001 16:55 To: CF-Talk Subject: RE: Session/Application Locking Thank you and my apologies to all on the list, the attachment is only 21kb, if anyone wants it, please let me

Does application tag need to be executed every time?

2001-05-14 Thread Kola Oyedeji
I have this code in my application tag: cfif NOT isDefined(application.name) cfapplication name=myapp sessionmanagement=Yes sessiontimeout=#CreateTimeSpan(0,4,0,0)# cfset

RE: using WDDX for next 'n' style browsing

2001-05-15 Thread Kola Oyedeji
document) I think you will experience an overall performance improvement and better use of the server, internet connection, and the client... . kind of an *environmentally-friendly* program design! And, the user experience will be much improved too. Dick At 11:52 AM +0100 5/8/01, Kola

RE: Does application tag need to be executed every time?

2001-05-15 Thread Kola Oyedeji
- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 15 May 2001 11:08 To: CF-Talk Subject: RE: Does application tag need to be executed every time? It's only going to execute if application.name is not defined. -Original Message- From: Kola Oyedeji [mailto:[EMAIL PROTECTED]] Sent

OT: @@identidy in sql server 7

2001-05-15 Thread Kola Oyedeji
Can anyone please remind me how i get the value of a record which was just inserted into a sql database. I know its called @@identidy. I had a snippet but i cant find it,Thanks KOla ~~ Structure your ColdFusion code with Fusebox. Get the

RE: @@identidy in sql server 7

2001-05-15 Thread Kola Oyedeji
* Diana Nichols Webmistress http://www.lavenderthreads.com 770.434.7374 One man's magic is another man's engineering. ---Lazarus Long -Original Message- From: Kola Oyedeji [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 15, 2001 11:42 AM To: CF-Talk Subject: OT: @@identidy in sql server 7

RE: CF and Flash classes?

2001-05-18 Thread Kola Oyedeji
is it possible to use flash to update the client's display with data bieng pulled by cf from a database if so how is this done? Thanks KOla -Original Message- From: Paul Mone [mailto:[EMAIL PROTECTED]] Sent: 18 May 2001 00:28 To: CF-Talk Subject: RE: CF and Flash classes? I've done

RE: the big export...ColdFusion.NET?

2001-05-21 Thread Kola Oyedeji
A bit OT but while we're on the subject does c# have anything to offer that existing languages do not have? Thanks KOla -Original Message- From: Stephen Galligan [mailto:[EMAIL PROTECTED]] Sent: 21 May 2001 10:35 To: CF-Talk Subject: RE: the big export...ColdFusion.NET? C# is

RE: Writing Custom Functions

2001-05-25 Thread Kola Oyedeji
I havent used CF5 yet but is it true that you are limited to the same tags available for use in cfscript tags? Doesn't this mean no database related functions are not possible? What exactly can you do inside UDFs? Thanks KOla -Original Message- From: Steve Reich [mailto:[EMAIL

Maintain Database connection?

2001-05-30 Thread Kola Oyedeji
Hi Just a quick questions regarding the Maintain Database Connections in Access, should this be checked or unchecked and if it is unchecked what are the performance implications? Thanks KOla ~~ Structure your ColdFusion code with Fusebox. Get

RE: CFSET

2001-06-01 Thread Kola Oyedeji
Does the first query return any results? i noticed that you dont have a =, IN, !=, OR having before the subquery in getWaitingStudent, im no sql expert but does this still work like this? KOla -Original Message- From: David Clay [mailto:[EMAIL PROTECTED]] Sent: 01 June 2001 14:58 To:

SQl:how to NOT get a cross join

2001-06-01 Thread Kola Oyedeji
hi hope someone here can give me a hand with this:(sorry for the cross post) I have a table called categories, the key bieng an int, with a field for the category name. Another table called adverts, an advert has a category feild which is a foreign key which links to the category table. I

Stopping malicious file uploads

2001-06-01 Thread Kola Oyedeji
Hi I have an app which lets users upload a file, is there anyway to stop a malicious user uploading say a 2gig file before it gets to my server? Also if i wanted the upload to have a maximum time out how would i do it? Would I need to use cflock? Thanks in advance Kola

RE: Alternative to CFSchedule?

2001-06-04 Thread Kola Oyedeji
I would like to hear an alternative as well as i have been told by many that the scheduler is unreliable! Kola -Original Message- From: PEREZ, RICHARD D (SBCSI) [mailto:[EMAIL PROTECTED]] Sent: 04 June 2001 09:23 To: CF-Talk Subject: RE: Alternative to CFSchedule? I think your best

RE: Your site's easy to navigate? You Think so?

2001-06-04 Thread Kola Oyedeji
Is there an industry standard tool used by people with disablities to browse web sites, i've just brought this issue to the attention of my boss, and we may want to purchase such a package to test our sites. Thanks Kola -Original Message- From: Michael Kear [mailto:[EMAIL PROTECTED]]

RE: cfhttp/cffile locking?

2001-06-04 Thread Kola Oyedeji
slight;y related... what about file uploads? If i want an upload operation to time out to stop users uploading huge files can i use cflock? Kola -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: 04 June 2001 13:15 To: CF-Talk Subject: RE: cfhttp/cffile locking?

RE: Your site's easy to navigate? You Think so?

2001-06-04 Thread Kola Oyedeji
://www.usdoj.gov/crt/508/web.htm Brian - Original Message - From: Kola Oyedeji [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, June 04, 2001 5:02 AM Subject: RE: Your site's easy to navigate? You Think so? Is there an industry standard tool used by people with disablities

RE: Use interactive CF debugger!!! : was VeRy tricky evaluate()

2001-06-04 Thread Kola Oyedeji
After many many attempts i still have not got it working this may be due to the fact that i'm not sure exactly how it is supposed to work. Do you have an tips/pointers? Thanks Kola -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 04 June 2001 14:24 To:

RE: cfhttp/cffile locking?

2001-06-04 Thread Kola Oyedeji
Massimo , how would i use this cgi variable to check for the length of a file bieng uploaded? Thanks Kola -Original Message- From: Massimo Foti [mailto:[EMAIL PROTECTED]] Sent: 04 June 2001 14:34 To: CF-Talk Subject: Re: cfhttp/cffile locking? Kola Oyedeji [EMAIL PROTECTED] wrote

RE: cfhttp/cffile locking?

2001-06-04 Thread Kola Oyedeji
Massimo thanks a lot, i'll check out you're site for the javascript ... KOla -Original Message- From: Massimo Foti [mailto:[EMAIL PROTECTED]] Sent: 04 June 2001 16:35 To: CF-Talk Subject: Re: cfhttp/cffile locking? Kola Oyedeji [EMAIL PROTECTED] wrote in message Massimo , how would i

OT:weird behaviour using yes/no field in Access

2001-09-04 Thread Kola Oyedeji
. Thanks in advance Kola Oyedeji Web developer Macromedia Certified Advanced ColdFusion 5 Developer http://www.Alexandermark.com (+44)020-8429-7300 ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http

RE: weird behaviour using yes/no field in Access

2001-09-04 Thread Kola Oyedeji
Not sure, i didnt do the installation. Stranegly it now works again? Bit of a mystery. Kola Oyedeji Web developer Macromedia Certified Advanced ColdFusion 5 Developer http://www.Alexandermark.com (+44)020-8429-7300 -Original Message- From: Carlisle, Eric [mailto:[EMAIL PROTECTED

RE: CF Certification

2001-09-07 Thread Kola Oyedeji
I used cf_buster from centrasoft - really helped me, managed 87%: http://www.centrasoft.com/default.cfm HTH Kola Oyedeji Web developer Macromedia Certified Advanced ColdFusion 5 Developer http://www.Alexandermark.com (+44)020-8429-7300 -Original Message- From: Jerry Staple [mailto

RE: OT - Software allocation of RAM

2001-09-13 Thread Kola Oyedeji
This may shed a bit more light http://www.allaire.com/Handlers/index.cfm?ID=21011Method=Full Kola Oyedeji Web developer Macromedia Certified Advanced ColdFusion 5 Developer http://www.Alexandermark.com (+44)020-8429-7300 -Original Message- From: Carol Bluestein [mailto:[EMAIL

RE: Duplicate and StructCopy

2001-09-14 Thread Kola Oyedeji
Ray, Out of curiosity what is it about this code in particular that makes it throw an error if you have strict attribute validation turned on? Is that on CF4.x or CF5 Thanks Kola Oyedeji Web developer Macromedia Certified Advanced ColdFusion 5 Developer http://www.Alexandermark.com (+44)020

RE: Duplicate and StructCopy

2001-09-14 Thread Kola Oyedeji
Cheers Kola Oyedeji Web developer Macromedia Certified Advanced ColdFusion 5 Developer http://www.Alexandermark.com (+44)020-8429-7300 -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: 14 September 2001 13:12 To: CF-Talk Subject: RE: Duplicate and StructCopy

RE: CFIF Issue

2001-09-14 Thread Kola Oyedeji
first thing i would do is check for whitespace, some databases pad out certain type of fields,trim the value retreived from the db and see if it makes a difference. Kola Oyedeji Web developer Macromedia Certified Advanced ColdFusion 5 Developer http://www.Alexandermark.com (+44)020-8429-7300

RE: CFOUTPUT Challenge

2001-09-14 Thread Kola Oyedeji
To test the solution I only added one other query (so there's four more to go) and it slowed the process down considerably Do you see any way around this? using stored procedures should improve the performance. Not sure if you can nest stored procedure calls, just a thought. Kola

Best way to compare dates in the database?

2001-09-18 Thread Kola Oyedeji
be easily matched to other dates using a query not a coldfusion function? Thanks in advance KOla Kola Oyedeji Web developer Macromedia Certified Advanced ColdFusion 5 Developer http://www.Alexandermark.com (+44)020-8429-7300 -Original Message- From: Dennis Powers [mailto:[EMAIL PROTECTED

RE: Code Red backdoor triggered?

2001-09-18 Thread Kola Oyedeji
This may or may not be relevant but i've just deleted an email from someone i dont know which I'm sure had a virus attached. It has a exe. file attached called readme.exe. I recieved a virus warning and jsut deleted it! Kola Oyedeji Web developer Macromedia Certified Advanced ColdFusion 5

RE: Moving from Access to SQL server

2001-09-19 Thread Kola Oyedeji
Hi I have a site which I would like to move from Access to SQl server are there any things I need to be aware of code wise things like dates perhaps? Kola Oyedeji Web developer Macromedia Certified Advanced ColdFusion 5 Developer http://www.Alexandermark.com (+44)020-8429-7300

problem using file upload, cffile and cflocation

2001-09-20 Thread Kola Oyedeji
I have come across some wierd behaviour and wondered if anyone else had run into this. I have a from with a file field which allows a user to upload an image. On the action page I use the cffile tag to upload an image which is saved to a directory and then i cflocate to confirmation page. Now

RE: Code Red backdoor triggered?

2001-09-21 Thread Kola Oyedeji
Out of curiosity what elements do your applications require of IIS that O'Reilly may or may not have? It just that I'm looking at O'Reilly as an alternative. Cheers Kola Oyedeji Web developer Macromedia Certified Advanced ColdFusion 5 Developer http://www.Alexandermark.com (+44)020-8429-7300

RE: Why can't application.cfm...

2001-09-26 Thread Kola Oyedeji
Probably because images dont end with .cfm therefore they're not passed to the cf engine. Kola Oyedeji Web developer Macromedia Certified Advanced ColdFusion 5 Developer http://www.Alexandermark.com (+44)020-8429-7300 -Original Message- From: Tony Hicks [mailto:[EMAIL PROTECTED

RE: How to find out the page to send 'em back to

2001-10-05 Thread Kola Oyedeji
I would love to have a look at that as well. Cheers Kola -Original Message- From: Mike Kear [mailto:[EMAIL PROTECTED]] Sent: Friday, October 05, 2001 4:11 PM To: CF-Talk Subject: RE: How to find out the page to send 'em back to Yes please! This seems such a simple answer. I had

RE: Access Question

2001-10-24 Thread Kola Oyedeji
Greg Try the following - should work. SELECT* FROM messages WHERE message_date = #CreateODBCDate(attributes.datebox)# one word of warning this may or may not take the time into consideration, if you test this and it still does not work correctly you'll actually have to use the

RE: Subdomain of a domain

2001-10-30 Thread Kola Oyedeji
I'm kinda interested in this as well anyone have any resources where I can read up on this? Kola Oyedeji Web developer Macromedia Certified Advanced ColdFusion 5 Developer http://www.Alexandermark.com (+44)020-8429-7300 -Original Message- From: Lee Fuller [mailto:[EMAIL PROTECTED

RE: Subdomain of a domain

2001-10-30 Thread Kola Oyedeji
Joseph please. My boss explained it to me and showed it to me recently but it all didnt click with me. Thanks Kola Oyedeji Web developer Macromedia Certified Advanced ColdFusion 5 Developer http://www.Alexandermark.com (+44)020-8429-7300 -Original Message- From: Joseph DeVore

RE: archiving cftalk mails

2001-10-31 Thread Kola Oyedeji
You can also export to an access database then you could write a utility to enable you to search them. Kola Oyedeji Web developer Macromedia Certified Advanced ColdFusion 5 Developer http://www.Alexandermark.com (+44)020-8429-7300 -Original Message- From: Paul Mone [mailto:[EMAIL

RE: Please Wait... ' or 'Loading...' message

2001-11-11 Thread Kola Oyedeji
If you do move to cf5 there is an article by Ray Camden on how to do something along thses lines: http://www.coldfusion.com/handlers/index.cfm?id=21216method=full HTH Kola -Original Message- From: Stuart Duncan [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 11, 2001 6:39 AM To:

Are forms really structures?

2001-11-13 Thread Kola Oyedeji
displayed. So the question is, is this a feature or a bug? Thanks Kola Kola Oyedeji Web developer Macromedia Certified Advanced ColdFusion 5 Developer http://www.Alexandermark.com (+44)020-8429-7300 ~~ Get the mailserver that powers this list at http

RE: Are forms really structures?

2001-11-13 Thread Kola Oyedeji
That is one of the most useful sites i've been to . Why is this site not publicised?? I have loads of additional notes and tips scrawled on pages of my paper documentation which I would love to inform allaire of. cheers Kola Oyedeji Web developer Macromedia Certified Advanced ColdFusion 5

RE: CFX API with C++

2001-11-16 Thread Kola Oyedeji
The green Forta book (advanced coldfusion application development) has some good info on this. Not sure if theres a more recent version of the book than the one that covers CF 4.0 HTH Kola Oyedeji Web developer Macromedia Certified Advanced ColdFusion 5 Developer http://www.Alexandermark.com

RE: Neo/CF6 and Fusebox (was: Fusebox - opinions?)

2001-11-18 Thread Kola Oyedeji
The houseoffusion mailing group is no longer the active mailing list - join [EMAIL PROTECTED] I think you'll find this mailing list far from dormant. HTH KOla Oyedeji web developer http://www.alexandermark.com -Original Message- From: Gyrus [mailto:[EMAIL PROTECTED]] Sent: Sunday

RE: Netscape Object Moved problem

2001-11-21 Thread Kola Oyedeji
Because of this problem and the fact that you cant set cookies with cflocation there are a numbser of replacements available in the tag gallery: http://devex.allaire.com/developer/gallery/SearchResults.cfm?keywords=cf_loc ation HTH Kola Oyedeji |Web Developer |ekeda elthorne gate |64 high

problem inserting encrypted wddx packet into database

2001-11-26 Thread Kola Oyedeji
Hi - sorry for the cross post I hope someone can shed some light on the best way to do this. I have a structure which is turned into a wddx packet and then encrypted. However when I try save it to the database I get an error: SQL = UPDATE sales SET serializedStruct = 'ML0?@(.FF/?2CD718NI3'.

maxrows question

2001-11-29 Thread Kola Oyedeji
Does anyone know if i set a maxrow value of 1 in a select query, if just one record is passed to coldfusion by the database or all matching results are returned by the database but only one is made available? Kola Oyedeji |Web Developer |ekeda elthorne gate |64 high street |pinner |middx

RE: maxrows question

2001-11-29 Thread Kola Oyedeji
Thanks guys I was actuall trying to work out the most efficient way to determine if a key exists in the db and then do some processing if it does, without searhing the rest of the records. I'm thinking that using Exists would be more efficient. Kola Oyedeji |Web Developer |ekeda elthorne gate

RE: asp vs. cf

2001-11-30 Thread Kola Oyedeji
Michael Is that chart upto date? Does it compare cf5 with the latest version of asp? Kola Oyedeji |Web Developer |ekeda elthorne gate |64 high street |pinner |middx |ha55qa t +44(208)429 7333 f +44(208)429 7339 |www.ekeda.co.uk -Original Message- From: Michael Dinowitz [mailto

Query of query question

2001-11-30 Thread Kola Oyedeji
session.basket WHERE session.basket.ProductID = #URL.productID# /cfquery unknown exception condition PCodeRuntimeContextImp::executeSQLTagCFQuery::endTag is this the way Qs of Qs are supposed to work? Thanks Kola Oyedeji |Web Developer |ekeda elthorne gate |64 high street |pinner |middx |ha55qa t

RE: Query of query question

2001-11-30 Thread Kola Oyedeji
PCodeRuntimeContextImp::executeSQLTagCFQuery::endTag is this the way Qs of Qs are supposed to work? Thanks Kola Oyedeji |Web Developer |ekeda elthorne gate |64 high street |pinner |middx |ha55qa t +44(208)429 7333 f +44(208)429 7339 |www.ekeda.co.uk

RE: Restricting execution of CF tag

2001-11-30 Thread Kola Oyedeji
Use isDefined(thistag.executionmode) I believe this variable only exists if the template is bieng run as a custom tag. Also cgi.script_name give you the name of the template a page is included in. if it is different to the name of the included file (check from within) then it must be an include.

cftransaction isolaton level question

2001-06-15 Thread Kola Oyedeji
Hi Does anyone actually use the isolation level Serializable with cftransaction? I understand that using it can impede performance, is the trade of worth it to ensure no dirty reads, nonrepeatable reads and phantom reads? What are the chances of these data consistency problems occuring with say

RE: Questions to ask for CF developer

2001-07-19 Thread Kola Oyedeji
ah, but what if they're allaire certified, brainbench certified and already own the Forta study guide? ;-) KOla -Original Message- From: Andy Ewings [mailto:[EMAIL PROTECTED]] Sent: 19 July 2001 13:58 To: CF-Talk Subject: RE: Questions to ask for CF developer By an anual

cf administrator settings

2001-07-19 Thread Kola Oyedeji
Hi does anyone have a list of recommended settings in the coldfusion administrator for production or live servers?I also have some additional questions: How large should the template cache be? Also if i enable trusted cache and i want to update some pages, inorder for the changes to reflect

RE: cf administrator settings

2001-07-20 Thread Kola Oyedeji
Chris, thanks KOla -Original Message- From: Chris Norloff [mailto:[EMAIL PROTECTED]] Sent: 19 July 2001 16:28 To: CF-Talk Subject: Re: cf administrator settings -- Original Message -- from: Kola Oyedeji [EMAIL PROTECTED] Hi does anyone have

RE: cf administrator settings

2001-07-20 Thread Kola Oyedeji
Philip Any particular reason why the template cache should be 4 times the total size of all your templates? ps. you seem to always win something at all the meetings! ;-) KOla -Original Message- From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]] Sent: 19 July 2001 17:28 To: CF-Talk

RE: CF Studio debugger tutorials?

2001-07-20 Thread Kola Oyedeji
There is a presentation on the figleaf site: http://www.figleaf.com/figleafhome/cfug/figpubs.htm I still havent sussed it out though! HTH KOla -Original Message- From: Kay Smoljak [mailto:[EMAIL PROTECTED]] Sent: 20 July 2001 04:57 To: CF-Talk Subject: CF Studio debugger tutorials?

OT: backup strategies

2001-07-20 Thread Kola Oyedeji
administrator settings, I realise this is a potentially broad topic but any pointers, tips etc would be greatly appreciated - thanks. (sorry about the cross post) Kola Oyedeji ~~ Structure your ColdFusion code with Fusebox. Get the official book at http

RE: Fusebox and cfswitch

2001-07-20 Thread Kola Oyedeji
It is funny this came up as i posted a question today to the fusebox list regarding the performance of fusebox here are 2 responses:(hopefully they dont mind me reposting them here) --- This is a very grey area, where I think you'll find Fusebox wins

Backing up coldfusion administrator

2001-07-23 Thread Kola Oyedeji
Hi Is there anyway to backup the settings in the coldfusion administrator? Thanks in advance Kola Oyedeji Web Developer www.ekeda.com ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com

RE: Backing up coldfusion administrator

2001-07-23 Thread Kola Oyedeji
Thanks guys.. KOla Kola Oyedeji Web developer Allaire Certified ColdFusion Developer http://www.ekeda.com -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED]] Sent: 23 July 2001 13:18 To: CF-Talk Subject: Re: Backing up coldfusion administrator Kola

RE: Backing up coldfusion administrator

2001-07-23 Thread Kola Oyedeji
Hi I couldnt find anything in the KB regarding backing up the administrator for CF4.5. To do this manually do i need to back up the registery key? Thanks Kola Oyedeji Web developer Allaire Certified ColdFusion Developer http://www.ekeda.com -Original Message- From: Thomas Chiverton

RE: Backing up coldfusion administrator

2001-07-23 Thread Kola Oyedeji
Thomas Thanks again, incidentally how did you find that article? I find the allaire web site to be a bit of a mess. I searched under support/knowledgebase/search but no joy! Kola Oyedeji Web developer Allaire Certified ColdFusion Developer http://www.ekeda.com -Original Message

RE: Blatant advertising (you have been warned)

2001-07-26 Thread Kola Oyedeji
;-) Kola Oyedeji Web developer Allaire Certified ColdFusion Developer http://www.ekeda.com 0208-429-7323 -Original Message- From: Ben Forta [mailto:[EMAIL PROTECTED]] Sent: 26 July 2001 14:07 To: CF-Talk Subject: RE: Blatant advertising (you have been warned) That is being debated, I'll

RE: Battle of the Gurus (Re: Blatant advertising (you have been warned))

2001-07-26 Thread Kola Oyedeji
I think this one beats them all hands down, the only cf book youll ever need: http://www.amazon.com/exec/obidos/ASIN/9056621750/ref=pd_sbs_b_3/102-421497 7-0920132 Kola Oyedeji Web developer Allaire Certified ColdFusion Developer http://www.ekeda.com 0208-429-7323 -Original Message

RE: TagFusion/$ervlet?

2001-08-28 Thread Kola Oyedeji
I think only yhe developers version is free. HTH http://www.tagservlet.com/download/download.cfm Kola Oyedeji Web developer Macromedia Certified Advanced ColdFusion 5 Developer http://www.Alexandermark.com (+44)020-8429-7300 -Original Message- From: Billy Cravens [mailto:[EMAIL

RE: Encrypt and Decrypt function

2001-08-29 Thread Kola Oyedeji
about, which i believe do not suffer from the same problem are actually undocumented and unofficial functions. Bear this in mind when you use them as they are NOT guaranteed to be supported in future versions/releases/service packs etc. HTH Kola Oyedeji Web developer Macromedia Certified Advanced

RE: Macromedia strong arms developers into 5.0 upgrade

2001-08-29 Thread Kola Oyedeji
Interestingly, I thought it was just me who stopped using the official forums since they changed the format! Kola Oyedeji Web developer Macromedia Certified Advanced ColdFusion 5 Developer http://www.Alexandermark.com (+44)020-8429-7300 -Original Message- From: Will Swain [mailto

RE:(OT) Activeedit 2.5 - Subthread Ektron

2001-08-30 Thread Kola Oyedeji
Oh it should also be noted that while the product only works on IE, it only works on intel/MS installations of IE. This should be obvious as it utilizes activeX, but not everyone seems to get that. slightly off topic but are you saying active x only works on Intel chips? Kola Oyedeji

RE: (OT) Activeedit 2.5 - Subthread Ektron

2001-08-30 Thread Kola Oyedeji
Thanks.. Kola Oyedeji Web developer Macromedia Certified Advanced ColdFusion 5 Developer http://www.Alexandermark.com (+44)020-8429-7300 -Original Message- From: Duane Boudreau [mailto:[EMAIL PROTECTED]] Sent: 30 August 2001 15:59 To: CF-Talk Subject: RE: (OT) Activeedit 2.5

RE: Passing a constant to a COM object method from Cold Fusion

2002-02-27 Thread Kola Oyedeji
Hi The short answer is, you can't The longer (and more useful) answer is to simply pass the value that the constant represents, instead of trying to pass the constant itself Just look up what wdRowHeightExactly contains (it's probably an integer) and pass that instead just wondered, is

RE: CF Feature Request - Ability to run CF app on PPC

2002-03-22 Thread Kola Oyedeji
If its any help there are free installer programs around. I found one but cant remember the name which allows you to save a site as an executable - customize the installation pages and prompts, allow the user to specify where to put files when setting up, where to read in a terms condition file,

RE: count(distinct) in MS Access

2002-03-22 Thread Kola Oyedeji
AFAIK I think you can only do distinct on 1 field. Try it with just one field - (not the key as this should be distinct anyway) Kola -Original Message- From: cftalk [mailto:[EMAIL PROTECTED]] Sent: 22 March 2002 18:32 To: CF-Talk Subject: OT: count(distinct) in MS Access Hi,

Using cfexecute to call SQL server fron the command line

2002-03-23 Thread Kola Oyedeji
Hi I am trying to use cfexecute to call SQL server from the command line. The following command works on the command line it executes the query script and displays the results of the query however when i call it using cfexecute it returns a list of parameters as if the parameters being sent are

RE: Using cfexecute to call SQL server fron the command line

2002-03-23 Thread Kola Oyedeji
Message- From: Kola Oyedeji [mailto:[EMAIL PROTECTED]] Sent: Saturday, March 23, 2002 3:08 AM To: CF-Talk Subject: Using cfexecute to call SQL server fron the command line Hi I am trying to use cfexecute to call SQL server from the command line. The following command works

Efficient database inserts

2002-03-28 Thread Kola Oyedeji
Hi I often have an application which allows a user to edit a record. Even if the user only updates one field all fields are resaved in the database. Its occured to me that this may be inefficient. I wondered if I could store the fields in hidden form fields, check on the update page which fields

RE: Efficient database inserts

2002-03-29 Thread Kola Oyedeji
application as sql out-performs CF hands down. Success is a journey, not a destination!! Doug Brown - Original Message - From: Kola Oyedeji [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, March 28, 2002 11:27 PM Subject: Efficient database inserts Hi I

Dynamic queries in stored procedures

2002-03-29 Thread Kola Oyedeji
Hi Could anyone tell me the best way to execute dynamic queries using stored procedures? Thanks Kola __ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

OT: database design question re:product price changes

2002-03-31 Thread Kola Oyedeji
Hi I have a table which holds orders. The productid and the quantity of items purchased are held in this table amongst other things such as the order date, customer id etc. Orders are calculated by getting the product cost and multiplying it by quantity. Its occured to me that if the price of

RE: What is MX

2002-04-02 Thread Kola Oyedeji
Surely in this case the function is to increase dev time lost by cross browser compatibly and perhaps to have modular GUI components and to decrease the amount of trips to the server... just my 2pence Kola -Original Message- From: Matthew R. Small [mailto:[EMAIL PROTECTED]] Sent: 01

RE: Where is the best place to put business rules?

2002-04-03 Thread Kola Oyedeji
I've often wondered about this is there really a need for a third tier, what would you put in the third tier that you *couldn't* put in a stored proc apart from file operations? Thanks Kola -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: 03 April 2002 15:02 To:

RE: Where is the best place to put business rules?

2002-04-04 Thread Kola Oyedeji
Sorry i should have better phrased my question what would you do in a third tier that you wouldnt put in the database or in the client? Kola What would happen if someone decided to update your database using Excel ODBC connection? The stored procedure wouldn't run. But if you had your

RE: Picking up swear words

2002-04-07 Thread Kola Oyedeji
Try cfset cleanString = RereplaceNoCase(dirtyString, [:space:]+ass[:space:]+, *** , all ) it should replace ass if it is preceded or followed by one or more spaces/tabs but not as part of a word with *** . Let me know if that works. KOla -Original Message- From: James

RE: Pausing using CF

2002-04-13 Thread Kola Oyedeji
I think there was also a custom tag called cfsleep in the developers exchange which acheived this. Kola -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: 11 April 2002 22:54 To: CF-Talk Subject: RE: Pausing using CF Forcing a CFLOCK deadlock does not seem

RE: lock var inside JS script?

2001-12-13 Thread Kola Oyedeji
To go one better you could move it to the request scope so that any custom tags on the page will still have access to it as if it was a session var. Kola Kola Oyedeji |Web Developer |ekeda elthorne gate |64 high street |pinner |middx |ha55qa t +44(208)429 7333 f +44(208)429 7339

  1   2   3   4   5   >