RE: CFMODULE vs. CFINCLUDE

2004-12-01 Thread Micha Schopman
Personally, the advantages of cfmodule outweigh those of cfinclude. The performance hit of cfmodule is really low, and cfmodule provides you with encapsulation. Variables defined within a template called by cfmodule have no effect on the executed code outside that template (unless you are using var

RE: Cold Fusion Forum Applications

2004-12-01 Thread Micha Schopman
There is only one really good application, and that is fusetalk :) I haven't seen any worthy opponents. Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 AL Amersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo 39.48.05.380 ~

RE: unix user cfexecute

2004-12-01 Thread Hugo Ahlenius
Is there a better way to call an external program under unix? I wasn't aware of this... (I haven't noticed any big problems, the few times where I have cfexecuted an external program) -- Hugo Ahlenius - Hugo Ahlenius E-

Re: Cold Fusion Forum Applications

2004-12-01 Thread Mark Drew
Which I must say is odd in comparison to PHP as there are millions of forums (some good some bad as always) Fusetalk is good MD On Wed, 1 Dec 2004 09:13:48 +0100, Micha Schopman <[EMAIL PROTECTED]> wrote: > There is only one really good application, and that is fusetalk :) I > haven't seen any

RE: Cold Fusion Forum Applications

2004-12-01 Thread Micha Schopman
PHP has a much larger user base than ColdFusion has. The result of that is also noticeable in the performance and architecture of those forum applications. There are a lot of hobbyists playing with PHP without a good understanding of database and architecture fundamentals. Micha Schopman Software

Re: Cold Fusion Forum Applications

2004-12-01 Thread Mark Drew
Hopefully BlueDragon;'s Market penetration of its free version will help the increase in userbase MD On Wed, 1 Dec 2004 09:27:06 +0100, Micha Schopman <[EMAIL PROTECTED]> wrote: > PHP has a much larger user base than ColdFusion has. The result of that > is also noticeable in the performance and

Re: CFMODULE vs. CFINCLUDE

2004-12-01 Thread Andy Jarrett
I've was thinking about this post last night - don't ask. To give you a little background im mainly a solid Fuseboxer so issues of layout have always been in the back of my head as it is something FB accomodates for. But the one thing i love about the move from FB2 to FB3 was having the layout fil

RE: CFMODULE vs. CFINCLUDE

2004-12-01 Thread Micha Schopman
Why would you want to do that :) Currently this is how the source looks from our CMS pages based for the CF5 version .. The loadtemplate.cfm is a "engine" which provides us with overriding schemes. I personally would only use cfsavecontent for caching logic. Then you would have encapsulate

Re: Help with Dynamic Directory

2004-12-01 Thread Massimo Foti
> I am working on a script that will dynamically determine where > a directory is located within an application. Try this: http://www.cflib.org/udf.cfm?ID=841 Inside my Application.cfm I usually have this: Hope it will help Massimo Foti http://www.massimocorner

Re: CFMODULE vs. CFINCLUDE

2004-12-01 Thread Stephen Moretti (cfmaster)
>The loadtemplate.cfm is a "engine" which provides us with overriding >schemes. > So basically you're using a cfmodule to cfinclude some files depending on what is in the attributes of the tag. >I personally would only use cfsavecontent for caching logic. >Then you would have encapsulated those

Re: Best Practice: Import Delimited List to Database

2004-12-01 Thread Massimo Foti
I wrote a CFC that helps me automating similar tasks: http://www.olimpo.ch/tmt/cfc/tmt_csv.zip Check it out andsee if it may fit your needs Massimo Foti DW tools: http://www.massimocorner.com CF tools: http://www.olimpo.ch/tmt/ ~~

Re: MX Methodologies (Mach2?? Fusebox??)

2004-12-01 Thread Massimo Foti
> Of course, if you put it that way, it is better. > The fact is actually that no technology will enable a bad programmer to write good code. > The fact is also that spaghetti FuseBox and spaghetti OO is worse than anything, and YES, > spaghetti Fusebox and spaghetti code under any framework exists

Re: cfstoredproc and cfdump

2004-12-01 Thread Ian Littlefair
>Stephen Moretti (cfmaster) wrote: > >Oh! Meant to say. > >You should still be able to access that :B1 column inside a >cfloop/cfoutput, like this : searchResults[":B1"] > >Stephen Thanks. To give you some background I don't have any control over the SP. I'm using the user credentials that

cfx_google on cf5 and linux

2004-12-01 Thread Stephen Moretti (cfmaster)
I'm trying to get cfx_google up and running on CF5 on Linux. I've got the default cf5 jvm registered. I've got the full path to the googleapi.jar in the class path field (its the only one there) I've been lazy and put the jar in to the default /opt/coldfusion/Java/classes directory, so CFX Jar P

Java access to CF runtime

2004-12-01 Thread Katz, Dov B (IT)
My site gets a large amount of traffic, and I am using fuseads (formerly available from fusetalk, inc) for my ad server in its "high load" mode. I do not like the fact that ad-related DB usage (primarily for logging impressions and click throughs) are contributing to my page processing time, a

[Fixed Subject] Java-based fuseads wrapper (Was: Java access to CF runtime)

2004-12-01 Thread Katz, Dov B (IT)
My site gets a large amount of traffic, and I am using fuseads (formerly available from fusetalk, inc) for my ad server in its "high load" mode. I do not like the fact that ad-related DB usage (primarily for logging impressions and click throughs) are contributing to my page processing time, a

Re: Best Practice: Import Delimited List to Database

2004-12-01 Thread Greg Morphis
If you're using Oracle and can run sqlldr.exe wouldnt that be your best practice? For an Oracle system? On Wed, 1 Dec 2004 11:11:33 +0100, Massimo Foti <[EMAIL PROTECTED]> wrote: > I wrote a CFC that helps me automating similar tasks: > > http://www.olimpo.ch/tmt/cfc/tmt_csv.zip > > Check it ou

SOT: Garbage Data Detection/Prevention

2004-12-01 Thread Gavin Brook
Hi All, I've got a CF/SQL Server 2k application that serves several hundred users and is designed to store large amounts of data. I have built in many checks and restrictions into the application to prevent incorrect data being inserted. But there is a proportion of users who are circumventing

Re: Best Practice: Import Delimited List to Database

2004-12-01 Thread Scott Stroz
On Tue, 30 Nov 2004 11:12:54 -0800, Bryan Stevenson <[EMAIL PROTECTED]> wrote: > Yep...but you can fire DTS on the fly ;-) Absolutely...several ways as a matter of fact. -- Scott Stroz Boyzoid.com ___ Some days you are the dog, Some days you are the tree. ~

Re: SOT: Garbage Data Detection/Prevention

2004-12-01 Thread Ryan Emerle
The only thing i would suggest is that you don't alienate your users by implmenting some flawed garbage detection scheme. There will be some users whose name really is "Sadf Dsij" (even if it's not an international site). If you do anything, i would run your algorithm in the background and simply

Using COMMIT inside cfquery with MySQL give error

2004-12-01 Thread Marco Antonio C. Santos
Hi all after insert a user record I need to show that same record to that user. But using SELECT statement in other cfquery don't show that user record. Please look this simple example: INSERT INTO resourcebank ( userID,corpID,statusID,age1 ) VALUES ("8EFACE46-795D-1267-34CB31AA6276B84F",17 ,1,37

RE: SOT: Garbage Data Detection/Prevention

2004-12-01 Thread Gavin Brook
Yeah, I agree. I only really want to find out who's doing it so they can be better trained. The spelling check is a good idea. It will at least cut the list down. At the minute I've basically got the system to checking user data on the fly to check for duplicates, required fields and validation o

Web services, complex compound objects and axis

2004-12-01 Thread Thomas Chiverton
I see that CF uses Apache Axis 1.1 for web services. We have a particular WS we want to use, and using Axis 1.1 we can't even build a java client against it (it complains about invalid objects in the XML, and CF just falls over with an 'unknown deserliser' error). *However* Axis 1.2RC2 will happ

Re: Using COMMIT inside cfquery with MySQL give error

2004-12-01 Thread Spectrum Web
Works now I insert this query after the first INSERT query COMMIT; Cheers >Hi all > >after insert a user record I need to show that same record to that >user. But using SELECT statement in other cfquery don't show that user >record. Please look this simple example: > >INSERT INTO resourceb

Re: Using COMMIT inside cfquery with MySQL give error

2004-12-01 Thread Spectrum Web
Works now I insert this query after the first INSERT query COMMIT; Cheers >Hi all > >after insert a user record I need to show that same record to that >user. But using SELECT statement in other cfquery don't show that user >record. Please look this simple example: > >INSERT INTO resourceb

RE: CFMODULE vs. CFINCLUDE

2004-12-01 Thread Ben Rogers
> If I remember correctly, doesn't cfmodule create a whole new memory > block for every call, where as the cfinclude will only use the existing > memory space and be part of the normal page cache? Yes. In fact, that's at least part of the point. cfmodule -- and custom tags in general -- provide en

RE: CFC required arguments

2004-12-01 Thread Sparrow-Hood, Walter
Barney, I'm curious - why do you prefer structKeyExists() vs. setting default values? Walt -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 30, 2004 6:26 PM To: CF-Talk Subject: Re: CFC required arguments If you use positional parameters,

OT: Necessary to run full Email Server to have auto-unsubscribe functionality?

2004-12-01 Thread Rick Faircloth
Hi, all... CF 4.5.2...Windows 2000 Pro I've been running all my mail functions using CFMAIL tags and using IIS's built-in SMTP for sending mass mailings and that's worked fine. Now, I'm beginning to have a desire and need to have users be able to unsubscribe themselves automatically from mailing

RE: CFMODULE vs. CFINCLUDE

2004-12-01 Thread Micha Schopman
In ASP based services, cfimport is useless because it demands a static taglib attribute. That takes away all the glamour and glitter the tag could have. At.. least.. for me ;) Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 AL Amersfoort Tel 033-4535377, Fax 033-4535388 KvK

RE: Necessary to run full Email Server to have auto-unsubscribe functionality?

2004-12-01 Thread Katz, Dov B (IT)
In theory, a quick and dirty way to do this is set up a new pop account called [EMAIL PROTECTED] host. Then you can CFSCHEDULE job to run every 3-4 hours, read mail from that mailbox (CFPOP ), and unsubscribe the sender, sending them a confirm message. I've done something similar where I need to

Re: unix user cfexecute

2004-12-01 Thread Dave Carabetta
On Wed, 1 Dec 2004 09:19:25 +0100, Hugo Ahlenius <[EMAIL PROTECTED]> wrote: > Is there a better way to call an external program under unix? I wasn't > aware of this... (I haven't noticed any big problems, the few times > where I have cfexecuted an external program) > Well, in our case, we wrapped

RE: CFMODULE vs. CFINCLUDE

2004-12-01 Thread Ben Rogers
> In ASP based services, cfimport is useless because it demands a static > taglib attribute. That takes away all the glamour and glitter the tag > could have. At.. least.. for me ;) I agree that it's an unfortunate limitation, but I'm not sure how "ASP based services" has any direct relevance? We

RE: CFMODULE vs. CFINCLUDE

2004-12-01 Thread Micha Schopman
Ben, Imagine this situation. You have a CMS, and it has a shared directory with templates for all customers. Each customer has also its own directory with templates. These template function as overriding templates instead of those shared templates (see them as virtual and those of the customer as

Re: jsessionid cookies

2004-12-01 Thread Nick Cabell
Thank you so much for the helpful answer (finally!). If it is JRUN that is setting the jsessionid (regardless of whether you have told CF to store session variables in the j2ee object) then what explains why there is no jsessionid coming from the hosted site - does this suggest they are not runn

Re: Best Practice: Import Delimited List to Database

2004-12-01 Thread Aaron Rouse
As best I can tell, yes. I use SQLLDR triggered by a nightly windows scheduler for one project and works out great. Though DTS would be so much nicer to use and could even import into a Oracle DB just doubtful one would have access to DTS if in an environment that uses Oracle. I have yet to try

RE: Necessary to run full Email Server to have auto-unsubscribe functionality?

2004-12-01 Thread Rick Faircloth
I'll check into that and see what "pops" up! ;o) Thanks, Rick > -Original Message- > From: Katz, Dov B (IT) [mailto:[EMAIL PROTECTED] > Sent: Wednesday, December 01, 2004 10:34 AM > To: CF-Talk > Subject: RE: Necessary to run full Email Server to have > a

Re: Best Practice: Import Delimited List to Database

2004-12-01 Thread Greg Morphis
I use sqlldr from a cfexecute call in CF. It's remarkably fast. I load some 25,000 rows (some 300 columns in length) from an uploaded txt document. It only takes a few minutes to do so. On Wed, 1 Dec 2004 09:58:09 -0600, Aaron Rouse <[EMAIL PROTECTED]> wrote: > As best I can tell, yes. I use SQL

OT : Printing without the Dialog

2004-12-01 Thread Robertson-Ravo, Neil (RX)
Anyone know of a way to stop the Select Printer Dialog appearing when using the following command: I can't seem to find an API anywhere. rundll32.exe C:\WINDOWS\System32\mshtml.dll,PrintHTML "%1" "%2" "%3" "%4" ideally passing the printer will help! At least to use as default. N This e-ma

Re: Best Practice: Import Delimited List to Database

2004-12-01 Thread Aaron Rouse
Yeap, it is fast the three files I import nightly each are at least 50k rows and some columns upwards of 2000 characters. They only take a few minutes to go in and would be quicker if I disabled the indexes, just never gone back to that project to change things since everyone is plenty happy with

Plum V1.0 Public Beta has been released

2004-12-01 Thread Adam Churvis
Plum V1.0 Public Beta has been released Productivity Enhancement today released the first public beta version of its new product, Plum, which combines a code generator IDE with a comprehensive application framework and an effective rapid development methodology. Plum can build a complete website w

Re: CFMODULE vs. CFINCLUDE

2004-12-01 Thread Stephen Moretti (cfmaster)
Ben Rogers wrote: >>In ASP based services, cfimport is useless because it demands a static >>taglib attribute. That takes away all the glamour and glitter the tag >>could have. At.. least.. for me ;) >> >> > >I agree that it's an unfortunate limitation, but I'm not sure how "ASP based >service

Re: Web services, complex compound objects and axis

2004-12-01 Thread Thomas Chiverton
On Wednesday 01 Dec 2004 14:38 pm, Thomas Chiverton wrote: > Has anyone ever replaced the Axis libraries in ColdFusion (by mangerling > the classloader, replacing things in lib/ ...) ? We're trying to use Spike's UrlClassLoader trick, but it ends up complaining about the log4j set-up... :-( --

Re: CFMODULE vs. CFINCLUDE

2004-12-01 Thread Aaron Rouse
Our framework here uses the custom tag approach, not to imply it is the best way to go, just what has been in use here for years. So a typical page could be something like: Blah Now each tag may call other tags, for instance the header one calls a tag that checks to see if logged in, che

OT: Website Documentation?

2004-12-01 Thread Claremont, Timothy
Does anyone on the list have any pointers or website URLS that dictate some "best practices" when it comes to CF based web site documentation? It guess I am looking for advice on how to create an "owners manual" for the website that will allow another webmaster to step in and take over if and when

Re: CFMODULE vs. CFINCLUDE

2004-12-01 Thread Jerry Johnson
I am going to regret this, but... We use a similar approach, and for the same reasons. But instead of the tag, we use . (No parameters are passed to the close tags.) Blah Jerry Jerry Johnson Web Developer Dolan Media Company >>> [EMAIL PROTECTED] 12/01/04 11:49AM

Re: CFMODULE vs. CFINCLUDE

2004-12-01 Thread Stephen Moretti (cfmaster)
Ben Rogers wrote: >>If I remember correctly, doesn't cfmodule create a whole new memory >>block for every call, where as the cfinclude will only use the existing >>memory space and be part of the normal page cache? >> >> > >Yes. In fact, that's at least part of the point. cfmodule -- and custo

Re: Web services, complex compound objects and axis

2004-12-01 Thread Thomas Chiverton
log4j:ERROR A "org.apache.log4j.xml.DOMConfigurator" object is not assignable to a "org.apache.log4j.spi.Configurator" variable. log4j:ERROR The class "org.apache.log4j.spi.Configurator" was loaded by log4j:ERROR [EMAIL PROTECTED] whereas object of type log4j:ERROR "org.apache.log4j.xml.DOMConfigu

Re: [Fixed Subject] Java-based fuseads wrapper (Was: Java access to CF runtime)

2004-12-01 Thread Thomas Chiverton
On Wednesday 01 Dec 2004 12:31 pm, Katz, Dov B (IT) wrote: > mode. I do not like the fact that ad-related DB usage (primarily for > logging impressions and click throughs) are contributing to my page > processing time, > Any suggestions, thoughts, etc? Do what Supernova do with iFrames. -- T

RE: CFMODULE vs. CFINCLUDE

2004-12-01 Thread Ben Rogers
I can imagine such a situation. In fact, I wrote an e-commerce app that functions somewhat similarly. However, I still maintain that the inability to specify a dynamic taglib path at runtime does not preclude the use of the cfimport tag in all ASP apps. As a side note, the aforementioned e-commerc

RE: CFMODULE vs. CFINCLUDE

2004-12-01 Thread Ben Rogers
> ASP = Application Server Provider not Active Server Pages in this instance Heh, I think we're all aware of that. But thanks for lookin' out -- or did you just figure it out yourself? Ben Rogers http://www.c4.net v.508.240.0051 f.508.240.0057 ~~

Re: MX Methodologies (Mach2?? Fusebox??)

2004-12-01 Thread Ali Awan
m all of a sudden I'm hungry for spaghetti bolognese what were we talking about again? :P >While you can always write spaghetti code in a procedural language, >object-oriented languages used poorly can add meatballs to your spaghetti. >- Andrew Hunt, David Thomas > >:-))) > >-

RE: [Fixed Subject] Java-based fuseads wrapper (Was: Java access to CF runtime)

2004-12-01 Thread Katz, Dov B (IT)
Ultimately, using iframes uses *some* server's database to manage the ads, so it won't solve anything but deferring the request to that server. I'm looking for an in-server optimization, rather than simply to distribute the load. Thanks Dov Katz -Original Message- From: Thomas Chivert

Re: CFMODULE vs. CFINCLUDE

2004-12-01 Thread Aaron Rouse
Our footer normally is called with no parameters, it just has the ability for a few to be sent to it. Offhand the only one I can think of is the turning off of the navigation links that are normally displayed in it. -- Aaron Rouse http://www.happyhacker.com/ On Wed, 01 Dec 2004 11:56:23 -0500,

Re: CFMODULE vs. CFINCLUDE

2004-12-01 Thread Aaron Rouse
We are still on CF5 here, very few MX boxes on our network and never had the luck to get a project onto one of them. We will be going to MX though once Blackstone is out, sadly such is the way of life around here. He did not go to Oracle 9i until 10g was out as well. Unfortunately I doubt they w

RE: CFMODULE vs. CFINCLUDE

2004-12-01 Thread Phillip Holmes
If running CFMX, you could always do this as well (with CFMODULE or CFINCLUDE): variables.iString = "#application.mapping#/testfiles/includeme.cfm"; inc_obj = CreateObject('component','include'); inc_obj.INCLUDE( iString: variables.iString); INCLUDE CFC contents:

Re: OT: Website Documentation?

2004-12-01 Thread Rob
I like to use Docbook - it gives tags specific to technical documenation. Its somewhat of a standard for open source projects. You can google for DocBook to get a feel for what its about. The editor I like to use is XXE http://www.xmlmind.com/xmleditor/. While it wont help you with, like, what do

URGENT - My Login works but ONLY on 2nd attempt.

2004-12-01 Thread Shawn Contreras
Hello, I have a quick login that utilizes only an email address check against the Access database. Several programmers have looked at the code and say it looks/works fine locally but perhaps it is something on the server. Here's what happens: when a returning visitor attempts to sign-in (obvio

CFSCHEDULE and https..PLEASE HELP URGENT

2004-12-01 Thread kausthubaraman neelakantan
Help needed! We are trying to run a Scheduled task in CFMX 6.1 using CFScheduler. The site is SSL protected and we are using Basic Authentication to authorize the users. When we try to give the URL parameter as http://localhost:443/page.cfm the scheduler never completes the task. Meaning it

Re: CFC required arguments

2004-12-01 Thread Barney Boisvert
I usually want to know if the argument was passed, not if the argument is the default value. With a default value, that value necessarily has to be a legal value for the argument. Therefore there's no way to tell if it was omitted or if the default value was explicitly passed. Take this function

RE: CFMODULE vs. CFINCLUDE

2004-12-01 Thread Ben Rogers
> You are quite correct. However, using cfmodule and custom tags is > potentially is server killer because it is EVERY call to the > cfmodule/tag and not just the first call that grabs additional memory. > So for every page call for every site visitor more memory is allocated > for each cfmodule.

RE: CFMODULE vs. CFINCLUDE

2004-12-01 Thread Gaulin, Mark
We use this style too (for skinning) and the only difficulty we run into is the constraint that the opening and closing tags have to remain in the same logical scope on the page, so you can't conditionally open the tag at the top of the page and then conditionally close it at the bottom. This d

Re: CFMODULE vs. CFINCLUDE

2004-12-01 Thread Aaron Rouse
Would there be any advantage to doing this though? -- Aaron Rouse http://www.happyhacker.com/ On Wed, 1 Dec 2004 11:30:30 -0600, Phillip Holmes <[EMAIL PROTECTED]> wrote: > If running CFMX, you could always do this as well (with CFMODULE or > CFINCLUDE): > > >variables.iString = "#appl

Re: URGENT - My Login works but ONLY on 2nd attempt.

2004-12-01 Thread Joe Rinehart
Shawn, Are you setting a cookie then doing cfLocation? On Wed, 01 Dec 2004 12:57:25 -0400, Shawn Contreras <[EMAIL PROTECTED]> wrote: > Hello, I have a quick login that utilizes only an email address check against > the Access database. Several programmers have looked at the code and say it >

RE: CFMODULE vs. CFINCLUDE

2004-12-01 Thread Phillip Holmes
Depends on the efficiency of your construct. If you do it right, there are many. That CFC would just be apart of a larger OO schema. Phil -Original Message- From: Aaron Rouse [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 01, 2004 12:30 PM To: CF-Talk Subject: Re: CFMODULE vs. CFIN

Re: URGENT - My Login works but ONLY on 2nd attempt.

2004-12-01 Thread Shawn Contreras
Code looks like this: SELECT Subscribers.Email,Subscribers.FirstName as FirstName FROM Subscribers where Email = '#Form.UserName#' sifu ~~~

bug tracker

2004-12-01 Thread Michael Dinowitz
Anyone know of a good CF based bug tracker using a DB for storage? MN is using Raymond's Lighthouse but it has a slight problem when you have several hundred bugs stored in memory. I have to either convert the whole thing to DB or find something else. Raymond, do you have a DB version of this? Th

RE: CFMODULE vs. CFINCLUDE

2004-12-01 Thread Dave Watts
> You'd have to use a hell of a lot custom tags for this to > ever become an issue. As noted in previous messages, I make > extensive use of custom tags and have yet to run into a > performance problem caused by the use of custom tags in the > manners described. > > I think this type of thinki

CF Studio 5 tag updater

2004-12-01 Thread David Brown
I have tried both the tag updates from the CFMX 6.1 cd and downloading the same two file names from macromedia web site. I have unzipped using paths into CF studio path \root so that the updates would go into cfstudio 5 root\extensions. I have checked to make sure the files have been updated, b

Re: bug tracker

2004-12-01 Thread Howie Hamlin
This one is db based and free with source. It might be a decent starting point. http://www.gotocode.com/apps.asp?app_id=1 Regards, -- Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. - www.CoolFusion.com inFusion Mail Server (iMS) - The Award-winning, Intelligent Mail Serve

Re: CFMAIL and Crystal Tech webhosting?

2004-12-01 Thread Matt Robertson
u. the geek in me just had to visit that web site. There, I said it. -- --Matt Robertson-- President, Janitor MSB Designs, Inc. mysecretbase.com ~| Special thanks to the CF Community Suite Silver Sponsor - RUWebby http://ww

RE: CFMODULE vs. CFINCLUDE

2004-12-01 Thread Ben Rogers
> Prior to CFMX, I've run into all sorts of performance problems with custom > tags under load, not just ones that did recursion. Such as the aforementioned memory consumption or something else? I had some problems in ColdFusion 4.0, though I think (besides not giving up memory) most were squared

RE: bug tracker

2004-12-01 Thread Michael Dinowitz
Site isn't working. > This one is db based and free with source. It might be a decent starting > point. > > http://www.gotocode.com/apps.asp?app_id=1 > > Regards, > > -- > Howie Hamlin - inFusion Project Manager > On-Line Data Solutions, Inc. - www.CoolFusion.com > inFusion Mail Server (iMS)

RE: [Fixed Subject] Java-based fuseads wrapper (Was: Java access to CF runtime)

2004-12-01 Thread Dave Watts
> My site gets a large amount of traffic, and I am using > fuseads (formerly available from fusetalk, inc) for my ad > server in its "high load" > mode. I do not like the fact that ad-related DB usage > (primarily for logging impressions and click throughs) are > contributing to my page pr

RE: CFMODULE vs. CFINCLUDE

2004-12-01 Thread Dave Watts
> > Prior to CFMX, I've run into all sorts of performance problems > > with custom tags under load, not just ones that did recursion. > > Such as the aforementioned memory consumption or something > else? Poor response times. > I had some problems in ColdFusion 4.0, though I think > (besides

cfcatch scope just says [unknown type]

2004-12-01 Thread Matt Robertson
I ran the latest Updater recently and since then, it seems my cfcatch statements (when displayed via cfdump) no longer have those annoying red boxes saying variable not found and only naming the var... but not its location. Instead the entire cfcatch scope simply dumps out to [unknown type]. Ther

Re: URGENT - My Login works but ONLY on 2nd attempt.

2004-12-01 Thread Ben Doom
>expires="#CreateTimeSpan(0,12,0,0)#"> > >expires="#CreateTimeSpan(0,12,0,0)#"> > > > >"No"> > >"#application.VirtualDirectory#?#form.OriginalURL#" addToken = "No"> > Here be the problem, matey. You're set

Re: bug tracker

2004-12-01 Thread Douglas Knudsen
I'll send you a copy of my alpha version using Machii. no guarantees, but hey, its uber free. :) Doug On Wed, 1 Dec 2004 14:33:12 -0500, Michael Dinowitz <[EMAIL PROTECTED]> wrote: > Site isn't working. > > > > > > This one is db based and free with source. It might be a decent starting >

CF MX developer edition with no network connection.

2004-12-01 Thread Jacob
I am running CF MX developer edition on my laptop. The problem I have is that when I try to start CF without a network connection, CF will not start. Not a problem at home, but when I am on a plane, or a hotel, hard to do some work... ;-) Any way I can get CF MX to run without a network connec

RE: CF MX developer edition with no network connection.

2004-12-01 Thread Dave Watts
> I am running CF MX developer edition on my laptop. The > problem I have is that when I try to start CF without a > network connection, CF will not start. > > Not a problem at home, but when I am on a plane, or a hotel, > hard to do some work... ;-) > > Any way I can get CF MX to run without

Re: CFMODULE vs. CFINCLUDE

2004-12-01 Thread Matt Robertson
>And, frankly, I find if very difficult to believe that you've "never had a >problem". I can see where the use of naming conventions and such would help >prevent such problems. But to say you've never had a problem -- well, I >assume you're making use of hyperbole. Wow, we're in the midst of anoth

Re: bug tracker

2004-12-01 Thread Phil Cruz
>Anyone know of a good CF based bug tracker using a DB for storage? MN is >using Raymond's Lighthouse but it has a slight problem when you have several >hundred bugs stored in memory. I have to either convert the whole thing to >DB or find something else. > >Raymond, do you have a DB version of th

Re: CF MX developer edition with no network connection.

2004-12-01 Thread Jeff Small
>I am running CF MX developer edition on my laptop. The problem I have is > that when I try to start CF without a network connection, CF will not > start. > > Not a problem at home, but when I am on a plane, or a hotel, hard to do > some work... ;-) > > Any way I can get CF MX to run without a ne

RE: bug tracker

2004-12-01 Thread Mark A Kruger
Michael, We using "tracking tools" by Phil Cruz. It's commercial but doesn't cost very much (70$ I think). It's fusebox. I don't know how you feel about that but it does make it fairly and easy to plug and modify. We've added a customer facing piece and est/hours/cost fields to it. We also added

Re: cfcatch scope just says [unknown type]

2004-12-01 Thread Dave Carabetta
On Wed, 1 Dec 2004 11:39:25 -0800, Matt Robertson <[EMAIL PROTECTED]> wrote: > I ran the latest Updater recently and since then, it seems my cfcatch > statements (when displayed via cfdump) no longer have those annoying > red boxes saying variable not found and only naming the var... but not > its

RE: bug tracker

2004-12-01 Thread Mark A Kruger
Whoops... looks like he (justifyably) raised his price a bit sorry to get you excited (lol). -Original Message- From: Mark A Kruger [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 01, 2004 2:09 PM To: CF-Talk Subject: RE: bug tracker Michael, We using "tracking tools" by Phil Cr

Re: CFMODULE vs. CFINCLUDE

2004-12-01 Thread Stephen Moretti (cfmaster)
>>I had some problems in ColdFusion 4.0, though I think >>(besides not giving up memory) most were squared away by 4.1. >>I don't think I deployed anything to (nor load tested on) >>4.5. ColdFusion 5 seemed to be better about giving up >>resources that weren't in use. >> >> > >CF 5 did rele

Re: bug tracker

2004-12-01 Thread Phil Cruz
The price has stayed the same since first release ($99/standard edition). (Mark, my records show you paid $99). I was running a promo (since discontinued) that offered the Enterprise edition for $99. I should also point out that TTools now uses Mach-II under the hood and not Fusebox. -Phil >Wh

RE: CFMODULE vs. CFINCLUDE

2004-12-01 Thread Ben Rogers
> CF 5 did release memory, while CF 4.0.1 didn't. I don't remember whether > CF 4.5.1 did or not. Thanks for the correction. I meant 4.0.1. We developed for and hosted on ColdFusion 4.0.1 until some time after 5 was released. Then we moved most of our stuff to 5. We are now migrating most of our s

Re: URGENT - My Login works but ONLY on 2nd attempt.

2004-12-01 Thread Scott Brady
On Wed, 01 Dec 2004 14:41:22 -0500, Ben Doom wrote: > > Here be the problem, matey. You're setting cookies then cflocationing. > When you cflocation, the cookies cannot be read by the page you > redirect to. Workarounds might include using a JS or META redirect, or > using client or session v

Re: bug tracker

2004-12-01 Thread Howie Hamlin
Sorry - it was working earlier. I don't have the ZIP or else I'd send it to you. Howie --- On Wednesday, December 01, 2004 2:33 PM, Michael Dinowitz scribed: --- > > Site isn't working. > > >> This one is db based and free with source. It might be a decent >> starting point. >> >> http://ww

Re: CF MX developer edition with no network connection.

2004-12-01 Thread Jacob
Windows 2003 server under IIS 6.0. Running it as a service. At 12:03 PM 12/1/2004, you wrote: > >I am running CF MX developer edition on my laptop. The problem I have is > > that when I try to start CF without a network connection, CF will not > > start. > > > > Not a problem at home, but when I

RE: CF MX developer edition with no network connection.

2004-12-01 Thread Jacob
I am going to try the loop back adapter. That sounds like it may work. Thanks Jacob At 12:10 PM 12/1/2004, you wrote: > > I am running CF MX developer edition on my laptop. The > > problem I have is that when I try to start CF without a > > network connection, CF will not start. > > > > Not a p

RE: CFMODULE vs. CFINCLUDE

2004-12-01 Thread Ben Rogers
> Wow, we're in the midst of another list jihad and its not about > FuseBox. Go figure. I know, and somehow I stumbled right into it. Fortunately, it's an issue which makes no difference to me. :) > Anyway, he's probably using includes that don't contain a significant > degree of CF logic, which

CFDIRECTORY question

2004-12-01 Thread Robert Orlini
I have this cfdirectory code (see below) that I want to read a list of directory names and then insert into a table. However, this script will be running each time a user accesses drop-down list. I want to list the current directories and any new directory names that have been added. At this

Re: jsessionid cookies

2004-12-01 Thread Chris Norloff
If it's CFMX for J2EE, it could be running on any one of several different J2EE app servers (JRun, WebSphere, WebLogic, SunONE, etc.). The only reason a J2EE app server would set the jsessionid cookie again is if it didn't see the first cookie. Check your http headers and see if you can see wha

Re: cfcatch scope just says [unknown type]

2004-12-01 Thread Matt Robertson
OK thanks. I just checked and my live server does indeed have the cfdump fix on it, which isn't working here. Its Martin Parry's BeetrootStreet.com cfdump update. Maybe its not a fix for the same thing. At least I can loop over the scope, though. One heck of a lot easier to revise my error tem

RE: bug tracker

2004-12-01 Thread dave
submit a bug ;) -- Original Message -- From: [EMAIL PROTECTED] (Michael Dinowitz) Reply-To: [EMAIL PROTECTED] Date: Wed, 1 Dec 2004 14:33:12 -0500 >Site isn't working. > > >> This one is db based and free with source. It might be a decent starting >> poi

RE: CF MX developer edition with no network connection.

2004-12-01 Thread Dawson, Michael
I run CFMX that way w/o a network connection on my laptop. Not sure that helps, but I wanted to state that it can be done. Perhaps your config has CFMX looking for something on a remote computer? -Original Message- From: Jacob [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 01, 200

RE: CF MX developer edition with no network connection.

2004-12-01 Thread Dawson, Michael
I have to say I'm running XP, not server. -Original Message- From: Jacob [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 01, 2004 2:33 PM To: CF-Talk Subject: Re: CF MX developer edition with no network connection. Windows 2003 server under IIS 6.0. Running it as a service. At 12:

Re: URGENT - My Login works but ONLY on 2nd attempt.

2004-12-01 Thread Shawn Contreras
Scott, This is CFMX. If this is the case then do you have another resolution?? Anyone?? Sifu >Depends on the version of CF. This was the case with CF5 and earlier, >but is no longer an issue with CFMX. (The CFMX Study Guide actually >has this wrong, fwiw) > >Scott > >-- >--

  1   2   >