RE: [ACFUG Discuss] Switch to CF8

2008-10-27 Thread Justin Haygood
IE can only upload files up to 2 GB or 4 GB (one of the two...) anything
smaller should work.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Forrest C.
Gilmore
Sent: Friday, October 24, 2008 9:04 PM
To: discussion@acfug.org
Subject: Re: [ACFUG Discuss] Switch to CF8


The thing that has me stumped about the upload, and seems to point to an 
issue with IE, is that Mozilla uploads the large file, using
the exact same CF pages, that have no browser-specific code, without any 
problem.

Forrest C. Gilmore
--
Shane Heasley wrote:
 CF7 and earlier have to load the entire file into memory when doing
 uploads - so with large files you can run into heap problems.  CF8 uses a
 different method.

 It was possibly coincidence that you only noticed the problem using IE?
 Moving to 8 might solve the problem.

 Cheers,

 www.CTek-Media.com


 To deal with my upload issue, my ISP wants to switch my site from CF7 to
 CF8. I am inclined to do so.
 Are there any Gotcha's I need to be aware of?

 Forrest C. Gilmore







 -
 To unsubscribe from this list, manage your profile @ 
 http://www.acfug.org?fa=login.edituserform

 For more info, see http://www.acfug.org/mailinglists
 Archive @ http://www.mail-archive.com/discussion%40acfug.org/
 List hosted by http://www.fusionlink.com
 -





   



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-






-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





RE: [ACFUG Discuss] How does one use cfmail?

2008-03-20 Thread Justin Haygood
Use your ISP (Earthlink)’s mail servers:

 

SMTP Server: smtpauth.earthlink.net
Username: [EMAIL PROTECTED]

Password: yourpassword

 

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Peyton Todd
Sent: Thursday, March 20, 2008 2:52 PM
To: discussion@acfug.org
Subject: RE: [ACFUG Discuss] How does one use cfmail?

 

Yes, Shane, it turned out to be in the CF Administrator logs. And the problem
was the username and password. (Doug, I did read the material at the url you
provided, and now I've read it again; I still don't see anything I don't
already know about other than the password issue, which of course I read
about earlier, but didn't yet know if it would bite me...).

Anyway, I called USA.net and was told that their server is indeed restricted,
and they'll try to co-ordinate the password issue with a third party (a
middleman between them and my client). But in any case it's not clear that
I'll have access to that username and password myself. In testing it from my
home, does anyone know of a mail server that's not restricted in this way?

Or is there some 'local mail server' on my PC? As I mentioned, when I look
into the Mail icon in the Control Panel there are no profiles there. I could
put one there if I knew what to enter...

Peyton

-Original Message- 
From: Dusty Hale 
Sent: Mar 20, 2008 2:03 PM 
To: discussion@acfug.org 
Subject: RE: [ACFUG Discuss] How does one use ? 




It really has nothing to do with the sender's server or the recipient
server. You just need a mail server that will allow your application access
it. A lot of mail servers are set up to not allow that kind of thing or
otherwise we could just be using anyone's mail server in our cfmail tag. 

 

If you do use your own mail server then you may also need to pass in
the username and password for the email your email box. Did you try that? I
believe there are additional attributes username=blabla password=blabla
... give that a try if you haven't already done so. 

 

Dusty

 





From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Peyton
Todd
Sent: 03/20/2008 2:01 PM
To: discussion@acfug.org
Subject: RE: [ACFUG Discuss] How does one use cfmail?

No luck so far. The company which allegedly handles their e-mail
(USA.net) tells me the SMTP server to use is exchange.usa.net, and at least
when I enter that in the 'mail' dialog of the CF Administrator, then put a
check by Verify Mail Server Connection and submit it, it does respond with
Connection Verification Successful. But whether I use
server='exchange.usa.net' in the cfmail tag, or just let it use what's in
the CF Adminstrator, the office manager at my client's site tells me he sees
nothing from me in his e-mail Inbox. (I have my e-mail address in the
from='sender' parm of the tag, and my name in the subject line parm of the
tag). 

If we assume that this means what I was given as the SMTP server name
is incorrect, how do I find the correct name? I'll be at their site tomorrow
and can look on their server, but where would I look? The guy at the USA.net
help desk said the place to look is in the mail icon in Settings -- Control
Panel. He said there should be profiles there with the correct information.
However, when I click the Mail icon there on my own computer just to educate
myself, there are not profiles to be seen. And when I called the office
manager at the client's place of business and asked him to look for the Mail
icon in Settings -- Control Panel on their web server, he said he could find
no such icon in the Control Panel. (I'm almost certain that PC is running
Windows Server 2003, while I'm running XP Professional.)

Also, I'm unclear as to whose server we're talking about here: the
one used by the sender or the one used by the recipient of the e-mail
message?

Peyton

-Original Message- 
From: Dusty Hale 
Sent: Mar 19, 2008 11:28 PM 
To: discussion@acfug.org 
Subject: RE: [ACFUG Discuss] How does one use ? 




Also I assume you will be moving the app to a different
server after you test it locally. Where ever you host it at should be able to
provide you with an SMTP server name to use. If you plan to use the server
attribute rather than configuring it in cf admin, you might consider setting
a variable in your application.cfm file with the value of the server name so
you can easily change it. Or better yet you might do something like:

 

cfif cgi.server_name is localhost

  cfset request.mymailserver = mail.someserver.com

cfelseif cgi.server_name is somedomain.com or
cgi.server_name is www.somedomain.com

cfset request.mymailserver = 

RE: re[4]: [ACFUG Discuss] Using components on different websites

2008-03-18 Thread Justin Haygood
You could use an NTFS hardlink (junction) for this. I don't know the exact
details, but it'd work.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mischa
Uppelschoten ext 10
Sent: Tuesday, March 18, 2008 5:42 PM
To: Web Site
Subject: re[4]: [ACFUG Discuss] Using components on different websites

Well, the fix didn't do it. I'm beginning to think bug.

Problem #1

Create this cfc and point a virtual directory to it. The website root for the
site containing the virtual directory has a different application.cfm than
the website that has this test component in it's physical structure.
cfcomponent displayname=test component
 cffunction name=TestFunction output=No returntype=string
access=remote
   cfreturn application.applicationname
 /cffunction
/cfcomponent

If this component is called directly:
http://site2/Components/test.cfc?method=testfunction
it returns the applicationname for site1, however, when used like so:
cfoutput
 #createobject(Component, site2.Components.Test).TestFunction()#
/cfoutput
it returns site2.  In my opionion the bug is not so much an unexpected
outcome, but more an inconsistent one.



Problem #2

A CFGrid tag on site2 with this bind attribute:
bind=cfc:site2.Components.Test.TestFunction({cfgridpage}...
generates this js in the rendered page:

ColdFusion.Bind.cfcBindHandler(snip...
:_cf_grid_errorhandler,'cfc':'/site1/Components/test.cfc','cfcFunction':'Test
Function' ...snip

On both occasions it appears the cf server traverses the physical path and
uses that to resolve application.cfm which is different behavior than any
other processed file.


At this moment I see no workaround but forking my code :-(



: : :  All,
: : :   I'm running into an issue with CF8 and how components are bound to
form
: : :  controls. Proper execution of one of my components depends on a value
in
: :  the
: : :  session scope.


: Well, supposedly it was a known issue:
: 70775  ColdFusion Ajax components cannot access CFCs in a virtual
directory.
:  per
:
http://kb.adobe.com/selfservice/viewContent.do?externalId=kb403070sliceId=1.
:  Found while researching the url option.

: If the hf does not work, I'll let you guys know. Thanks for your input!
: Mischa.



: -
: Annual Sponsor FigLeaf Software - http://www.figleaf.com

: To unsubscribe from this list, manage your profile @ 
: http://www.acfug.org?fa





Mischa Uppelschoten
The Banker's Exchange, LLC.
4200 Highlands Parkway SE
Suite A
Smyrna, GA 30082-5198

Phone:(404) 605-0100 ext. 10
Fax:(404) 355-7930
Web:www.BankersX.com
Follow this link for Instant Web Chat:
http://www.bankersx.com/Contact/chat.cfm?Queue=MUPPELSCHOTEN
-- Original Message --

FROM:  Mischa Uppelschoten ext 10 [EMAIL PROTECTED]
TO:Web Site discussion@acfug.org
DATE:  Tue, 18 Mar 2008 15:03:03 -0400

SUBJECT:   re[3]: [ACFUG Discuss] Using components on different websites

: :  All,
: :   I'm running into an issue with CF8 and how components are bound to
form
: :  controls. Proper execution of one of my components depends on a value in
:  the
: :  session scope.


Well, supposedly it was a known issue:
70775  ColdFusion Ajax components cannot access CFCs in a virtual
directory. per
http://kb.adobe.com/selfservice/viewContent.do?externalId=kb403070sliceId=1.
Found while researching the url option.

If the hf does not work, I'll let you guys know. Thanks for your input!
Mischa.



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=gin.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-






-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





RE: [ACFUG Discuss] CF and Vista

2007-12-28 Thread Justin Haygood
/s/Ubuntu/openSUSE/ and then the answer would be yes J.

 

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Mason
Sent: Friday, December 28, 2007 12:06 PM
To: discussion@acfug.org
Subject: RE: [ACFUG Discuss] CF and Vista

 

Any of you have experience running Ubuntu on a laptop with the necessary
development tools. I'm currently on XP Pro, but I'm thinking of going the
Linux route on my next laptop. Since Vista is not an option.

 

John Mason
[EMAIL PROTECTED]
770.337.8363

www.FusionLink.com - ColdFusion and Flex hosting
Now offering ColdFusion 8 Enterprise hosting
FREE Subversion hosting

 

 



From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dusty Hale
Sent: Friday, December 28, 2007 11:52 AM
To: discussion@acfug.org
Subject: RE: [ACFUG Discuss] CF and Vista

I guess since I have never been a Mac owner, I just a little scared to make
the commitment to entirely move to a Mac. So the answer to that question
would be FEAR LOL ...

 



From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dean H. Saxe
Sent: Friday, December 28, 2007 11:31 AM
To: discussion@acfug.org
Subject: Re: [ACFUG Discuss] CF and Vista

Why buy 2 when you can have 1 and do both?  Spend the extra cash on a MacBook
Pro with large HD and RAM.  You already have a Windows license... VMWare is
~$70. 

 

 

-dhs





 

Dean H. Saxe, CISSP, CEH

[EMAIL PROTECTED]

If liberty means anything at all, it means the right to tell people what
they do not want to hear. 

-- George Orwell, 1945





 

On Dec 28, 2007, at 11:01 AM, Dusty Hale wrote:





Yea I might just take the entire fork and get two notebooks. A pc and a mac.
I would like to start offering site testing for Mac in the future so it would
be a plus. More tax savings!!! Right on!!!

 

D

 



From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dan Kaufman
Sent: Friday, December 28, 2007 10:46 AM
To: discussion@acfug.org
Subject: RE: [ACFUG Discuss] CF and Vista

That's a good question-of course. And in the interest of full
disclosure...I have decided to Go MAC but have not as of yet consummated
the marriage. A stronger desire to upgrade my photography equipment to Canon
EOS (pro digital) prevailed so I'll be putting off the iMAC purchase off
until late January. But never-the-less, minor delay or not, I do absolutely
intend to move to MAC.  I will keep my Windows equipment so I can
cross-check, browser-check, etc.

The big dilemma that I don't have a clear answer on though is similar to your
question of SQL, is all the other software I'm going to have to
re-purchase. I did get a great recommendation for NeoOffice
(http://www.neooffice.org/neojava/en/features.php). This will at least cover
the Microsoft Office Suite stuff. And CF Eclipse is also available for MAC.

Whatever you do best wishes. I try to always follow Yogi Bera's sage advise:
When I come to a fork in the road... ...I take it.

Dan K.



From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dusty Hale
Sent: Friday, December 28, 2007 7:23 AM
To: discussion@acfug.org
Subject: RE: [ACFUG Discuss] CF and Vista

Just curious if you are able to run SQL and/or Oracle on a Mac?



From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dan Kaufman
Sent: Friday, December 28, 2007 10:15 AM
To: discussion@acfug.org
Subject: RE: [ACFUG Discuss] CF and Vista

I had the very same before the year end dilemma but had after 22 years with
Microsoft have decided to GO MAC-cause it just works. Period.

Best of luck, and I do agree with Dean's comment don't downgrade to
Vista-unless you're into horror stories.

Dan K. 



From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dusty Hale
Sent: Friday, December 28, 2007 6:46 AM
To: discussion@acfug.org
Subject: [ACFUG Discuss] CF and Vista

Hope everyone had a very merry xmas and wishes for a happy new year.

I am going to buy a new notebook before Dec. 31 or at least try to get the
order in before year end in order to spend the money before the 2007 tax year
ends (for a write off). I was debating with myself as to what OS to get (XP
or Vista). I currently use XP Pro. These are my questions if anyone has any
feedback or wants to discuss:

1. Should I stay with XP Pro instead of moving to Vista?

2. Are there issues with using Adobe products like CF, DW, or other tools
with Vista.

3. If I move to Vista is there a particular version I need to do CF work
(home, pro, etc.)

4. If I stay with XP, do I really need the Pro version to do CF work?

Any thoughts are appreciated. 

Dusty


- 
Annual Sponsor - Figleaf Software http://www.figleaf.com  

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform 

For more info, see 

RE: [ACFUG Discuss] Browser and File Upload Filter?

2007-10-09 Thread Justin Haygood
Desktop Linux and OS X use MIME types instead of extensions to determine what
the file type is. They know a text file named bar.jpg is a text file, and a
PNG named foo.txt is a PNG, so unless they made one where you placed the MIME
type in

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Cody Wehunt
Sent: Tuesday, October 09, 2007 7:13 PM
To: discussion@acfug.org
Subject: RE: [ACFUG Discuss] Browser and File Upload Filter?

Ok, thanks for the info.  I was not sure, but for any OS with a gui I don't
know why they wouldn't.

Cody 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Justin Haygood
Sent: Monday, October 08, 2007 8:03 PM
To: discussion@acfug.org
Subject: RE: [ACFUG Discuss] Browser and File Upload Filter?

Most operating systems I use other than Windows don't filter files based on
file type. This includes OS X and GNOME on Linux?

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Cody Wehunt
Sent: Monday, October 08, 2007 8:03 PM
To: discussion@acfug.org
Subject: RE: [ACFUG Discuss] Browser and File Upload Filter?

Thanks that is what i thought.  However i disagree with one point.  Browsers
could Interact with this dialog the same way other applications do; they
just dont.


The terminology of files of type is windows specific but i believe other
oses
support this as well but maybe with a different name. 
-Original Message-
From: Tom McNeer [EMAIL PROTECTED]
To: discussion@acfug.org
Sent: 10/8/2007 5:57 PM
Subject: Re: [ACFUG Discuss] Browser and File Upload Filter?

Cody,

On 10/8/07, Cody Wehunt [EMAIL PROTECTED] wrote:

  All the searching I have done on the net says it is not possible.


True. The dialog box is the native OS file dialog, and the browser cannot
send it information.

Besides, the files of type filter is Windows-specific.

-- 
Thanks,

Tom

Tom McNeer
MediumCool
http://www.mediumcool.com
1735 Johnson Road NE
Atlanta, GA 30306
404.589.0560



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-




-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=gin.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-






-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=gin.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-






-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





RE: [ACFUG Discuss] coldfusion web hosting

2007-04-16 Thread Justin Haygood
Hostingatoz.com has been good to me.. REALLY cheap, and fairly reliable. The
guy who runs it is very willing to help out with the smallest thing to :)

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jeff Osmus
Sent: Monday, April 09, 2007 3:35 PM
To: discussion@acfug.org
Subject: [ACFUG Discuss] coldfusion web hosting

can anyone suggest cheap, reliable coldfusion web hosting for personal use?



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-






-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





RE: [ACFUG Discuss] writing a Content Mngmt system in CF..FAQ or Howto?

2007-04-13 Thread Justin Haygood
 
I actually used Drupal's db schema to port a Drupal/PHP website to run on
ColdFusion
 
Uses alot of tables tho.



From: [EMAIL PROTECTED] on behalf of [EMAIL PROTECTED]
Sent: Thu 4/12/2007 7:17 AM
To: [EMAIL PROTECTED]
Subject: RE: [ACFUG Discuss] writing a Content Mngmt system in CF..FAQ or
Howto?


Your best bet is to download Joomla or Mambo or something similar and just
look at their database tables, do some changes, and see how they're handling
it.  I mean, I hate to say it, but reverse engineering is the way to go here.
Some of these systems are fairly tried and true and you'd be best off just
digging through their schemas, code, etc.
 
Allen

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Ajas
Mohammed
Sent: Wednesday, April 11, 2007 4:56 PM
To: [EMAIL PROTECTED]
Subject: Re: [ACFUG Discuss] writing a Content Mngmt system in
CF..FAQ or Howto?


thanks guys. But my issue is not exactly about Joomla or any CMS for
that matter. Steven, I read that doc on wikipedia before I posted here. What
i want is some sort of diagram or doc explaining what or how the cfm or htm
page gets created by using the info which is iam 100% sure stored somewhere
in the database. So when the user requests index3.cfm, index3.cfm is actually
created using values from the db cols like bgcolor, font and the main
content, I believe is brought from another table and so on. I need details
like these. 

anyone out there with these high level details??? or can you guide me
to a doc/link. 

thanks,

Ajas.


On 4/11/07, Fennell, Mark P. [EMAIL PROTECTED] wrote: 

I'm not sure if this has been mentioned yet, but I've found
Katapult to
be super simple and ridiculously easy to use... So long as
you're
running CF on windows...

http://labs.fusionlink.com/katapult/index.cfm?page=projects/katapult



-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] ] On Behalf Of
Steven Ross
Sent: Wednesday, April 11, 2007 11:15 AM
To: [EMAIL PROTECTED]
Subject: Re: [ACFUG Discuss] writing a Content Mngmt system
in CF..FAQ
or Howto?

for your last question:

http://en.wikipedia.org/wiki/Content_management_system

not sure how Joomla works, they are all pretty much the same 

also there is a manual for joomla:


http://help.joomla.org/images/User_manual/user_manual_v1%200%201_10%2021
%2006.pdf 

that may help.

On 4/11/07, Ajas Mohammed [EMAIL PROTECTED] wrote:
 Hello everyone,
 I came across Joomla which is a
great tool 

 and I have heard of so many content management systems(CMS)
written in

 CF. My question is how the application works because all a
user is
 doing is saving some settings in the application for
example lets say 
 user saves backgroundcolor property to blue, font to arial
etc. Now
 when user views his website page lets say pagetest.cfm,
this page gets

 the property of bgcolor and font from the CMS and displays
it to the 
user. So my assumptions are :
 1) The CF CMS page saves the settings or properties in
database.
 2) on every new page creation from CMS, a new entry is
stored in db
i.e.
 index1.cfm, index2.cfm and so on.

 Then, my question is how does the page code for lets say
index2.cfm
 gets generated? Also, I am not sure how different pages in
the website

 use/get the property bgcolor, font. At runtime, I guess a
query gets 
 info and dynamically generates the pages for the website.

 Can anybody give me a better idea or general overview from
scratch of
 how the application works? What are the things needed to
develop a CMS 

 and so on. I apologize if the question or my explanation is
not clear.

 Thanks
 --
 Ajas Mohammed /
 http://ajashadi.blogspot.com
http://ajashadi.blogspot.com/ 

-
 To unsubscribe from this list, manage your profile @
  

RE: [ACFUG Discuss] cfform bug stuck on variable.

2007-03-23 Thread Justin Haygood
We use the CF_CSV2Query.. works great for importing CSVs.. even REALLY large
ones

 



From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Robert Reil
Sent: Friday, March 23, 2007 4:52 PM
To: discussion@acfug.org
Subject: RE: [ACFUG Discuss] cfform bug stuck on variable.

 

Awesome! I am interested in buying that tool,

But I must ask if you see anything in our form that looks odd...

 

Robert P. Reil

Managing Director,

Motorcyclecarbs.com, Inc.

4292 Country Garden Walk NW

Kennesaw, Ga. 30152

Office 770-974-8851

Fax 770-974-8852

www.motorcyclecarbs.com http://www.motorcyclecarbs.com/ 

 

 



From: Teddy Payne [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 23, 2007 2:45 PM
To: Carbs SalesService
Subject: Re: [ACFUG Discuss] cfform bug stuck on variable.

A quick Google Search:

http://www.masrizal.com/index.cfm?fuseaction=idea.download_detailProductID=c
f_csv2query 
http://www.coldfusionmuse.com/index.cfm/2007/2/5/csv



On 3/23/07, Robert Reil [EMAIL PROTECTED] wrote: 

My Day, My Turn. You knew it was coming. Afterall it is FRIDAY!

 

Studied w/ group last night. Working on building the CSV import tool.

 

Very basic stuff.

 

We got the CFQuery roughed in but are trying to detail it and got stuck in
the Form.

 

We want to call a field from a table and list the entries once.

There are about 4000 rows, but only about a dozen entries.

 

For some reason we can not seem to get or find data in a google search that
uncovers the following:

 

Error:



Variable VEND_NAME is undefined. 

The error occurred in 

C:\Inetpub\wwwroot\intranet.motorcyclecarbs.com\development\vendorupdate1.cfm
: line 25
23 :style = style specification
24 :query = vendordata
25 :value = #Vend_Name#
26 : 
27 :   option value=#vendordata.Vend_Name##vendordata.Vend_Name#/option
-

coldfusion.runtime.UndefinedVariableException: Variable VEND_NAME is
undefined.

---

 

file code shows:

---

!--- Establish parameters for first time through ---
cfparam name=FORM.vendor default=0 
cfquery name=vendordata datasource=carbs 
SELECT sku, name, Vend_Name, Vend_Number, Unit_Measure, Deal_Price, Volume,
UnitRetail, UnitPrice, Description1, Description2
FROM carbs.products
WHERE Vend_Name = cfqueryparam cfsqltype=cf_sql_varchar
value=#FORM.vendor# maxlength=40 /
/cfquery

 

!-- Some stuff removed for clarity ---

 

cfform
cfselect 
   name = vendorname
   style = style specification
   query = vendordata
   value = #Vend_Name#

  option value=#vendordata.Vend_Name##vendordata.Vend_Name#/option
/cfselect
  input type=submit name=Button1 value=Go
/cfform

 

Any ideas what we are overlooking?

 

Robert P. Reil

Managing Director,

Motorcyclecarbs.com, Inc.

4292 Country Garden Walk NW

Kennesaw, Ga. 30152

Office 770-974-8851

Fax 770-974-8852

www.motorcyclecarbs.com http://www.motorcyclecarbs.com/   




-- 
Teddy R. Payne
Adobe Certified ColdFusion MX 7 Developer
Google Talk - [EMAIL PROTECTED]

Atlanta ColdFusion User Group - http://www.acfug.org
Atlanta Flash  Flex User Group - http://www.affug.org 
- 
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform 

For more info, see http://www.acfug.org/mailinglists 
Archive @ http://www.mail-archive.com/discussion%40acfug.org/ 
List hosted by FusionLink http://www.fusionlink.com  
- 




-

To unsubscribe from this list, manage your profile @ 

http://www.acfug.org?fa=login.edituserform



For more info, see http://www.acfug.org/mailinglists

Archive @ http://www.mail-archive.com/discussion%40acfug.org/

List hosted by http://www.fusionlink.com

-




RE: [ACFUG Discuss] CF Eclipse- CVS - Bugzilla

2007-03-19 Thread Justin Haygood
CVS - you can't rename / move files without losing history... ever, its old
and relatively unmaintained

SVN - newer, designed by using the lessons learned from CVS, extremely well
maintained

 



From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Monday, March 19, 2007 3:14 PM
To: discussion@acfug.org
Subject: Re: [ACFUG Discuss] CF Eclipse- CVS - Bugzilla

 


Thanks for the info. My initial inclination was towards SVN, but there are
other groups here using CVS which makes it the path of least resistance.
Selection of software is very political around here, and that is often (read
always) more of a factor than cost, functionality and useability. 

For anyone who has used both CVS and SVN, can you make a good case for one
over the other? 


Shawn Gorrell
Web Development Applications Architect
Federal Reserve Bank - Atlanta
Office (404)  498-8449 



Ajas Mohammed [EMAIL PROTECTED] 
Sent by: [EMAIL PROTECTED] 

03/19/2007 01:36 PM 

Please respond to
discussion@acfug.org

To

discussion@acfug.org 

cc

 

Subject

Re: [ACFUG Discuss] CF Eclipse- CVS - Bugzilla

 

 

 




Hi,
I have replied earlier here about version control, eclipse, dw, bugzilla
and stuff. I will make a quick summary again

We are CF  SQL Server shop and we use DW as the IDE here. Reason -- Lets
you see the design view and I dont think eclipse does that for u. Personally,
I also use Eclipse with CFEclipse as the plugin. As many others have pointed
out, DW is for design  develop vs Eclipse which is for coders. I use Eclipse
when I am working with CFC's. I like the DW search feature when compared to
other editors out there. 

Next is Version Control. We used to use VSS, but at some point we stopped
using it because of some issues and we were out of source control. At that
point, I decided to search and came across CVS, Seapine company's version
control tool,  Subversion. I selected Subversion based of reviews and
installed it. It works like a charm. As for the plugins for DW  Eclipse,
Eclipse has Subclipse and DW has SVN for DW. I had replied earlier over here
and I knew someone would ask it again. So I had posted my response on my blog
here
http://ajashadi.blogspot.com/2007/01/subversion-tortoisesvn-svn-svn-for.html
 . It has helpful links and good info about the plugins for Subversion.

Next is Bugtracking. I started researching on this and I found that there 2
popular tools. One is Trac and other is Bugzilla. Trac integrates well with
Subversion it seems and Bugzilla on other hand needs plugin to integrate with
Subversion. But Bugzilla is very popular and I decided to go with Bugzilla. I
have installed it on my home notebook and it works fine. I have to try out
different things before I go ahead and install it for my team here. 

What else... Let me know if I missed something here. I am going to update my
experience in configuring and using these tools on my blog sometime, So it
could be used as one stop place for IDE, Version Control, Bugtracking for
ColdFusion. 

-- 
Ajas Mohammed /
http://ajashadi.blogspot.com http://ajashadi.blogspot.com/ 


On 3/19/07, Robert Reil  [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED]  wrote: 
What would it take to do the same in DW? 
  

Robert P. Reil 

Managing Director, 

Motorcyclecarbs.com http://motorcyclecarbs.com/ , Inc. 

4292 Country Garden Walk NW 

Kennesaw, Ga. 30152 

Office 770-974-8851 

Fax 770-974-8852 

www.motorcyclecarbs.com http://www.motorcyclecarbs.com/

  



From: Douglas Knudsen [mailto:[EMAIL PROTECTED]
mailto:[EMAIL PROTECTED] ] 
Sent: Monday, March 19, 2007 1:01 PM
To: Carbs SalesService 

Subject: Re: [ACFUG Discuss] CF Eclipse- CVS - Bugzilla 

yes, SubClipse IIRC.  

We use CVS, but not a bug track tool as we have Remedy/ServiceCenter here for
that.  I had pushed it onto the group when SVN was still at a 0.somenumber
release.  I initially had the group using TortoiseCVS, real easy to use and
slips into the windows file explorer.  Now with Eclipse use, can use its
plugin which is even nicer. 

SVN is the latest fad, but CVS is still tried and true, eh?  :)  

DK

On 3/19/07, [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 
[EMAIL PROTECTED] wrote: 

There are Eclipse plugins for SVN aren't there? SVN is Subversion right? 


Shawn Gorrell
Web Development Applications Architect
Federal Reserve Bank - Atlanta
Office (404)  498-8449 

Andrew Powell [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]  
Sent by: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]  

03/19/2007 12:53 PM 

Please respond to
discussion@acfug.org mailto:discussion@acfug.org 

 

To

discussion@acfug.org mailto:discussion@acfug.org  

cc

 

Subject

Re: [ACFUG Discuss] CF Eclipse- CVS - Bugzilla

 

 

 





I would tend to shy away from CVS and look towards SVN.  SVN is a bit  
more robust in that you can deal with more than just text-based files  
(i.e. images, etc).

ap


On Mar 19, 2007, at 12:50 PM, [EMAIL 

RE: [ACFUG Discuss] ColdFusion project lifecycle tools ??? - Configuration Management to Versioning to Testing

2007-03-12 Thread Justin Haygood
Trac supports multiple projects when running inside Apache:

 

1.  Using trac-admin, create a different instance of each project (an
instance is just data)
2.  Set up one of these for each project:

 

Location /trac/project1

SetHandler mod_python

PythonHandler trac.web.modpython_frontend

PythonOption TracEnv /srv/trac/project1

PythonOption TracUriRoot /trac/project1

/Location



Location /trac/project2

SetHandler mod_python

PythonHandler trac.web.modpython_frontend

PythonOption TracEnv /srv/trac/project2

PythonOption TracUriRoot /trac/project2

/Location

 

Trac will be available at http://server/trac/project1 for project1 and
http://server/trac/project2 for project2, both using the same physical
installation, but different data.

 

TracEnv is the instance environment to use, TracUriRoot should match
Location, and PythonHandler tells Python to use Trac, and SetHandler tells
Apache to use mod_python.



From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ajas Mohammed
Sent: Friday, March 09, 2007 12:23 AM
To: discussion@acfug.org
Subject: Re: [ACFUG Discuss] ColdFusion project lifecycle tools ??? -
Configuration Management to Versioning to Testing

 

Sorry guys,  I didnt realise somehow we had 2 threads running parallel for
this topic. So here is my question again

1) Whenever I login to Bugzilla, if i dont do any activity for sometime, and
try to open bugzilla open by doing refresh, I get this error : 


CGI Error


The specified CGI application misbehaved by not returning a complete set of
HTTP headers. The headers it did return are:

Any one seen this error before?

2) as per my last email which was in diff thread in response to Roberts email
about having multiple instances of bugzilla.I was wondering if thats the
case but I dont think it will be like that... it would be nice if someone
who has used bugzilla for multiple projects can clarify this point..I think
it will be a pain to have seperate installs of bugzilla for each project...
what abt Trac for the similar situation? does it support multiple projects? 

Thanks,

Ajas Mohammed.



On 3/7/07, Ajas Mohammed [EMAIL PROTECTED] wrote:

Hi,
 I finally installed Bugzilla on my home notebook last night. My setup
was Winxp with IIS. I made one small mistake and I wasnt able to see the
start page for bugzilla. I will let you know the mistake later. I Fixed that
mistake in lunch hrs and it works fine now. Havent played with it yet. I will
post my experience later. 

By the way, if i have multiple projects/web sites lets say A, B, C, can I
customize bugzilla so that I have 3 different ticketing/faq/bugtracking
systems independent of each other? Is it doable? if yes, then how is it done?
Can anyone share there experience. 

Thanks,

Ajas Mohammed.

 

On 3/1/07, Justin Haygood  [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED]  wrote: 

Regarding being able to pick a user from a dropdown, yes, you just enter
their name. However, each component you specify has a default owner, 
which we use here. Bugzilla also does the same thing actually. You don't
want a project with a thousand authors (read: the type of projects both
software was designed for) to have each author listed in the drop down, 
eh?

Trac is also fairly customizeable via its trac-admin program, and has
useful features:

Milestones (useful for long term projects)
Versions (useful if you one Trac install per project. We don't, so we 
turn this off)
Components (For components of a single project. If you're like us, then
we replace 'components' with products)
Ticket Priorities, which are customizeable. For instance, we replaced 
critical with 'burning' ;)

Each subsection can be disabled if you so desire. Plus, its actually
fairly fast, since its written in python and we use it in Apache 2.2
(whatever comes with OpenSUSE 10.2 ) via mod_python. 

--Justin Haygood

On Thu, 2007-03-01 at 09:40 -0500, Ajas Mohammed wrote:
 Hi,
 Can anyone clarify what Steven pointed out about not being able to
 pick a user from dropdown in demo on their site? Does it work in 
 regular version of trac?

 So far, looking at the responses ppl seem to be very happy using Trac
 since it integrates directly with Subversion. I decided I would give
 ratings/points to Trac/Bugzilla, so anyone who reads this thread can 
 decide which route to take.

 So far I think Trac (6)  Bugzilla(4) and rating is 1-10 , 10 being
 highest.  If anyone has experience using these tools then please share
 your experience with Trac/Bugzilla. 

 Thanks,

 Ajas Mohammed.

 On 2/28/07, Steven Ross [EMAIL PROTECTED]  wrote:
 The only downside to trac is that it doesn't have the detail 
 that
 bugzilla does. There is also the annoyance of not being able
 to pick
 a user from a dropdown. In trac you just enter their name...
 at least 
 that is the way the demo

RE: [ACFUG Discuss] ColdFusion project lifecycle tools ??? - Configuration Management to Versioning to Testing

2007-02-28 Thread Justin Haygood
Yes, we use that here. It doesn't provide authentication, it relies on the
server to use HTTP authorization.

 

http://devserv04/trac/newticket?component=AdWonder%20Flash%20Componentmilest
one=AdWonder%209.0

 

The links look something like that.

 



From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ajas Mohammed
Sent: Wednesday, February 28, 2007 4:42 PM
To: discussion@acfug.org
Subject: Re: [ACFUG Discuss] ColdFusion project lifecycle tools ??? -
Configuration Management to Versioning to Testing

 

1)Does trac provide an interface wherein client can access the Trac link/url
online for our web prodcut lets say www.xyz.com and  allow them to add
bug/issues? or  enter a description or steps to recreate the bug? I read this
feature somewhere. I think its in Seapines Confg Mang System. 

Thanks,
-- 
Ajas Mohammed /
http://ajashadi.blogspot.com http://ajashadi.blogspot.com/  



On 2/28/07, Justin Haygood [EMAIL PROTECTED] wrote:

We here at EyeWonder use Subversion/Trac to host all of our source code.
Seems to be working well for the most part, as it provides wiki, bug
tracking, source browsing, and changeset viewing all in one.

 



From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Douglas Knudsen
Sent: Wednesday, February 28, 2007 1:15 PM
To: discussion@acfug.org
Subject: Re: [ACFUG Discuss] ColdFusion project lifecycle tools ??? -
Configuration Management to Versioning to Testing

 

Although we do not use such a beast yet, I would take a look at Trac.  
http://trac.edgewall.org/

DK

On 2/28/07, Ajas Mohammed [EMAIL PROTECTED] wrote:

Hi,
We are a ColdFusion shop with SQL Server as backend. I have implemented
Subversion here and so far its been good. During the initial search for
version control tools offered in the market, I came across Seapine's SCM
http://seapine.com/products.html   other products offered by them. Has
anyone implemented a complete suite of tools for handling everything in
ColdFusion projects lifecycle from start to finish ie Configuration
Management to Versioning to Testing? 

I was thinking more on the lines of Software Configuration Management  QA
Wizard which are offered by Seapine. Anybody with experience with these
tools? I have seen cfcunit  cfunit but at this point it doesnt look very
natural way of doing things to me. I would prefer the GUI tools, atleast for
now. 

Before I forget, we use Dreamweaver a lot and I use both DW  Eclipse.

Thanks, 

-- 
Ajas Mohammed /
http://ajashadi.blogspot.com 
- 
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform 

For more info, see http://www.acfug.org/mailinglists 
Archive @ http://www.mail-archive.com/discussion%40acfug.org/ 
List hosted by FusionLink http://www.fusionlink.com  
- 




-- 
Douglas Knudsen
http://www.cubicleman.com
this is my signature, like it? 
- 
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform 

For more info, see http://www.acfug.org/mailinglists 
Archive @ http://www.mail-archive.com/discussion%40acfug.org/ 
List hosted by FusionLink http://www.fusionlink.com  
- 


- 
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform 

For more info, see http://www.acfug.org/mailinglists 
Archive @ http://www.mail-archive.com/discussion%40acfug.org/ 
List hosted by FusionLink http://www.fusionlink.com  
- 




-- 
Ajas Mohammed /
http://ajashadi.blogspot.com 
- 
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform 

For more info, see http://www.acfug.org/mailinglists 
Archive @ http://www.mail-archive.com/discussion%40acfug.org/ 
List hosted by FusionLink http://www.fusionlink.com  
- 




-

To unsubscribe from this list, manage your profile @ 

http://www.acfug.org?fa=login.edituserform



For more info, see http://www.acfug.org/mailinglists

Archive @ http://www.mail-archive.com/discussion%40acfug.org/

List hosted by http://www.fusionlink.com

-




RE: [ACFUG Discuss] ColdFusion project lifecycle tools ??? - Configuration Management to Versioning to Testing

2007-02-28 Thread Justin Haygood
1.  Trac - easier installation. Basically take Bugzilla, Mediawiki, LXR,
and throw it into one tool
2.  It's small  lightweight. Our devserv is about as low end as you can
get and it brushes it off.
3.  Native Subversion integration

 

Trac also runs on Windows/IIS, which Bugzilla doesn't support as well.
However, Trac and Subversion both work amazingly well on a Linux/Apache
distro.

 



From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ajas Mohammed
Sent: Wednesday, February 28, 2007 5:17 PM
To: discussion@acfug.org
Subject: Re: [ACFUG Discuss] ColdFusion project lifecycle tools ??? -
Configuration Management to Versioning to Testing

 

Justin, I looked at the link you sent and it reminded me of Bugzilla. So now
the question boils down to 
Bugzilla vs Trac ? 
1)which one would you prefer and why?
2) benefits
3)support for Subversion? i read bugzilla needs another component to interact
with Subversion 

Plz share your experience if you have seen both of them working...

Thanks. This thread is getting interesting.




On 2/28/07, Paul Kenney [EMAIL PROTECTED] wrote:

I have seen cfcunit  cfunit but at this point it doesnt look very
natural way of doing things to me. I would prefer the GUI tools, atleast for
now. 


If it is unit testing you are interested in, there really isn't any way to
write your tests in a GUI fashion. Tests are code, and you have to write them
just like you have to write your application code. The only visual aspect of
unit tests right now would be the test runner application that reports
results back to you once you run the tests. I'm pretty sure this isn't what
you wanted to hear, but sorry, that's just the way it is. 

-- 
Paul Kenney
[EMAIL PROTECTED]
http://www.pjk.us 


- 
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform 

For more info, see http://www.acfug.org/mailinglists 
Archive @ http://www.mail-archive.com/discussion%40acfug.org/ 
List hosted by FusionLink http://www.fusionlink.com  
- 




-- 
Ajas Mohammed /
http://ajashadi.blogspot.com 
- 
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform 

For more info, see http://www.acfug.org/mailinglists 
Archive @ http://www.mail-archive.com/discussion%40acfug.org/ 
List hosted by FusionLink http://www.fusionlink.com  
- 




-

To unsubscribe from this list, manage your profile @ 

http://www.acfug.org?fa=login.edituserform



For more info, see http://www.acfug.org/mailinglists

Archive @ http://www.mail-archive.com/discussion%40acfug.org/

List hosted by http://www.fusionlink.com

-




RE: [ACFUG Discuss] Installed CF 7 multi server config over Server config...Not sure what I have now???

2007-02-12 Thread Justin Haygood
I don't know much, but I can answer a few

 



From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ajas Mohammed
Sent: Monday, February 12, 2007 5:11 PM
To: discussion@acfug.org
Subject: [ACFUG Discuss] Installed CF 7 multi server config over Server
config...Not sure what I have now???

 

Hi,
I had installed CF7 Developer edition with Server configuration (first option
available) and configured it with IIS webserver and everythings fine. Since I
wanted to test some JSP pages and wanted to see if I can host them with CF7,
I started installer for 
CF 7 Developer edition but this time installer disabled Server config(first
option) since its already installed and I selected the second option i.e.
MultiServer Config which installs JRUN 4 during the installation. The
installation went fine and after the completion I think I was asked to run
Jrun Launcher or soemthing like that. 

Anyway, everything went on fine but the question which bothers me now is what
do I have installed in terms of CF server???

1)Do I have seperate instance of CF 7 Server config  a seperate instance of
CF7 as a multiserver? 

2) Can I run some cfm pages with CF7 server and some jsp  cfm pages wtih
mulitserver? Which server is processing my cfm pages? Is it Server
Configuration or JRUN configuration?

3) I read about CF application deployed as war or ear. I know little about
deploying. For example theres a folder structure web-inf etc. Is it saying
that cfm pages can be deployed on J2EE server without CF server or Jrun
installed on that machine/server? Is it doable?

 

You can deploy ColdFusion itself as a J2EE application, but ColdFusion is
still needed. Afaik, ColdFusion itself is always running in a J2EE
configuration, albeit tied to the bundled JRun.



4) any good info or article to get started with knowing the folder structure
for ear or war deploy? basic stuff would really help.

5) can we process jsp pages with cf 7 server installation only i.e first type
of installation??

Thanks

-- 
AjasMohammed /
http://ajashadi.blogspot.com 
- 
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform 

For more info, see http://www.acfug.org/mailinglists 
Archive @ http://www.mail-archive.com/discussion%40acfug.org/ 
List hosted by FusionLink http://www.fusionlink.com  
- 




-

To unsubscribe from this list, manage your profile @ 

http://www.acfug.org?fa=login.edituserform



For more info, see http://www.acfug.org/mailinglists

Archive @ http://www.mail-archive.com/discussion%40acfug.org/

List hosted by http://www.fusionlink.com

-




RE: [ACFUG Discuss] OT: Client talking points

2006-12-07 Thread Justin Haygood
My favorite thing about CF: BlueDragon Server (the free one). Works great for 
those sites that don’t generate enough revenue to justify the cost of 
ColdFusion MX. I use it on my own non-work related websites J (My salary 
doesn’t permit me a personal ColdFusion license for personal websites). Though 
it only does ODBC, ODBC is fine if your traffic levels are really low, almost 
no difference in performance between ODBC and JDBC drivers below a certain 
traffic limit.

 

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Teddy Payne
Sent: Thursday, December 07, 2006 12:10 PM
To: discussion@acfug.org
Subject: Re: [ACFUG Discuss] OT: Client talking points

 

Not to mention, what can't CF plug into?

 

Every major RDBMS is supported with either native drivers or the ability to use 
JDBC drivers that worked rather seamlessly.

 

CF uses every major OS.

 

CF uses every major web server as well.

 

Teddy

 

On 12/7/06, [EMAIL PROTECTED]  [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]  
wrote: 


What about support?  I know CF has a large community as well (AKA free 
support).  What about BlueDragon (if you don't already have an Adobe CF 
server)? 

We had a customer say that they didn't want a calendar in our application 
because it would take to long to program.  Um, cfcalendar anyone? 

mcg 





Clarke Bishop [EMAIL PROTECTED] 
Sent by: [EMAIL PROTECTED] 

12/07/2006 11:25 AM 

Please respond to
discussion@acfug.org

To

discussion@acfug.org 

cc


Subject

RE: [ACFUG Discuss] OT: Client talking points

 







Hi Seth. I am first and foremost a business guy. I'm currently managing 
projects in both .Net and ColdFusion. Of course, both work great and can be 
used to create nearly any application. 
  
Unless there's a compelling reason to use .Net (The project is for Microsoft or 
there's some other religious commitment to .Net), I prefer ColdFusion. The only 
downside is the extra cost to license CF, but this is quickly made up through: 
  
- Faster Development 
- Lower Cost Development 
- In general, CF developers with comparable capabilities are less expensive 
than their .Net counterparts. 
  
I don't have any stats for you, but this is the bottom line: Faster, Cheaper, 
and Just as Good. 
  
   Clarke 



From: [EMAIL PROTECTED] [mailto: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] ] 
On Behalf Of Tepfer, Seth
Sent: Thursday, December 07, 2006 9:05 AM
To: discussion@acfug.org
Subject: [ACFUG Discuss] OT: Client talking points

I have been in the preliminary stages with a client. I had set up an extensive 
project charter and a prototype website. Suddenly this client emails me last 
night and says I think I should be using .net instead of ColdFusion. Let's 
meet on Thursday afternoon and discuss this 
  
I am looking for some quick and dirty speaking points to say why CF over other 
languages (including .net). The obvious ones to me are 
* rapid development 
* ease of maintenance 
* less time in development/maintenance = lower bottom line 
* other? 
* stats to justify this? 
  
I do not want to start a flame war over .net versus CF. I'm just looking for 
speaking points (perhaps with some URLs for reference for some useful 
statistics). Any help would be appreciated. If this has been done previously 
and is archived in an FAQ, please point me in the right direction. I didn't see 
clear case justification at the Adobe/MM site – is it there and I just missed 
it? 
  
Thanks. 
Seth 


- 
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform 
http://www.acfug.org/?fa=login.edituserform/  

For more info, see http://www.acfug.org/mailinglists 
Archive @ http://www.mail-archive.com/discussion%40acfug.org/ 
List hosted by FusionLink http://www.fusionlink.com/  
- 
- 
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform 
http://www.acfug.org/?fa=login.edituserform/ 

For more info, see http://www.acfug.org/mailinglists 
Archive @ http://www.mail-archive.com/discussion%40acfug.org/ 
List hosted by FusionLink http://www.fusionlink.com/  
- 

- 
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform 
http://www.acfug.org/?fa=login.edituserform/ 

For more info, see http://www.acfug.org/mailinglists 
Archive @ http://www.mail-archive.com/discussion%40acfug.org/ 
List hosted by FusionLink http://www.fusionlink.com/  
- 

- 
To unsubscribe from this list, manage your profile @ 

RE: [ACFUG Discuss] cftree

2006-12-06 Thread Justin Haygood
All you need to do is to write out the control using an external
javascript file.. but seeing as this control is created by cf instead of
you...

 

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jeff Howard
Sent: Wednesday, December 06, 2006 3:09 PM
To: discussion@acfug.org
Subject: Re: [ACFUG Discuss] cftree

 

Hey, 

 

Figured I'd give it one more shot.  Anyone have a link to a solution to
have my an ActiveX control (cftree) activitated automatically in IE,
please?  I found a couple googling them but neither worked properly.
 

Thanks,

Jeff

 

 

On 12/6/06, Jeff Howard [EMAIL PROTECTED] wrote: 

Hey there,

 

I have one more question about cftree that I was hoping one of you gurus
could help me decide on.  I was asked to make it so you do not have to
click on the cftree control in IE after loading the page.   I've been
googling about and it seems like there are quite a few solutions out
there.  The 2 that I've tried so far don't work correctly.  So, I ask
you if you have a solution that you use or can point me in the direction
of one that funtions. 

 

Thanks in advance,

Jeff



- 
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform 

For more info, see http://www.acfug.org/mailinglists 
Archive @ http://www.mail-archive.com/discussion%40acfug.org/ 
List hosted by FusionLink http://www.fusionlink.com  
- 




-

To unsubscribe from this list, manage your profile @ 

http://www.acfug.org?fa=login.edituserform



For more info, see http://www.acfug.org/mailinglists

Archive @ http://www.mail-archive.com/discussion%40acfug.org/

List hosted by http://www.fusionlink.com

-




RE: [ACFUG Discuss] Detecting Missing .cfm Templates

2006-12-05 Thread Justin Haygood
I think you can if you're using BlueDragon, not sure if you can with
CFMX.

 

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Clarke
Bishop
Sent: Tuesday, December 05, 2006 5:09 PM
To: discussion@acfug.org
Subject: RE: [ACFUG Discuss] Detecting Missing .cfm Templates

 

No, just anywhere, including a user typing the URL in their browser or
via bookmark.

 

 

 



From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Teddy Payne
Sent: Tuesday, December 05, 2006 5:01 PM
To: discussion@acfug.org
Subject: Re: [ACFUG Discuss] Detecting Missing .cfm Templates

Are the missing templates being called from cfinclude? Or just handling
missing .cfms just anywhere?

 

Teddy
 

On 12/5/06, Clarke Bishop [EMAIL PROTECTED] wrote: 

Is there a way to use Application.cfc's onError or onRequestStart
methods to detect and handle a missing or moved .cfm template? Or is
there another way to do this? 

 

I know there's a missing template section in CF Admin, but I am doing
this on a shared host, and I can't access admin functions. Also, I can't
use any server-level missing template functions. 

 

Thanks for any ideas!

 

   Clarke


- 
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform
http://www.acfug.org/?fa=login.edituserform  

For more info, see http://www.acfug.org/mailinglists 
Archive @ http://www.mail-archive.com/discussion%40acfug.org/ 
List hosted by FusionLink http://www.fusionlink.com/  
- 




-- 
cf_payne /
Adobe Certified ColdFusion MX 7 Developer
Atlanta CFUG (ACFUG): http://www.acfug.org 
- 
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform 

For more info, see http://www.acfug.org/mailinglists 
Archive @ http://www.mail-archive.com/discussion%40acfug.org/ 
List hosted by FusionLink http://www.fusionlink.com  
- 


- 
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform 

For more info, see http://www.acfug.org/mailinglists 
Archive @ http://www.mail-archive.com/discussion%40acfug.org/ 
List hosted by FusionLink http://www.fusionlink.com  
- 




-

To unsubscribe from this list, manage your profile @ 

http://www.acfug.org?fa=login.edituserform



For more info, see http://www.acfug.org/mailinglists

Archive @ http://www.mail-archive.com/discussion%40acfug.org/

List hosted by http://www.fusionlink.com

-




RE: [ACFUG Discuss] MS 2k and CF/JRun and time zone patch

2006-12-02 Thread Justin Haygood
We use Java 5 at work (tho you have to use the JRE that's part of the JDK, 
since the stand alone one only has client' VM, running underneath ColdFusion 
7.0.1 and 7.0.2... very large performance increases in non-database limited 
templates.
 
Justin Haygood
Software Engineer, EyeWonder



From: [EMAIL PROTECTED] on behalf of John Mason
Sent: Sat 12/2/2006 2:32 PM
To: discussion@acfug.org
Subject: RE: [ACFUG Discuss] MS 2k and CF/JRun and time zone patch


If you're switching out your JVM anyway, it might be a great time to play with 
it a bit. Try the more up-to-date jvms from Sun or the BEA Jrockit. Jrockit 
works really well.
 
ColdFusion usually comes out with an older jvm. I don't fully understand why 
they do this, but it's interesting some of the performance increases you can 
get simply changing this out. Of course, be careful becuase Adobe only 
supports a limit numer of jvm versions.
 
John
[EMAIL PROTECTED]



From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Douglas Knudsen
Sent: Saturday, December 02, 2006 1:33 PM
To: discussion@acfug.org
Subject: Re: [ACFUG Discuss] MS 2k and CF/JRun and time zone patch


http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=d2ab4470pss=rss_coldfusion_d2ab4470
ironically this was released yesterday. 

DK


On 11/30/06, Douglas Knudsen [EMAIL PROTECTED] wrote: 

slaps big empty forhead!  doh!  It too is off 5 hours ahead.   stumped 
here.  looking to see if maybe the JVM was supposed to get updated...probably 
so.

 
DK  

 
On 11/30/06, Teddy Payne [EMAIL PROTECTED]  wrote: 

Have you dumped out now() on the servers?  Are they correct?

 
Teddy
 
On 11/30/06, Douglas Knudsen [EMAIL PROTECTED]  wrote: 

they were reset after the patch when the box was 
rebooted.  I'm told the TZ piece was only a registry change too concerning when 
DST starts/stops.

 
DK

 

On 11/30/06, Teddy Payne [EMAIL PROTECTED]  wrote: 

Were the CF isntances brought down during the 
patch?
 
Teddy

 

On 11/30/06, Douglas Knudsen [EMAIL PROTECTED] 
 wrote: 

yeah, but at the OS level its set 
correctly.  AFAIK, nowhere to change this in CF server.

 
DK

 

On 11/30/06, Bryan Tidd [EMAIL 
PROTECTED]  wrote: 

Like its set to GMT instead of GMT-5 
somewhere?

 

Bryan

 





From: Douglas Knudsen [mailto: [EMAIL 
PROTECTED] 
Sent: Thursday, November 30, 2006 10:26 
AM 
To: discussion@acfug.org
Subject: [ACFUG Discuss] MS 2k and 
CF/JRun and time zone patch

 


The great and mighty syadmins here 
patched up our web servers last night.  Apparently one of the patches was for a 
daylight savings time issue.  Now all my CF logs, three different servers and 6 
instances of CF, all are timestamping logs with a time 5 hours off.  Anyone 
else see this? 

-- 
Douglas Knudsen
http://www.cubicleman.com 
http://www.cubicleman.com/ 
this is my signature, like it? 


- 
To unsubscribe from this list, manage 
your profile @ 

http://www.acfug.org?fa=login.edituserform 
http://www.acfug.org/?fa=login.edituserform  

For more info, see 
http://www.acfug.org

RE: [ACFUG Discuss] Frame bustin'

2006-12-01 Thread Justin Haygood
Scary? Nah, just what I’ve been using for years J. Most people probably have 
been using it to…

 

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Teddy Payne
Sent: Friday, December 01, 2006 12:00 PM
To: discussion@acfug.org
Subject: Re: [ACFUG Discuss] Frame bustin'

 

Ok, you three are scary.  That code was all the same.

 

Teddy

 

On 12/1/06, Justin Haygood [EMAIL PROTECTED] wrote: 

If (window.top.location != window.location ) window.top.location = 
window.location;

 

From: [EMAIL PROTECTED] [mailto: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] ] 
On Behalf Of Derrick Peavy
Sent: Friday, December 01, 2006 11:27 AM
To: discussion@acfug.org
Subject: [ACFUG Discuss] Frame bustin'

 

Anyone have a good, working method of frame busting? I ask because the JS i 
have been using does not work when someone uses a web proxy (annon.) to browse 
a site. 

 

Examples that do not work (among many):

 

SCRIPT LANGUAGE=JavaScript

  if (top.frames.length!=0)

   top.location=self.document.location;

/SCRIPT

 

script

if (parent.frames.length  0) {

parent.location.href = self.document.location

}

/script

 

 

When someone uses a service such as  http://www.anonymousproxyworld.com 
http://www.anonymousproxyworld.com/ /  they can strip the javascript but even 
when they don't, it does not work. They frame the page and append the meta data 
with their URL.

 

_ 

Derrick Peavy

Sales and Web Services 

Universal Advertising

Phone: 404-786-5036

Fax: 404-370-0470 

http://www.universaladvertising.com http://www.universaladvertising.com/  

http://www.collegeadvertising.com http://www.collegeadvertising.com/  

http://www.collegeclassifieds.com http://www.collegeclassifieds.com/  

___

 


- 
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform 
http://www.acfug.org/?fa=login.edituserform  

For more info, see http://www.acfug.org/mailinglists 
Archive @ http://www.mail-archive.com/discussion%40acfug.org/ 
List hosted by FusionLink http://www.fusionlink.com/  
- 




-- 
cf_payne /
Adobe Certified ColdFusion MX 7 Developer
Atlanta CFUG (ACFUG): http://www.acfug.org 
- 
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform 

For more info, see http://www.acfug.org/mailinglists 
Archive @ http://www.mail-archive.com/discussion%40acfug.org/ 
List hosted by FusionLink http://www.fusionlink.com  
- 

N�r��yb�X��f�j���鮇���mq

RE: [ACFUG Discuss] First try at a real CF edit

2006-11-30 Thread Justin Haygood
That looks awfully a lot like Java Server Pages to me

 

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dusty Hale
Sent: Thursday, November 30, 2006 2:36 PM
To: discussion@acfug.org
Subject: RE: [ACFUG Discuss] First try at a real CF edit

 

Are you sure it is a CF File? This doesn't look like normal tag based cf
code ...



From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Robert Reil
Sent: Thursday, November 30, 2006 2:00 PM
To: discussion@acfug.org
Subject: [ACFUG Discuss] First try at a real CF edit

 

I am sorry if this question seems so incredibly simple but I am lost as
to what to do.

 

I need to make an edit to a CF file.

 

It has listed in some cells that create an email that is an order sheet
for us from an AbleCommerce cart.

 

[code]

td class=Products
/td

td class=Products$orderItem.getSKU()/td

td class=Products$orderItem.getName()brfont
size=2strong$orderItem.getLineMessage()/strong/font/td

td class=Products align=right
$LocaleUtils.formatCurrency($store,$orderItem.getUnitPrice(),br,true
)/td

td class=Products align=center  

div align=center$orderItem.getQuantity()/div/td

[/code]

 

The question is:

 

That I need the equivalent of a 

td class=Products $orderitem.getPartNumber /td

For the first row to replace the 

td class=Products
/td

 

However when I revise that line of code to:

td class=Products $orderitem.getPartNumber /td

I get:

$orderitem.getPartNumber? inside the cell output.

 

What is happening?

Why is it happening?

How do I fix it?

 

This app is CF on top of a Java app.

I wonder if the $orderitem.getPartNumber is a Java command and I should
be doing this some other way?

 

Any and all help would be appreciated.

 

 

 

Robert P. Reil

Managing Director,

Motorcyclecarbs.com, Inc.

4292 Country Garden Walk NW

Kennesaw, Ga. 30152

Office 770-974-8851

Fax 770-974-8852

www.motorcyclecarbs.com http://www.motorcyclecarbs.com 


- 
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform 

For more info, see http://www.acfug.org/mailinglists 
Archive @ http://www.mail-archive.com/discussion%40acfug.org/ 
List hosted by FusionLink http://www.fusionlink.com  
- 
- 
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform 

For more info, see http://www.acfug.org/mailinglists 
Archive @ http://www.mail-archive.com/discussion%40acfug.org/ 
List hosted by FusionLink http://www.fusionlink.com  
- 




-

To unsubscribe from this list, manage your profile @ 

http://www.acfug.org?fa=login.edituserform



For more info, see http://www.acfug.org/mailinglists

Archive @ http://www.mail-archive.com/discussion%40acfug.org/

List hosted by http://www.fusionlink.com

-




RE: [ACFUG Discuss] First try at a real CF edit

2006-11-30 Thread Justin Haygood
PHP and Perl use object-method() instead of object.method() C# and Java use 
object.method(). Hard to tell, but I’d hazard it’s Java.

 

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Teddy Payne
Sent: Thursday, November 30, 2006 3:20 PM
To: discussion@acfug.org
Subject: Re: [ACFUG Discuss] First try at a real CF edit

 

Justin,

Considering we do not see % above the code or if the HTML is surrounded by a 
tag based JSP declaration, it can look like JSP, Perl and PHP.

 

Robert,

You can tell if a file is ColdFusion by the extension of the file.

 

ColdFusion: .cfm, .cfc, .cfml

PHP: .php

Perl: .pl, .cgi

JSP: .jpg

 

These are the most commin file extensions for the related technologies.

 

Teddy

 

On 11/30/06, Mischa Uppelschoten ext 10 [EMAIL PROTECTED] wrote: 

Just a hunch, try to add (), like so:

$orderitem.getPartNumber()

/m



I am sorry if this question seems so incredibly simple but I am lost as to what 
to do. 

I need to make an edit to a CF file.

It has listed in some cells that create an email that is an order sheet for us 
from an AbleCommerce cart.

[code]
  td class=Products   /td 
  td class=Products$orderItem.getSKU()/td
  td class=Products$orderItem.getName()brfont 
size=2strong$orderItem.getLineMessage()/strong/font/td 
  td class=Products align=right  
$LocaleUtils.formatCurrency($store,$orderItem.getUnitPrice(),br,true)/td
  td class=Products align=center 
  div align=center$orderItem.getQuantity()/div/td
[/code]

The question is:

That I need the equivalent of a
  td class=Products $orderitem.getPartNumber /td 
For the first row to replace the
  td class=Products   /td

However when I revise that line of code to:
  td class=Products $orderitem.getPartNumber /td 
I get:
  $orderitem.getPartNumber? inside the cell output.

What is happening?
Why is it happening?
How do I fix it?

This app is CF on top of a Java app.
I wonder if the $orderitem.getPartNumber is a Java command and I should be 
doing this some other way? 

Any and all help would be appreciated.




Robert P. Reil
Managing Director,
Motorcyclecarbs.com, Inc.
4292 Country Garden Walk NW
Kennesaw, Ga. 30152 
Office 770-974-8851
Fax 770-974-8852
www.motorcyclecarbs.com 



Mischa Uppelschoten
The Banker's Exchange, Inc.
2020 Hills Avenue NW
Atlanta, GA  30318 

Phone:(404) 605-0100 ext. 10
Fax:(404) 355-7930
Web:www.BankersX.com
Follow this link for Instant Web Chat:
http://www.bankersx.com/Contact/chat.cfm?Queue=MUPPELSCHOTEN



-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?falogin.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-







-- 
cf_payne /
Adobe Certified ColdFusion MX 7 Developer
Atlanta CFUG (ACFUG): http://www.acfug.org 
- 
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform 

For more info, see http://www.acfug.org/mailinglists 
Archive @ http://www.mail-archive.com/discussion%40acfug.org/ 
List hosted by FusionLink http://www.fusionlink.com  
- 



RE: [ACFUG Discuss] CF serving platform

2006-11-27 Thread Justin Haygood
My employer uses a mixture of Windows 2000 AS and Windows Server 2003 to serve 
from, though we customize it a bit and run it on top of Java 5.0 (which has 
significant performance increases from the bundled Java, even on older server 
hardware).



From: [EMAIL PROTECTED] on behalf of Alex Pilson
Sent: Mon 11/27/2006 8:11 PM
To: discussion@acfug.org
Subject: [ACFUG Discuss] CF serving platform



I am looking at new opportunities and thought I would pose a question
to the CF community here. What seems to be the platform of choice for
most CF developers to serve from? Windows or Linux? Or something else?

Thank you for your time.
--
--
 Alex Pilson  FlagShip Hosting, LLC
 800.592.6781 http://www.flagshiphosting.com 
http://www.flagshiphosting.com/ 
--


-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform 
http://www.acfug.org/?fa=login.edituserform 

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com http://www.fusionlink.com/ 
-









-

To unsubscribe from this list, manage your profile @ 

http://www.acfug.org?fa=login.edituserform



For more info, see http://www.acfug.org/mailinglists

Archive @ http://www.mail-archive.com/discussion%40acfug.org/

List hosted by http://www.fusionlink.com

-


winmail.dat

RE: [ACFUG Discuss] Replacement needed for ActivEdit

2006-11-02 Thread Justin Haygood
I believe its named after the guy who wrote it
(http://www.fckeditor.net/)

Frederico Caldeira Knabben :)

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Thursday, November 02, 2006 2:27 PM
To: discussion@acfug.org
Subject: RE: [ACFUG Discuss] Replacement needed for ActivEdit

fck - free cool [k]ontent editor?  Just a guess.  Thanks, I'll check it
out.


ed
--
Ed Szwedo

Web Development Team Lead
CSC
E-mail: [EMAIL PROTECTED]
919-541-3955  (Voice)
919-541-3719  (Fax)



 [EMAIL PROTECTED]   
 com
 Sent by:To 
 [EMAIL PROTECTED]  discussion@acfug.org  
 cc 

 11/02/2006 12:41   Subject 
 PM   RE: [ACFUG Discuss] Replacement   
  needed for ActivEdit  

  Please respond
to  
 [EMAIL PROTECTED]   
   .org 






One that's free is called fckeditor - I know it looks bad, but just
google it, it's a fantastic open source javascript solution (and they
have cf examples)

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of
[EMAIL PROTECTED]
Sent: Thursday, November 02, 2006 12:14 PM
To: discussion@acfug.org
Subject: [ACFUG Discuss] Replacement needed for ActivEdit


 We are currently using  a product called ActivEdit as a rich HTML
Editor to replace a textarea in some of our applications.   ActivEdit
allows the user to generate marked up content without knowing HTML.  We
have been having some difficulties with ActivEdit since moving to
ColdFusion 7.  We can't get the Spellchecker to work and are having
trouble with the font dialog.  Troubleshooting the problem with the
ActivSoftware  folks (maker of ActivEdit) has not resolved the problem.

Does anyone use ActivEdit with CF 7?  Can anyone suggest a replacement?

Any input will be appreciated.


ed
--
Ed Szwedo

Web Development Team Lead
CSC
E-mail: [EMAIL PROTECTED]
919-541-3955  (Voice)
919-541-3719  (Fax)



-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-







-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-






-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-