developer edition gateway limitations?

2005-10-22 Thread Paul Hastings
i *know* there's some kind of throttle on the developer & trial editions 
  for gateways but i can't find the exact documentation (other than a 
vague mention in cfdocs Using Event Gateways: "In ColdFusion MX 
Developer Edition, some gateway types supplied with ColdFusion MX impose 
connection limitations."). anybody know where this info tidbit is hiding?

thanks.

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221964
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: cfprocresult and recordcount

2005-10-22 Thread Pete Ruckelshaus
OK, the issue might be with my SP; I tried to dump the query structure
and got an error.  I'm pushing my personal stored procedure envelope
here so might have made a mistake.

Anyway, here's my cfstoredproc call:








And here is the stored procedure:

CREATE PROCEDURE spGetNav
@cid integer
AS
SELECT  C.ID, C.parentid, C.displayorder, C.title, C.redirect
FROMtblContent C
WHERE   C.active = 1

SELECT  C.ID, C.title, C.redirect
FROMtblContent C
WHERE   C.parentid IS NULL
ORDER BYC.displayorder

DECLARE @parentidcount integer
SET @parentidcount = (SELECTcount(C.parentid) AS 
parentidcount
  FROM  tblContent C
  WHERE C.ID = @cid)

IF (@parentidcount > 0)
BEGIN
SELECT  ID, title, redirect
FROMgetAllNavElements
WHERE   parentid = (SELECT  
C.parentid
FROM
tblContent C
WHERE   
C.ID = @cid)
ORDER BYdisplayorder

END

GO


As I mentioned, I'm just beginning to go beyond the basics as far as
stored procedures go, so my guess is that I've done something wrong. 
The first two SELECT statements are returning result sets.  The third
portion of the SP (or so I thought) begins with the DECLARE statement,
and my guess is that's what is causing the problem.

Can someone point me in the right direction on this one?

Thanks,

Pete

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221963
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


cfprocresult and recordcount

2005-10-22 Thread Pete Ruckelshaus
I'm using CFMX7, WinXP, MS SQL Server 2K.

I'm trying to get the recordcount of the returned stored procedure
result set, but it's throwing an error "Element RECORDCOUNT is
undefined in GETNAVSUBELEMENTS"

Is there a different way to get the recordcount from a stored
procedure?  Does it still return a value if there are no records
returned?

Thanks,

Pete

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221962
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OT - MSDE - EM/QA Tools

2005-10-22 Thread Pete Ruckelshaus
I use Aqua Data Studios as well, but I have also been using EMS MS SQL
Manager lately, and I like it a lot.  I think they have a lite version
that is free.

Pete

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221961
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


CFAJAX Error Handler

2005-10-22 Thread James Holmes
This is for those not also on the CFAJAX list.

Can those with some time who use CFAJAX try out this error handler
technique and let me know if it works for you?

http://jr-holmes.coldfusionjournal.com/cf_errors_in_cfajax.htm

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221960
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Email Server Commands

2005-10-22 Thread clark slater
Thanks Jeff that's very cool indeed!

On 10/22/05, Jeff Garza <[EMAIL PROTECTED]> wrote:
>
> I believe that CFPOP and/or CF_IMAP (in the mm developer exchange) are
> your
> friends here... Just set up a scheduled task to go and check the mail
> every
> minute or so. Then you can parse out whatever is in the message and act on
> it as needed.
>
> Jeff
>
> -Original Message-
> From: clark slater [mailto:[EMAIL PROTECTED]
> Sent: Saturday, October 22, 2005 2:57 PM
> To: CF-Talk
> Subject: Email Server Commands
>
> I have a requirement to allow changes to a live application via email.
> Basically there needs to be an admin email address that will receive
> mails,
> parse commands from the mail and make changes to various application wide
> settings.
> Has anyone done this and where should I start? I'm using CF7.
> Clark Slater
>
>
>
>
> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221959
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: anyone using mx7 in production?

2005-10-22 Thread Michael Dinowitz
House of Fusion has been running it since Sept. of 2004 and we've never looked 
back (from 5). Can you look over the logs to see where and what is crashing and 
post it as questions to the list. If it's a code issue, there are many here who 
are VERY willing to help.

> It seems to be quite unstable compared to 5.0. The performance also 
> seems to be worse, not better. Is anyone using this in a production 
> environment? 
> 
> I have migrated from 5.0 and am starting to regret that decision. 
> There seems to be an endless list of problems with performance and 
> tags just not working.
> 
> The jre crashes seem to happen when there is the slightest load. In 5.
> 0 it used to slow the user doing the long request. Now it seems to 
> kill everyone.

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221958
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: OT - MSDE - EM/QA Tools

2005-10-22 Thread Justin D. Scott
> Out of interest, how are people getting on with
> MSDE? I've more or less ignored it up until today.

IIRC, GoDaddy's "SQL Server" offering for their hosting plans uses MSDE for
those databases, and not actually SQL Server.  For your own use, it depends
on what you want to do with it.  Keep in mind that it has some limitations,
but for low-end sites it should work fine.


-Justin Scott


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221957
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: OT - MSDE - EM/QA Tools

2005-10-22 Thread Andrew Stevens
Howdy, I just went thru the same exercise.

I installed MSDE straight from SP4 for low hassles. MS have 'Web Data
Administrator' but it just seemed to hang when trying to log in and connect
to the DB.
http://www.microsoft.com/downloads/details.aspx?familyid=C039A798-C57A-419E-
ACBC-2A332CB7F959&displaylang=en

I've used Aqua Data Studio before, so I fired that up, it had what I needed
to create databases, tables etc. http://www.aquafold.com/

Cheers,
AS

Subject: OT - MSDE - EM/QA Tools
From: "Adrian Lynch" <[EMAIL PROTECTED]>
Date: Sun, 23 Oct 2005 00:48:41 +0100
Thread:
http://www.houseoffusion.com/cf_lists/index.cfm/method=messages&threadid=429
11&forumid=4#221948

I've just installed MSDE on a local dev machine, I don't have the disk with
EM and QA on and was about to hunt down some alternatives on the web. Doesn
anyone have any recommendations? Web based would be ok too.

Thanks.

Adrian


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221956
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Referencing filenames in cfindex

2005-10-22 Thread Adrian Lynch
The file name should be in the query returned from cfindex. It might be
fully qualified so treat it as a list and extract it.

Could be wrong though! :OI

Ade

-Original Message-
From: Lilly Spa [mailto:[EMAIL PROTECTED]
Sent: 23 October 2005 01:42
To: CF-Talk
Subject: Referencing filenames in cfindex


I'm trying to run a cfindex on the files in a
directory. Here's my syntax:






~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221955
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Referencing filenames in cfindex

2005-10-22 Thread Lilly Spa
I'm trying to run a cfindex on the files in a
directory. Here's my syntax:





This is one of three collections that I would like
have use the same references such as custom1, custom2,
etc. 

The only glitch I'm running into is with custom2. I
would like that to be the filename. How would I go
about generating it? I'm thinking I can use a cgi
command, but not sure which.

If anyone can help me, it'll save me from more hours
of headaches.

Thank you.




__ 
Yahoo! Mail - PC Magazine Editors' Choice 2005 
http://mail.yahoo.com

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221954
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Any Interest in a Completely Free CFML Calendar?

2005-10-22 Thread Mark Fuqua
Hey Sean,

No offense intended, just thought the Vivio calendar offer was a gracious
one and was impressed with it's verboseness [is that a word?].

My comment about fusebox is colored by my ignorance of fusebox and
frameworks in general and I was only thinking it would make it hard to
incorporate/modify for a non-fusebox app.  It was not meant as a cut on
fusebox at all.

Mark

-Original Message-
From: Sean Corfield [mailto:[EMAIL PROTECTED]
Sent: Saturday, October 22, 2005 6:05 PM
To: CF-Talk
Subject: Re: Any Interest in a Completely Free CFML Calendar?


On 10/22/05, Mark Fuqua <[EMAIL PROTECTED]> wrote:
> As you say choice is good. However, the two apps are vastly different.  In
a
> brief look at Vivio's, it seems more like outlook exchange, very robust
and
> not based on fusebox.  I am not sure these two calendars compete/compare
at
> all.

I was merely pointing out an existing open source effort - which I
noted was "very basic". If CFers contributed more to existing open
source projects, perhaps they would become more robust and
full-featured?

(and I don't see what Fusebox has to do with this other than one of
the calendars just happens to be written using it).
--
Sean A Corfield -- http://corfield.org/
Got frameworks?

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood



~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221953
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: 500 Null at bottom of debug!

2005-10-22 Thread Adrian Lynch
Ok, in the comments section of livedocs here:

http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/h
tml/wwhelp.htm?context=ColdFusion_Documentation&file=0217.htm

--
yoinky said on Sep 28, 2005 at 2:03 AM :
HUGE Pain-In-The-Ass Solution:

DO NOT USE HYPHEN CHARACTERS IN THE NAME="" ATTRIBUTE!

Just incase you are pulling your hair out wondering why your client
management isn't working (like I've been doing for the past week) and have
gone through everything and can't get it working on a database or in the
registry, head this very simple "rule" left out of the documentation.

if you do use a hyphen, at the end of the request when the client scope is
supposed to be automatically persisted by the runtime, it will display a
"500 NULL" error in html at the bottom of the page, it won't even throw a
real exception or log the error, so you have no idea it happened.
yoinky said on Sep 30, 2005 at 1:04 AM :
A follow up to my last post, if you enable client management, and then
somehow delete the #client.hitCount# variable (for example by doing
#structDelete( client )#) then the client data will fail to persist whenever
changes are made!

This error wont through an exception, it wont log the error, it will simply
append a snippet of html to the output with "500 null"

Any other built in client variable can be removed except for HitCount, so be
careful.
---

And I did use StructDelete(CLIENT) a short while before!

Adrian

-Original Message-
From: Adrian Lynch [mailto:[EMAIL PROTECTED]
Sent: 23 October 2005 01:25
To: CF-Talk
Subject: 500 Null at bottom of debug!


I've just installed CF7 dev on a new machine. At the bottom of the page,
beneath the debug there's a 500 Null line. The page runs as normal. I've
checked to source to see if the real error was mentioned but it's only 500
Null at the bottom of the page.

Here's a screen: http://www.adrianlynch.co.uk/temp/null.jpg

Any ideas?

Adrian


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221952
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


500 Null at bottom of debug!

2005-10-22 Thread Adrian Lynch
I've just installed CF7 dev on a new machine. At the bottom of the page,
beneath the debug there's a 500 Null line. The page runs as normal. I've
checked to source to see if the real error was mentioned but it's only 500
Null at the bottom of the page.

Here's a screen: http://www.adrianlynch.co.uk/temp/null.jpg

Any ideas?

Adrian


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221951
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: OT - MSDE - EM/QA Tools

2005-10-22 Thread Adrian Lynch
Ah nice one! Now I don't have to wait till Monday :OD

Out of interest, how are people getting on with MSDE? I've more or less
ignored it up until today.

Adrian

-Original Message-
From: Justin D. Scott [mailto:[EMAIL PROTECTED]
Sent: 23 October 2005 00:53
To: CF-Talk
Subject: RE: OT - MSDE - EM/QA Tools


If you download the eval for SQL Server 2000 from Microsoft it includes the
client tools.

-Justin


> -Original Message-
> From: Adrian Lynch [mailto:[EMAIL PROTECTED]
> Sent: Saturday, October 22, 2005 7:49 PM
> To: CF-Talk
> Subject: OT - MSDE - EM/QA Tools
>
> I've just installed MSDE on a local dev machine, I don't have
> the disk with
> EM and QA on and was about to hunt down some alternatives on
> the web. Doesn
> anyone have any recommendations? Web based would be ok too.
>
> Thanks.
>
> Adrian
>
>
>



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221950
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: OT - MSDE - EM/QA Tools

2005-10-22 Thread Justin D. Scott
If you download the eval for SQL Server 2000 from Microsoft it includes the
client tools.

-Justin
 

> -Original Message-
> From: Adrian Lynch [mailto:[EMAIL PROTECTED] 
> Sent: Saturday, October 22, 2005 7:49 PM
> To: CF-Talk
> Subject: OT - MSDE - EM/QA Tools
> 
> I've just installed MSDE on a local dev machine, I don't have 
> the disk with
> EM and QA on and was about to hunt down some alternatives on 
> the web. Doesn
> anyone have any recommendations? Web based would be ok too.
> 
> Thanks.
> 
> Adrian
> 
> 
> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221949
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


OT - MSDE - EM/QA Tools

2005-10-22 Thread Adrian Lynch
I've just installed MSDE on a local dev machine, I don't have the disk with
EM and QA on and was about to hunt down some alternatives on the web. Doesn
anyone have any recommendations? Web based would be ok too.

Thanks.

Adrian


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221948
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Email Server Commands

2005-10-22 Thread Jeff Garza
I believe that CFPOP and/or CF_IMAP (in the mm developer exchange) are your
friends here... Just set up a scheduled task to go and check the mail every
minute or so.  Then you can parse out whatever is in the message and act on
it as needed.

Jeff

-Original Message-
From: clark slater [mailto:[EMAIL PROTECTED] 
Sent: Saturday, October 22, 2005 2:57 PM
To: CF-Talk
Subject: Email Server Commands

I have a requirement to allow changes to a live application via email.
Basically there needs to be an admin email address that will receive mails,
parse commands from the mail and make changes to various application wide
settings.
 Has anyone done this and where should I start? I'm using CF7.
 Clark Slater




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221947
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Any Interest in a Completely Free CFML Calendar?

2005-10-22 Thread Sean Corfield
On 10/22/05, Mark Fuqua <[EMAIL PROTECTED]> wrote:
> As you say choice is good. However, the two apps are vastly different.  In a
> brief look at Vivio's, it seems more like outlook exchange, very robust and
> not based on fusebox.  I am not sure these two calendars compete/compare at
> all.

I was merely pointing out an existing open source effort - which I
noted was "very basic". If CFers contributed more to existing open
source projects, perhaps they would become more robust and
full-featured?

(and I don't see what Fusebox has to do with this other than one of
the calendars just happens to be written using it).
--
Sean A Corfield -- http://corfield.org/
Got frameworks?

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221946
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Email Server Commands

2005-10-22 Thread clark slater
I have a requirement to allow changes to a live application via email.
Basically there needs to be an admin email address that will receive mails,
parse commands from the mail and make changes to various application wide
settings.
 Has anyone done this and where should I start? I'm using CF7.
 Clark Slater


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221945
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Any Interest in a Completely Free CFML Calendar?

2005-10-22 Thread Mark Fuqua
Sean,

As you say choice is good. However, the two apps are vastly different.  In a
brief look at Vivio's, it seems more like outlook exchange, very robust and
not based on fusebox.  I am not sure these two calendars compete/compare at
all.

Mark

-Original Message-
From: Sean Corfield [mailto:[EMAIL PROTECTED]
Sent: Saturday, October 22, 2005 2:56 PM
To: CF-Talk
Subject: Re: Any Interest in a Completely Free CFML Calendar?


On 10/14/05, Jordan Michaels <[EMAIL PROTECTED]> wrote:
> For some time now, Vivio Technologies has been debating whether or not
> to put forth the effort to complete the development of a completely
> free, (under a modified open-source MIT license) CFML calendar
> application.

cfopen.org has a very basic free open source calendar app:

http://cfopen.org/projects/coldcalendar/

(of course, more choice is always good)
--
Sean A Corfield -- http://corfield.org/
Got frameworks?

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221944
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Starting Open Source Shopping Cart

2005-10-22 Thread Jeff Garza
LOL... yes, it is.  Usually, the UML diagrams come after the requirements
gathering... If you can find a place that supports wikis, that might be the
best way to get a requirements document in place...

Cheers,

Jeff

-Original Message-
From: Andy [mailto:[EMAIL PROTECTED] 
Sent: Saturday, October 22, 2005 12:42 PM
To: CF-Talk
Subject: RE: Starting Open Source Shopping Cart

Good point. I was thinking about following a UML process.  Start with
Scenerios, define actors, create Use Cases, create requirements...

>From an "infrastructure" side, we will need to decide on standards,
frameworks, methodologiesOh CHRIST, this is sounding like real work!

However, the first step is decide on a place to hold all of these
discussions, or tracks of work.




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221943
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Starting Open Source Shopping Cart

2005-10-22 Thread Andy
Good point. I was thinking about following a UML process.  Start with
Scenerios, define actors, create Use Cases, create requirements...

>From an "infrastructure" side, we will need to decide on standards,
frameworks, methodologiesOh CHRIST, this is sounding like real work!

However, the first step is decide on a place to hold all of these
discussions, or tracks of work.

-Original Message-
From: Jeff Garza [mailto:[EMAIL PROTECTED] 
Sent: Saturday, October 22, 2005 12:40 PM
To: CF-Talk
Subject: RE: Starting Open Source Shopping Cart

Sounds pretty good, but might I suggest that all of this start with a well
defined requirements document?  What is the purpose of the project?  What
functionality will be included, broken out by module?  What other aspects of
the project are there to be taken into consideration (Frameworks,
methodologies, etc...).  What constraints are there for the project scope
(must run on shared hosts, use specific mappings, database support, etc...)?

Each one of the items below are pretty hefty systems within their own right.
Tying them all together in a single cohesive interface would be nightmarish
without a good project plan...  Sorry... the CMMI level 5 processes where I
work are beginning to rub off on me...

Cheers,

Jeff

-Original Message-
From: Andy [mailto:[EMAIL PROTECTED]
Sent: Saturday, October 22, 2005 10:04 AM
To: CF-Talk
Subject: RE: Starting Open Source Shopping Cart

How about "Order Management"?  This encompasses at least:
1.  Products
2.  Catalogs
3.  Shopping Cart
4.  Customers
5.  Orders
6.  Shipping
7.  Invoicing
8.  Billing/Charge Cards








~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221942
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Custom tag knows coldfusion child tags?

2005-10-22 Thread Raymond Camden
As far as I know, the answer is no. A parent custom tag can introspect
child custom tags, bu tnot child built-in tags. Again, afaik.

On 10/22/05, Johnny Le <[EMAIL PROTECTED]> wrote:
> This is a long shot, but is there anyway a custom tag can know about 
> coldfusion built-in child tags?  For example:
>
> 
> 
> 
> 
>
> Is there anyway my custom tag  know that it has has child tag 
> called  and the child tag has an attribute called startRow with a 
> value of 10?
>
> Johnny
>
> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221941
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Any Interest in a Completely Free CFML Calendar?

2005-10-22 Thread Sean Corfield
On 10/14/05, Jordan Michaels <[EMAIL PROTECTED]> wrote:
> For some time now, Vivio Technologies has been debating whether or not
> to put forth the effort to complete the development of a completely
> free, (under a modified open-source MIT license) CFML calendar
> application.

cfopen.org has a very basic free open source calendar app:

http://cfopen.org/projects/coldcalendar/

(of course, more choice is always good)
--
Sean A Corfield -- http://corfield.org/
Got frameworks?

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221940
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Any Interest in a Completely Free CFML Calendar?

2005-10-22 Thread Chris Montgomery
Jordan Michaels said the following on 10/14/2005 4:28 PM:
> For some time now, Vivio Technologies has been debating whether or not
> to put forth the effort to complete the development of a completely
> free, (under a modified open-source MIT license) CFML calendar
> application. The idea was to develop a calendar application that anyone
> could do anything they want with, and help support the Cold Fusion
> community as a whole. Companies who develop in CFML would have the
> ability to -re-design, re-code, -re-brand, re-sell, or whatever else
> they wanted to do with the calendar application. The calendar would be
> able to run under BlueDragon FREE edition, and use open-source databases
> like PostgreSQL and MySQL. That way, no user anywhere would need to pay
> for anything more then the cost of hosting in order to deploy the calendar.
> 
> Our question is simple: Would there be any interest in something like this?
[snip]

I would definitely be interested. I have a couple of nonprofit sites 
that I would like to use it on and it would save me loads of time.

Any idea when the downloads might be available?

Thanks.

-- 
Chris Montgomery
Airtight Web Services   http://www.airtightweb.com
Web Development, Web Project Management, Software Sales
210-490-2415 (office), 210-232-2790 (mobile)

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221939
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Starting Open Source Shopping Cart

2005-10-22 Thread Jeff Garza
Trust me... Level 5 is not somewhere you want to go... unless you like being
inundated with processes to manage your processes... ;-)

Level 2/3 is about where you really gain from the process but aren't a
complete slave to it. 

Cheers!

Jeff


-Original Message-
From: Michael T. Tangorre [mailto:[EMAIL PROTECTED] 
Sent: Saturday, October 22, 2005 10:46 AM
To: CF-Talk
Subject: RE: Starting Open Source Shopping Cart

> From: Jeff Garza [mailto:[EMAIL PROTECTED] 
> CMMI level 5 processes where I work are beginning to rub off on me...

WOW, level 5? Pretty impressive... very few people reach that and maintain
it! I thought level 3 was a lot...!






~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221938
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Starting Open Source Shopping Cart

2005-10-22 Thread Michael T. Tangorre
> From: Jeff Garza [mailto:[EMAIL PROTECTED] 
> CMMI level 5 processes where I work are beginning to rub off on me...

WOW, level 5? Pretty impressive... very few people reach that and maintain
it! I thought level 3 was a lot...!




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221937
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Open Source Shopping Cart (was: Shopping Cart)

2005-10-22 Thread Bobby Hartsfield
Ha! Good point

 
..:.:.:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com
-Original Message-
From: dave [mailto:[EMAIL PROTECTED] 
Sent: Saturday, October 22, 2005 3:21 AM
To: CF-Talk
Subject: RE: Open Source Shopping Cart (was: Shopping Cart)

i know the damn slackers!

must be getting ready for the upcoming pummeling of the new "flash
killer"...

~Dave the disruptor~
"Some people just don't appreciate how difficult it is to dispense wisdom
and abuse at the same time." 


From: "Bobby Hartsfield" <[EMAIL PROTECTED]>
Sent: Saturday, October 22, 2005 3:07 AM
To: CF-Talk 
Subject: RE: Open Source Shopping Cart (was: Shopping Cart) 

I was hoping those features would be released in the next update for the
current version. C'mon MM... what's the hold up? ;)

:.:.:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com

-Original Message-
From: dave [mailto:[EMAIL PROTECTED] 
Sent: Saturday, October 22, 2005 2:41 AM
To: CF-Talk
Subject: Re: Open Source Shopping Cart (was: Shopping Cart)

by the time its done even rick will be running cfmx 47.1 and it will be an
included feature of cfm along with image manipulation and insta-site
building with mind reading graphic generations and the whole shabang.

~Dave the disruptor~
"Some people just don't appreciate how difficult it is to dispense wisdom
and abuse at the same time." 


From: Will Tomlinson 
Sent: Friday, October 21, 2005 9:53 PM
To: CF-Talk 
Subject: Re: Open Source Shopping Cart (was: Shopping Cart) 

I've actually been workin' on one myself for this very purpose, and for
about 3 months it seems. lol! Kinda tough to move fast with it though. 

Building productmanager.cfc and already have cart.cfc mostly complete. 
Like cw, the app allows unlimited product options, but mine will allow
images for any of those options. So you could have an image for red, black,
blue for instance.

I also even have an affiliatetracker.cfc on a working site that I'll add in.

Will





~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221936
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Starting Open Source Shopping Cart

2005-10-22 Thread Jeff Garza
Sounds pretty good, but might I suggest that all of this start with a well
defined requirements document?  What is the purpose of the project?  What
functionality will be included, broken out by module?  What other aspects of
the project are there to be taken into consideration (Frameworks,
methodologies, etc...).  What constraints are there for the project scope
(must run on shared hosts, use specific mappings, database support, etc...)?

Each one of the items below are pretty hefty systems within their own right.
Tying them all together in a single cohesive interface would be nightmarish
without a good project plan...  Sorry... the CMMI level 5 processes where I
work are beginning to rub off on me...

Cheers,

Jeff

-Original Message-
From: Andy [mailto:[EMAIL PROTECTED] 
Sent: Saturday, October 22, 2005 10:04 AM
To: CF-Talk
Subject: RE: Starting Open Source Shopping Cart

How about "Order Management"?  This encompasses at least:
1.  Products
2.  Catalogs
3.  Shopping Cart
4.  Customers
5.  Orders
6.  Shipping
7.  Invoicing
8.  Billing/Charge Cards






~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221935
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Starting Open Source Shopping Cart

2005-10-22 Thread Andy
How about "Order Management"?  This encompasses at least:
1.  Products
2.  Catalogs
3.  Shopping Cart
4.  Customers
5.  Orders
6.  Shipping
7.  Invoicing
8.  Billing/Charge Cards


-Original Message-
From: Michael T. Tangorre [mailto:[EMAIL PROTECTED] 
Sent: Saturday, October 22, 2005 11:53 AM
To: CF-Talk
Subject: RE: Starting Open Source Shopping Cart

> From: Snake [mailto:[EMAIL PROTECTED] I might suggest 
> cfdeveloper.co.uk U then have everything in one place.

I would also find a broader term to encompass what you guys are doing. To
me, "shopping cart" means something to hold "item(s)" I want to "purchase".
If you get into products catalogs, shipping, emails, products, categories,
carts, etc than I think the term commerce system or something along those
lines is more fitting. 

My $0.02

Mike 






~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221934
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Starting Open Source Shopping Cart

2005-10-22 Thread Michael T. Tangorre
> From: Snake [mailto:[EMAIL PROTECTED] 
> I might suggest cfdeveloper.co.uk
> U then have everything in one place.

I would also find a broader term to encompass what you guys are doing. To
me, "shopping cart" means something to hold "item(s)" I want to "purchase".
If you get into products catalogs, shipping, emails, products, categories,
carts, etc than I think the term commerce system or something along those
lines is more fitting. 

My $0.02

Mike 




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221933
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Starting Open Source Shopping Cart

2005-10-22 Thread Andy
I agree with the forum vs. list.  Any other recommendations? 

-Original Message-
From: Snake [mailto:[EMAIL PROTECTED] 
Sent: Saturday, October 22, 2005 11:45 AM
To: CF-Talk
Subject: RE: Starting Open Source Shopping Cart

I might suggest cfdeveloper.co.uk
U then have everything in one place.

Free webspace, forums, support, CFMX7, MySQl and SQL Server.
I would suggest using the forum to dicuss the project as it is cleaner than
a list as you can put it all in a single thread (or I could give you a
separate topic), where as the list posts will just get lost amongst
everything else and people may miss stuff.

--
Russ 

-Original Message-
From: Andy [mailto:[EMAIL PROTECTED]
Sent: 22 October 2005 17:16
To: CF-Talk
Subject: RE: Starting Open Source Shopping Cart

First decision is which site to use to coordinate our efforts.  Any
advantage to one site versus another?  Once we decide this, I'll open a
project and we can move the dialog to there.

Second step is to agree on some definnitions to help us to move forward.
Let me offer a first cut at some definitions:

Product:  A single item that can be bought or sold

Shopping Cart:  A set of products and order quantities that may or may not
be purchased

Address:  A phyisical location to which order confirmations, invoices,
bills, orders, etc, can be mailed or otherwise delivered to

Order:  A set of products and requested quantities and shipping and billing
information that are to be shipped to a single location

Purchase Order:  A grouping of one or more orders associated with a single
authorization

Let the party begin

Andy








~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221932
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Starting Open Source Shopping Cart

2005-10-22 Thread Snake
I might suggest cfdeveloper.co.uk
U then have everything in one place.

Free webspace, forums, support, CFMX7, MySQl and SQL Server.
I would suggest using the forum to dicuss the project as it is cleaner than
a list as you can put it all in a single thread (or I could give you a
separate topic), where as the list posts will just get lost amongst
everything else and people may miss stuff.

--
Russ 

-Original Message-
From: Andy [mailto:[EMAIL PROTECTED] 
Sent: 22 October 2005 17:16
To: CF-Talk
Subject: RE: Starting Open Source Shopping Cart

First decision is which site to use to coordinate our efforts.  Any
advantage to one site versus another?  Once we decide this, I'll open a
project and we can move the dialog to there.

Second step is to agree on some definnitions to help us to move forward.
Let me offer a first cut at some definitions:

Product:  A single item that can be bought or sold

Shopping Cart:  A set of products and order quantities that may or may not
be purchased

Address:  A phyisical location to which order confirmations, invoices,
bills, orders, etc, can be mailed or otherwise delivered to

Order:  A set of products and requested quantities and shipping and billing
information that are to be shipped to a single location

Purchase Order:  A grouping of one or more orders associated with a single
authorization

Let the party begin

Andy






~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221931
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Sandbox Security, CFC, and cftag Path. Oh My!!

2005-10-22 Thread Snake
-Maybe this is a better question.

-Is it possible to restrict an application to use only certain paths stored
in the Custom Tag Path with or without SandBox Security?
Yes, by specifying which paths are allowed within the sanbox. This is the
purpose of a sanbbox, to specify which paths/files/tags etc an application
has access to.

-Is it possible to restrict an application to use only certain ColdFusion
Mappings with or without SandBox Security?
If you have created a sandbox that allows an application to only access
paths within it's home directory, then it if tries to use a mapping that it
outside of that, it will not work and will give access denied.

--
Russ



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221930
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Starting Open Source Shopping Cart

2005-10-22 Thread Andy
First decision is which site to use to coordinate our efforts.  Any
advantage to one site versus another?  Once we decide this, I'll open a
project and we can move the dialog to there.

Second step is to agree on some definnitions to help us to move forward.
Let me offer a first cut at some definitions:

Product:  A single item that can be bought or sold

Shopping Cart:  A set of products and order quantities that may or may not
be purchased

Address:  A phyisical location to which order confirmations, invoices,
bills, orders, etc, can be mailed or otherwise delivered to

Order:  A set of products and requested quantities and shipping and billing
information that are to be shipped to a single location

Purchase Order:  A grouping of one or more orders associated with a single
authorization

Let the party begin

Andy




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221929
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Sandbox Security, CFC, and cftag Path. Oh My!!

2005-10-22 Thread Troy Simpson
Maybe this is a better question.

Is it possible to restrict an application to use only certain paths
stored in the Custom Tag Path with or without SandBox Security?

Is it possible to restrict an application to use only certain
ColdFusion Mappings with or without SandBox Security?

--
Thanks,
Troy

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221928
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: anyone using mx7 in production?

2005-10-22 Thread Tony
We run it in production for our web based reporting application.

www.navtrak.net.

:) its the shizzit!

tw

On 10/22/05, Sean Corfield <[EMAIL PROTECTED]> wrote:
> On 10/21/05, dan martin <[EMAIL PROTECTED]> wrote:
> > It seems to be quite unstable compared to 5.0. The performance also seems 
> > to be worse, not better. Is anyone using this in a production environment?
>
> macromedia.com was running CFMX 7 at launch and CFMX 7.0.1 at launch.
> It's happily serving up 40,000 concurrent active sessions during peak
> morning traffic and gets a lot of traffic overall.
>
> > I have migrated from 5.0 and am starting to regret that decision. There 
> > seems to be an endless list of problems with performance and tags just not 
> > working.
>
> Contact me off-list with specifics. There certainly are some
> differences between CF5 and later CFMX versions - try running the code
> analyzer in the CF Admin which should highlight some of the main
> potential problems. The stability issues are most likely due to
> configuration / environment issues. I'll see what I can do to help you
> get up and running in a stable manner.
> --
> Sean A Corfield -- http://corfield.org/
> Got frameworks?
>
> "If you're not annoying somebody, you're not really alive."
> -- Margaret Atwood
>
> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221927
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Starting Open Source Shopping Cart

2005-10-22 Thread Will Tomlinson
>OK, it seems like we have a quorum.  How do we get started?  What is the
>next step?

Let's pretend we're all clients - list all the features we'd like with our cart 
and make a decision on which ones we'll go with.

Then the next part will probably be, CHANGING what we all agreed to. 
hahahahahaa!

Will  

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221926
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Custom tag knows coldfusion child tags?

2005-10-22 Thread Johnny Le
This is a long shot, but is there anyway a custom tag can know about coldfusion 
built-in child tags?  For example:






Is there anyway my custom tag  know that it has has child tag called 
 and the child tag has an attribute called startRow with a value of 
10?

Johnny

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221925
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Starting Open Source Shopping Cart

2005-10-22 Thread Andy
 OK, it seems like we have a quorum.  How do we get started?  What is the
next step?




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221924
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Want to hire somebody for some quick XML work

2005-10-22 Thread Michael
I'm looking to hire an XML expert to write code to pull a set of local XML
files into ColdFusion query objects. Please email me directly at
[EMAIL PROTECTED]



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221923
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Any Interest in a Completely Free CFML Calendar?

2005-10-22 Thread Andy Mcshane
I would definately be interested as I am just about to start a project that 
would require me to write my own calendar and this would be a great help! The 
downloads don't work on the site though, is it not yet available?

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221922
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Open Source Shopping Cart (was: Shopping Cart)

2005-10-22 Thread Taco Fleur
MM is no more ...

Taco Fleur - CEO
Pacific Fox http://www.pacificfox.com.au 
an industry leader with commercial IT experience since 1994 .

** Web Design and Development 

** SMS Solutions, including developer API

** Domain Registration, .COM for as low as AUSD$15 a year, .COM.AU for
AUSD$50 two years!

** Seamless Merchant integration

** We endorse PayPal, accept payments online now!



> -Original Message-
> From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] 
> Sent: Saturday, 22 October 2005 5:06 PM
> To: CF-Talk
> Subject: RE: Open Source Shopping Cart (was: Shopping Cart)
> 
> 
> I was hoping those features would be released in the next 
> update for the current version. C'mon MM... what's the hold up? ;)
> 
>  
> ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.
> Bobby Hartsfield
> http://acoderslife.com
> 
> -Original Message-
> From: dave [mailto:[EMAIL PROTECTED] 
> Sent: Saturday, October 22, 2005 2:41 AM
> To: CF-Talk
> Subject: Re: Open Source Shopping Cart (was: Shopping Cart)
> 
> by the time its done even rick will be running cfmx 47.1 and 
> it will be an included feature of cfm along with image 
> manipulation and insta-site building with mind reading 
> graphic generations and the whole shabang.
> 
> ~Dave the disruptor~
> "Some people just don't appreciate how difficult it is to 
> dispense wisdom and abuse at the same time." 
> 
> 
> From: Will Tomlinson <[EMAIL PROTECTED]>
> Sent: Friday, October 21, 2005 9:53 PM
> To: CF-Talk 
> Subject: Re: Open Source Shopping Cart (was: Shopping Cart) 
> 
> I've actually been workin' on one myself for this very 
> purpose, and for about 3 months it seems. lol! Kinda tough to 
> move fast with it though. 
> 
> Building productmanager.cfc and already have cart.cfc mostly 
> complete. 
> Like cw, the app allows unlimited product options, but mine 
> will allow images for any of those options. So you could have 
> an image for red, black, blue for instance.
> 
> I also even have an affiliatetracker.cfc on a working site 
> that I'll add in.
> 
> 
> Will
> 
> 
> 
> 
> 
> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221921
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Open Source Shopping Cart (was: Shopping Cart)

2005-10-22 Thread dave
i know the damn slackers!

must be getting ready for the upcoming pummeling of the new "flash 
killer"...

~Dave the disruptor~
"Some people just don't appreciate how difficult it is to dispense wisdom and 
abuse at the same time." 


From: "Bobby Hartsfield" <[EMAIL PROTECTED]>
Sent: Saturday, October 22, 2005 3:07 AM
To: CF-Talk 
Subject: RE: Open Source Shopping Cart (was: Shopping Cart) 

I was hoping those features would be released in the next update for the
current version. C'mon MM... what's the hold up? ;)

...:.:.:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com

-Original Message-
From: dave [mailto:[EMAIL PROTECTED] 
Sent: Saturday, October 22, 2005 2:41 AM
To: CF-Talk
Subject: Re: Open Source Shopping Cart (was: Shopping Cart)

by the time its done even rick will be running cfmx 47.1 and it will be an
included feature of cfm along with image manipulation and insta-site
building with mind reading graphic generations and the whole shabang.

~Dave the disruptor~
"Some people just don't appreciate how difficult it is to dispense wisdom
and abuse at the same time." 


From: Will Tomlinson 
Sent: Friday, October 21, 2005 9:53 PM
To: CF-Talk 
Subject: Re: Open Source Shopping Cart (was: Shopping Cart) 

I've actually been workin' on one myself for this very purpose, and for
about 3 months it seems. lol! Kinda tough to move fast with it though. 

Building productmanager.cfc and already have cart.cfc mostly complete. 
Like cw, the app allows unlimited product options, but mine will allow
images for any of those options. So you could have an image for red, black,
blue for instance.

I also even have an affiliatetracker.cfc on a working site that I'll add in.

Will



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221920
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Open Source Shopping Cart (was: Shopping Cart)

2005-10-22 Thread Bobby Hartsfield
I was hoping those features would be released in the next update for the
current version. C'mon MM... what's the hold up? ;)

 
..:.:.:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com

-Original Message-
From: dave [mailto:[EMAIL PROTECTED] 
Sent: Saturday, October 22, 2005 2:41 AM
To: CF-Talk
Subject: Re: Open Source Shopping Cart (was: Shopping Cart)

by the time its done even rick will be running cfmx 47.1 and it will be an
included feature of cfm along with image manipulation and insta-site
building with mind reading graphic generations and the whole shabang.

~Dave the disruptor~
"Some people just don't appreciate how difficult it is to dispense wisdom
and abuse at the same time." 


From: Will Tomlinson <[EMAIL PROTECTED]>
Sent: Friday, October 21, 2005 9:53 PM
To: CF-Talk 
Subject: Re: Open Source Shopping Cart (was: Shopping Cart) 

I've actually been workin' on one myself for this very purpose, and for
about 3 months it seems. lol! Kinda tough to move fast with it though. 

Building productmanager.cfc and already have cart.cfc mostly complete. 
Like cw, the app allows unlimited product options, but mine will allow
images for any of those options. So you could have an image for red, black,
blue for instance.

I also even have an affiliatetracker.cfc on a working site that I'll add in.


Will





~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221919
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54