RE: Stoopid forms question

2001-12-10 Thread Pascal Peters

Yes you can, but you can't use the CFOUTPUT. And to beat Ray (who is
still sleeping), you don't need evaluate if you have CF 4.5+.

cfmail ...

CFLOOP LIST=#FORM.FieldNames# INDEX=ThisField
FIELD=#ThisField#, VALUE=#Form[ThisField]#
/CFLOOP

/cfmail

Pascal

-Original Message-
From: Matt Robertson [mailto:[EMAIL PROTECTED]]
Sent: maandag 10 december 2001 2:45
To: CF-Talk
Subject: Stoopid forms question


Can I do this inside of a CFMAIL loop, when coming off of a form
submission?  I'm looking to just drop the code in, and given the nature
of the template it'd be used on it would be a bit of a pain to set up a
test.  Was hoping someone was immediately familiar with running CFLOOPs
inside of CFMAIL.


CFLOOP LIST=#FORM.FieldNames# INDEX=ThisField
CFOUTPUTFIELD=#ThisField#, VALUE=#Evaluate(ThisField)#/CFOUTPUT
/CFLOOP

--Matt Robertson--
MSB Designs, Inc.
http://mysecretbase.com


~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: HTML okay in browser

2001-12-10 Thread Jochem van Dieten

Paul Sinclair wrote:

 Jochem,
 
But when is it chopped off? When cf writes the email to the 
spoolfolder or when dart.dll takes it from the spool folder 
to the SMTP server?
 
 I have no idea. How do I tell? All I know is that somewhere in the
 process chunks of the html code are just being left out.


Send the email in such a way that the SMTP server does not accept it. 
Common ways to do that are to set the To: and the From: both to an 
adress in an untrusted domain (relaying) or a non-excistent domain. The 
email will end up in the mail\undelivr\ folder and you can see what it 
looks like by just opening the file in a text editor.

Jochem
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: SQL Query Statement

2001-12-10 Thread Pascal Peters

WHERE cal_date_start = cfqueryparam cfsqltype=CF_SQL_DATE
value=#CreateODBCDate(Now())#
  AND cal_date_end = cfqueryparam cfsqltype=CF_SQL_DATE
value=#CreateODBCDate(Now())#

This is independent of your DB. You can also use DB  functions to get
the current date

-Original Message-
From: Mark Leder [mailto:[EMAIL PROTECTED]]
Sent: maandag 10 december 2001 6:52
To: CF-Talk
Subject: SQL Query Statement


I have two date fields (cal_date_start and cal_date_end).  The dates are
formatted as mm/dd/.
How would I write a WHERE clause when querying the db to retrieve the
records between the two dates (maybe using the BETWEEN statement)?
It's OK to get records on the actual start date and end date. - So if
today
is 12/09/2001, its OK to retrieve records between 12/07/2001 and
12/16/2001.

In other words:  WHERE DateValue(Now()) BETWEEN cal_date_start AND
cal_date_end.

Thanks,
Mark

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



full text search

2001-12-10 Thread list peters

hi...

i have setup a full text search and have been searching happily...

but not getting errors if i search for 2 words

how can i change this:
WHERE CONTAINS(r.*, '#search#%')

to do and OR search.

something like ??

WHERE CONTAINS(r.*, '
cfloop index=newsearch list=#search# delimiters= 
#newsearch#% OR
/cfloop
')

i cant get it write
and to change from and to or search can i just change the operator from
and to or and vice versa?

thanks
chad


~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: full text search

2001-12-10 Thread Yanton

use LIKE statement
Ex:
WHERE 1=1
cfloop index=newsearch list=#search# delimiters= 
OR (R like '%#newsearch#%')
/cfloop

R is your field in table

yanton
- Original Message - 
From: list peters [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, 10 December, 2001 3:44 PM
Subject: full text search


 hi...
 
 i have setup a full text search and have been searching happily...
 
 but not getting errors if i search for 2 words
 
 how can i change this:
 WHERE CONTAINS(r.*, '#search#%')
 
 to do and OR search.
 
 something like ??
 
 WHERE CONTAINS(r.*, '
 cfloop index=newsearch list=#search# delimiters= 
 #newsearch#% OR
 /cfloop
 ')
 
 i cant get it write
 and to change from and to or search can i just change the operator from
 and to or and vice versa?
 
 thanks
 chad
 
 
 
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT: pop up new browser window after closing the browser

2001-12-10 Thread Mak Wing Lok

hi cfer,

how can i make a new browser window pop up after a
user close the main browser, for example, i want to
pop up a new window to remind the user to logoff from
the application and not to just close the browser
without logoff, how can i do that?




~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



using ASPMail component

2001-12-10 Thread nagraj

Hi  C'Fers,

I am trying to use the aspcomponent given by  www.serverobject.com I written
the following code in my page
It is really driving crazy, The code is as follows,


cfobject TYPE=COM ACTION=CREATE CLASS=SMTPsvg.Mailer name=objMail
cfset success=0
cfset  objMail.FromName=Aenugula Nagaraj
cfset  objMail.FromAddress=[EMAIL PROTECTED]
cfset  objMail.RemoteHost=10.0.0.95
cfset  objMail.AddRecipient(Aenugula Nagaraj,[EMAIL PROTECTED])
cfset objMail.subject=This is test Email
cfset  objMail.bodyText=MailBody
cfset objMail.CharSet=2
cfset objMail.ConfirmRead=true
cfset objMail.ContentType=
cfset objMail.CustomCharSet=ISO-2022
cfset objMail.DateTime=Fri, 02 May 1997 10:53:49 -0500
cfset objMail.Encoding=1
cfset objMail.ReturnReceipt=true
cfset objMail.SMTPLog =c:\smtplog.txt
cfset success=objMail.Sendmail

CWebException: Error: Attempting to call a method as a PROPERTYGET
assignment. For methods with no arguments please use empty parenthesis !
Explanation:

unknown error while executing a tag.

I tried same using CDONTS. I simply worked out with out any problem.

Any Help is really appreciated.

With Regards

Nagaraj.A

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: using ASPMail component

2001-12-10 Thread Jochem van Dieten

nagraj wrote:

 cfset success=objMail.Sendmail
 
 CWebException: Error: Attempting to call a method as a PROPERTYGET
 assignment. For methods with no arguments please use empty parenthesis !


This error message decodes to something like:
cfset success=objMail.Sendmail()
But I am not sure whether that is valid.

Jochewm

~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: using ASPMail component

2001-12-10 Thread Joseph DeVore

If you output objMail.Response you will see what the error is.

It might tell you something like This evaluation component has expired.


Joseph DeVore
VeloxWeb Technologies



-Original Message-
From: nagraj [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 2:49 AM
To: CF-Talk
Subject: using ASPMail component


Hi  C'Fers,

I am trying to use the aspcomponent given by  www.serverobject.com I written
the following code in my page
It is really driving crazy, The code is as follows,


cfobject TYPE=COM ACTION=CREATE CLASS=SMTPsvg.Mailer name=objMail
cfset success=0
cfset  objMail.FromName=Aenugula Nagaraj
cfset  objMail.FromAddress=[EMAIL PROTECTED]
cfset  objMail.RemoteHost=10.0.0.95
cfset  objMail.AddRecipient(Aenugula Nagaraj,[EMAIL PROTECTED])
cfset objMail.subject=This is test Email
cfset  objMail.bodyText=MailBody
cfset objMail.CharSet=2
cfset objMail.ConfirmRead=true
cfset objMail.ContentType=
cfset objMail.CustomCharSet=ISO-2022
cfset objMail.DateTime=Fri, 02 May 1997 10:53:49 -0500
cfset objMail.Encoding=1
cfset objMail.ReturnReceipt=true
cfset objMail.SMTPLog =c:\smtplog.txt
cfset success=objMail.Sendmail

CWebException: Error: Attempting to call a method as a PROPERTYGET
assignment. For methods with no arguments please use empty parenthesis !
Explanation:

unknown error while executing a tag.

I tried same using CDONTS. I simply worked out with out any problem.

Any Help is really appreciated.

With Regards

Nagaraj.A


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: using ASPMail component

2001-12-10 Thread nagraj

Dear Jochewm,

  Thanks Really it worked out.

With Regards
Nagaraj.A


- Original Message -
From: Jochem van Dieten [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, December 10, 2001 4:38 PM
Subject: Re: using ASPMail component


 nagraj wrote:

  cfset success=objMail.Sendmail
 
  CWebException: Error: Attempting to call a method as a PROPERTYGET
  assignment. For methods with no arguments please use empty parenthesis !


 This error message decodes to something like:
 cfset success=objMail.Sendmail()
 But I am not sure whether that is valid.

 Jochewm

 
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: pop up new browser window after closing the browser

2001-12-10 Thread Philip Arnold - ASP

 how can i make a new browser window pop up after a
 user close the main browser, for example, i want to
 pop up a new window to remind the user to logoff from
 the application and not to just close the browser
 without logoff, how can i do that?

This relies on JavaScript, but you want to look at the Body command
onUnload

It works just like onLoad

body onUnload=cleanUp()

Philip Arnold
Technical Director
Certified ColdFusion Developer
ASP Multimedia Limited
T: +44 (0)20 8680 1133
F: +44 (0)20 8686 7911

An ISO9001 registered company.

**
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
**


~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



SOLVED - Scheduler Question

2001-12-10 Thread Bryant Tyson

CFMAIL seems to be the way to go. Thanks for the suggestions guys. I'll
take a look for that log file as well.


~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CFLOCK trouble

2001-12-10 Thread stas

Hello,

I am doing a very simple exclusive lock in a very simple application.

cflock scope=SESSION timeout=15 type=exclusive
 cfset session.orderid = request.saveData.NewID
/cflock

I am getting an error saying ... failed to obtain an exclusive access...

Where should I start looking for the source of this problem? I am doing
similar locks in other parts of this application without any problems.


Thanks!



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Quick Question (J-Run)

2001-12-10 Thread Nathan Stanford

Is Macromedia going to make it where you can have J-Run Studio installed
with ColdFusion Studio and them not interfere with each other?

I would like to play with J-Run some more so I can learn more about it.

Thanks,
Nathan Stanford
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT - FlashCFM.com

2001-12-10 Thread dennis baldwin

Hey Everyone,

I just wanted to let you know that we launched the new FlashCFM site this
past Friday.  Please feel free to come by, check it out, and sign up if
you're interested in Flash and ColdFusion integration.  The new site
contains more tutorials, forums, articles, and we have lots more planned for
the near future...www.flashcfm.com.  If you have any questions or comments
please feel free to contact me off-list.

Thanks,
Dennis
~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CF Flash Connector Urrrr!

2001-12-10 Thread Christian Watt

Has anyone been successful in writing there own code with the connector
yet???  On other forums, have heard of a couple situations, and one I am up
against the wall with myself.  I have a page set up quite similar to the
employee directory example, the on(release) code set is almost identical,
the problem is that the flash function to be called once the dispatcher has
returned data, is run at the same time that the dispatcher send parameters
to the server.  Therefore, when the data is returned and the onSuccess call
is made, nothing happens.  Please, if anyone can offer any assistance, I
would greatly appreciative.  You can contact me either on or off list.  Code
example below!

Christian Watt
Webmaster
SkillPath Seminars
[EMAIL PROTECTED]

In the following example, the message never shows Searching... as soon as
the search button is pressed, you see Got Data - Now populating.
You can connect to 63.117.129.245 to see the code work.

on (release) {
// Create a server dispatcher
if (typeof(serverDispatcher) == undefined)
{
serverDispatcher = new
Object.F2S.Dispatcher(http://63.117.129.245/flashConnector/invoke.cfm;);
}
//resetSearch();
message = Searching...;

// A. Define a result object with success and error callbacks
function SearchResults(){
}
function SearchResult(){
message = Got Data - Now populating;  
this.onSuccess = function (result) 
{
message = Done Searching!;
//numSearchResults = resultSet.seminfoid.length;
// Loop thru results and show them in the
searchResults movie
//for (var i=0; i  numSearchResults; i++) {
//
_root.SemList.addSemTitle(resultSet.seminfoid[i], resultSet.Title[i], i);
//}
/* Dynamically determine the scrollrate of the
scrollWindow
based upon the number of results returned */

//this.resultViewer.calculateScrollRate(numSearchResults);

// Show the results
//_root.gotoAndPlay(showResults);
}

this.onError = function (msg){
// If an error occurs show it.
message = msg;
}
}


// B. Construct a data packet
var data = new Object();
data.zipcode = zipcode;
data.company = SP;

// C. Invoke the service. 
serverDispatcher.call(SemListZip, data, new SearchResult());

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: file storage in the database

2001-12-10 Thread Ryan Emerle

 First and foremost,
 any feedback at all is much appreciated.
 
 Well, I know I phrased my question inappropriately. 
 What I really want to know is:
 If anyone has ever attempted to store files in the
 database (files such as .pdf, any image files, word
 documents, text files, cad drawings, you name it
 files.)  
 
 If anyone has successfully done so.
 
 If anyone made attempts and was either not
 successfull, or could not satisfied with that
 implementation.  
 
 If they were not successful, if it was due to any
 limitations of the db driver or limitations with
 coldfusion.

I did fully understand your query, and was simply being concise.  For the
long answer: 

I have stored files in a DB, and the only issues i have seen are in
ColdFusion's string handling.  That is, attempts to dump files into a
variable have lead to some corruption of the data.  Dumping the file
contents directly in/out of the DB have been successful.  I have not used
this in a multi-user environment due to the harsh performance issues (about
3x slower than the filesystem).  So, i have not accounted for all possible
file content combinations and their interaction with a DB server (or its
drivers).

This is also a widely unsupported means of managing files.  So, it might
occur that after your have stuffed 3000 files into the DB that one
mission-critical file isn't going to work and attempts to find support will
result in a lot of i told ya so responses.

So, in general, i've seen it work, but the performance sucks.  If
performance/scalability isn't your concern, and you don't need guaranteed
file integrity (unless you implement something programmatically), then go
for it.  I personally would seek alternate means of dealing with the
security problem, rather than using an ill-suited tool and counting on not
having more than X simultaneous users.

HTH
-Ryan

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Oracle 1704 errors without SQL statement - client var related?

2001-12-10 Thread mherbene

In the past few days I've started to get some Oracle ORA-01704 (string
literal too long) errors in my application.log file.  These error entries
are NOT accompanied by the SQL statement, which is unusual, and which makes
it hard to diagnose.  I do use client variables, stored in Oracle.  Could
these errors be related to client variable update/insert/select?  Any other
explanation for why the SQL statement does not appear in the log file?

The errors seem to have started since I upgraded from Oracle 8.0.4 to 8.1.7.

CF 4.51 SP2 on windows NT 4 SP 6a.

Thanks


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Page Expired Show stopper..

2001-12-10 Thread Angel Stewart

Hey all!

I am doing some validation, where you go from a data entry page, to an
action page.

If it fails validation, I am popping a window informing them of the
error, and then using a Javascript History(-1) thing to send the user
back to the data entry page.

Now..when it goes back to the data entry page..it is showing Page has
Expired :-\
I want it to just..go back..and show what was there before.

-Gel

~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Page Expired Show stopper..

2001-12-10 Thread Angel Stewart

Hey all!

I am doing some validation, where you go from a data entry page, to an
action page.

If it fails validation, I am popping a window informing them of the
error, and then using a Javascript History(-1) thing to send the user
back to the data entry page.

Now..when it goes back to the data entry page..it is showing Page has
Expired :-\
I want it to just..go back..and show what was there before.

-Gel

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Page Expired Show stopper..

2001-12-10 Thread Philip Arnold - ASP

 I am doing some validation, where you go from a data entry
 page, to an action page.

 If it fails validation, I am popping a window informing them
 of the error, and then using a Javascript History(-1) thing
 to send the user back to the data entry page.

 Now..when it goes back to the data entry page..it is showing
 Page has Expired :-\ I want it to just..go back..and show
 what was there before.

Gel,

The problem here isn't your code, it's to do with the browser settings -
if it's a secure connection then it would HAVE to clear the form out

My suggestion would be to represent the form with the wrong fields
hilighted... Make your form a CFInclude one and then just display the
results again

I personally HATE the Press back and complete the entries you have
missed forms, esp if you have your browser set to refresh the page on
every visit!

Philip Arnold
Technical Director
Certified ColdFusion Developer
ASP Multimedia Limited
T: +44 (0)20 8680 1133
F: +44 (0)20 8686 7911

An ISO9001 registered company.

**
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
**


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



UPS Prices

2001-12-10 Thread Dunwiddie, Bruce

Does anyone have a page working that gets the online ups shipping cost? We
looked at this a while back, and Ben Forta's tag UPSPrice.cfm was working
then, but now that we're ready to put something in place, I'm getting a
Connection Failure error and after looking in to it, it looks like the tag
is on version 3 of ups's system, but their system is now on version 5. I
just went to DevEx and got the latest version of the tag that was modified
Oct 15th of this year, and it's still the version 3. Any help with what
small changes I might need to make to this tag to get it to work now or any
other options that would work would be greatly appreciated and would save me
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Page Expired Show stopper..

2001-12-10 Thread Angel Stewart

Dude!

Is there a way to do this without err..rewriting the entire form?
Because that ain't possible right now :)

It’s a pretty complicated dynamic form. Is there anything extra that I
can add to the form to prevent it from reloading or something like that?

-Gel


-Original Message-
From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]] 

Gel,

The problem here isn't your code, it's to do with the browser settings -
if it's a secure connection then it would HAVE to clear the form out

My suggestion would be to represent the form with the wrong fields
hilighted... Make your form a CFInclude one and then just display the
results again

I personally HATE the Press back and complete the entries you have
missed forms, esp if you have your browser set to refresh the page on
every visit!

Philip Arnold
Technical Director
Certified ColdFusion Developer
ASP Multimedia Limited
T: +44 (0)20 8680 1133
F: +44 (0)20 8686 7911

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: UPS Prices

2001-12-10 Thread Judith Taylor

What errors are you getting? The site where I'm using Forta's tag is returning the 
prices with no problem.

Judith

Dunwiddie, Bruce put into words:
Does anyone have a page working that gets the online ups shipping cost? We
looked at this a while back, and Ben Forta's tag UPSPrice.cfm was working
then, but now that we're ready to put something in place, I'm getting a
Connection Failure error and after looking in to it, it looks like the tag
is on version 3 of ups's system, but their system is now on version 5. I
just went to DevEx and got the latest version of the tag that was modified
Oct 15th of this year, and it's still the version 3. Any help with what
small changes I might need to make to this tag to get it to work now or any
other options that would work would be greatly appreciated and would save me

Judith Taylor
Freelance ColdFusion Developer - Athens, OH
ICQ: 67460562  |  YahooID: lace_n_steel   |   AIM: BlacksmithLace

Friends don't let friends code before coffee.
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



eCommerce Question

2001-12-10 Thread David Brown

We currently use VeriSign PayFlow Link solution.  We currently use it for
our gift shops in three different hospitals.  We would like to add other
eCommerce sites like for donations to some of our foundations.

We are required to have three different payflow accounts since we have 3
different gift shops; each with their own bank accounts.

What I would like to do is write my own eCommerce site and route the money
to the correct bank accounts.  But I would still need a way to verify Credit
Card payments and credits.

Is there way to have the eCommerce site local, verify the credit cards and
route it to different bank accounts without having to have a separate
payflow link type of account setup?



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Page Expired Show stopper..

2001-12-10 Thread C. Hatton Humphrey

Can you submit the data back to the form page... maybe loop through the
formfields list and create a batch of hidden fields with a form to go back
to the entry page, then the pop-up javascript does.

Something along the lines of ...

from name=resubmit action=form1.cfm
  cfoutput
cfloop list=#form.formfields# delimiter=, index=ffield
  input type=hidden name=#ffield# value=#Evaluate(form.#ffield#)#
  /cfoutput
/form

script
  alert('you messed up the form.  please fill it out right');
  document.form.submit();
/script

You'd need to set up your action page to handle the values being passed back
to it, but that's one solution to what you're wanting.

The other idea is to move the validation to the data page using Javascript
and an OnSubmit validation method.

C. Hatton Humphrey, Developer
Fisher, Towne  Associates
716-839-2141 x336
[EMAIL PROTECTED]


 -Original Message-
 From: Angel Stewart [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 10, 2001 10:42 AM
 To: CF-Talk
 Subject: RE: Page Expired Show stopper..


 Dude!

 Is there a way to do this without err..rewriting the entire form?
 Because that ain't possible right now :)

 It’s a pretty complicated dynamic form. Is there anything extra that I
 can add to the form to prevent it from reloading or something like that?

 -Gel


 -Original Message-
 From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]]

 Gel,

 The problem here isn't your code, it's to do with the browser settings -
 if it's a secure connection then it would HAVE to clear the form out

 My suggestion would be to represent the form with the wrong fields
 hilighted... Make your form a CFInclude one and then just display the
 results again

 I personally HATE the Press back and complete the entries you have
 missed forms, esp if you have your browser set to refresh the page on
 every visit!

 Philip Arnold
 Technical Director
 Certified ColdFusion Developer
 ASP Multimedia Limited
 T: +44 (0)20 8680 1133
 F: +44 (0)20 8686 7911

 
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: UPS Prices

2001-12-10 Thread Dunwiddie, Bruce

The FileContent is coming back with Connection Failure and that's it. When
I go to the url in a browser, I get UPSOnLine5%Missing ActionCode%6837. In
the code, there's a line that says CFIF ListFirst(CFHTTP.FileContent, %)
IS UPSOnLine3. I'm kind of at a loss if it's something wrong on my end,
but it really looks to me like this one is on the wrong version by that
upsonline #, and I tried changing the code to look for upsonline5, and I
still get the same. Could you fill in on maybe some other processes I need
to do to use the script. I don't see any login variables or anything...

-Original Message-
From: Judith Taylor [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 9:46 AM
To: CF-Talk
Subject: Re: UPS Prices


What errors are you getting? The site where I'm using Forta's tag is
returning the prices with no problem.

Judith

Dunwiddie, Bruce put into words:
Does anyone have a page working that gets the online ups shipping cost? We
looked at this a while back, and Ben Forta's tag UPSPrice.cfm was working
then, but now that we're ready to put something in place, I'm getting a
Connection Failure error and after looking in to it, it looks like the
tag
is on version 3 of ups's system, but their system is now on version 5. I
just went to DevEx and got the latest version of the tag that was modified
Oct 15th of this year, and it's still the version 3. Any help with what
small changes I might need to make to this tag to get it to work now or any
other options that would work would be greatly appreciated and would save
me

Judith Taylor
Freelance ColdFusion Developer - Athens, OH
ICQ: 67460562  |  YahooID: lace_n_steel   |   AIM: BlacksmithLace

Friends don't let friends code before coffee.

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Page Expired Show stopper..

2001-12-10 Thread Nathan Stanford

What type of validation are you doing?  Maybe you could do the validation
before leaving the page at all.



-Original Message-
From: Angel Stewart [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 9:07 AM
To: CF-Talk
Subject: Page Expired Show stopper..


Hey all!

I am doing some validation, where you go from a data entry page, to an
action page.

If it fails validation, I am popping a window informing them of the
error, and then using a Javascript History(-1) thing to send the user
back to the data entry page.

Now..when it goes back to the data entry page..it is showing Page has
Expired :-\
I want it to just..go back..and show what was there before.

-Gel


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Custom Tag to resize JPG on the fly...

2001-12-10 Thread Shawn Grover

The other problem with this is that you need to know the original 
dimensions
of the image programatically to determine your aspect ratio.  To do 
this
manually for one or two images is fine, but when you have a folder with
thousands of images that are displayed dynamically, then this becomes
extremely time consuming and inefficient.

Is there some way to determine the original dimensions programatically?
I've yet to come across anything that is useful to me - CFX_Image is 
not an
option because I do not control the server in question and cannot 
install
DLLs.  Perhaps there's something simpler I've missed?

Shawn Grover

-Original Message-
From: Garza, Jeff [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 07, 2001 4:04 PM
To: CF-Talk
Subject: RE: Custom Tag to resize JPG on the fly...


The only problem with this is you are still downloading the entire 
image
rather than the smaller thumbnail or whatever.  I think the purpose is 
to
reduce the physical size/resolution for a smaller download.

I've been fiddling with the Perl Image Magick modules for this.  
Running the
commands from cfexecute.  It's slow since I don't know Perl all that
well

Jeff Garza
Lead Developer/Webmaster
Spectrum Astro, Inc.
480.892.8200
[EMAIL PROTECTED]
http://www.spectrumastro.com



-Original Message-
From: Mookie Bear [mailto:[EMAIL PROTECTED]] 
Sent: Friday, December 07, 2001 4:00 PM
To: CF-Talk
Subject: RE: Custom Tag to resize JPG on the fly...


or, you can use proportions to resize the pic :)

for example, i have a pic that is 237 in width and 500 height.

lets say i want to shrink it down to a width of 150.  to get the 
proportionate height (i knew this would come in handy one day since 4th 


grade!) just solve this equation  (237/500) = (150/x)

blah, u should remember this stuff, right? :)







From: Joseph DeVore [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Subject: RE: Custom Tag to resize JPG on the fly...
Date: Fri, 7 Dec 2001 14:26:23 -0800

CFX_IMAGE by Jukka Manner can do this for you.

You can download it from Lewis Sellers website at
http://intrafoundation.com/3rdparty/CFX_Image.zip


Joseph DeVore
VeloxWeb Technologies



-Original Message-
From: Jared Stark [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 07, 2001 2:10 PM
To: CF-Talk
Subject: Custom Tag to resize JPG on the fly...


I have been looking on the Allaire website for a tag to thumbnail JPG
images on the fly.  I've found one that does GIF, but I need JPG.
Anyone know of a good one that they can recommend?  I must admit that
I'm tacaño(AKA cheap), and I'm looking for a free one.

Thanks,
Jared





~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Page Expired Show stopper..

2001-12-10 Thread Shawn Grover

this happens when you disable page caching.

Two options that I know of to get around this:
1) re-enable page caching for the form.  Not always the best solution
though.
2) repost your form information to the original form.  Use the posted info
to populate the 
form with the original values.  This requires some thought to the logic, and
takes some time to implement.

Hope that helps.

Shawn Grover

-Original Message-
From: Angel Stewart [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 8:07 AM
To: CF-Talk
Subject: Page Expired Show stopper..


Hey all!

I am doing some validation, where you go from a data entry page, to an
action page.

If it fails validation, I am popping a window informing them of the
error, and then using a Javascript History(-1) thing to send the user
back to the data entry page.

Now..when it goes back to the data entry page..it is showing Page has
Expired :-\
I want it to just..go back..and show what was there before.

-Gel


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Custom Tag to resize JPG on the fly...

2001-12-10 Thread cftalk

This is my own version of imagesize.cfm, optimized and changed slightly.
I do not use this tag anymore and will be writing a DLL version.
The use of a DLL version is highly recommended, but here you go anyway...

You might want to cache the results it determines if you use this in a production 
environment.
(In a database of some sort most likely)

Please visit http://efflare.com/?hf for other related custom tags.

!---
JPEG is slow, GIF is fast

attributes.file - full path

returns :
Image.Width:  The width of the image
Image.Height: The height of the image
Image.Type:   returns the Precision if JPG, and Gif Type if GIF
---
cfsilent

cffile action=READ file=#Attributes.file# variable=Gif

cfscript
caller.image.error=1;
caller.image.height=0;
caller.image.width=0;
caller.image.type=0;
Type_JPG=ÿØÿà;
Type_GIF=GIF8;
Image.Width=;
Image.Height=;
ImageType=Left(GIF,4);
/cfscript

CFIF ImageType is Type_JPG

 cfset header=
 CFSET p = 1
 CFLOOP Condition=p LE Len(GIF)
  CFSET currentByte=Mid(Gif,p,1)
  CFIF  (ASC(currentByte) is 218) 
CFBREAK
  /CFIF
  CFSET Header=ListAppend(Header,ASC(currentByte))
  CFSET p = p +1
 /cfloop

 cfscript
 p=0;
 if (p is 0) {
 p = Find(255,192,Header);
 }
 if (p is 0) {
 p = Find(255,193,Header);
 }
 if (p is 0) {
 p = Find(255,194,Header);
 }
 if (p is 0) {
 p = Find(255,195,Header);
 }
 // These are probably not used after these first four...
 if (p is 0) {
 p = Find(255,196,Header);
 }
 if (p is 0) {
 p = Find(255,197,Header);
 }
 if (p is 0) {
 p = Find(255,198,Header);
 }
 if (p is 0) {
 p = Find(255,199,Header);
 }
 if (p is 0) {
 p = Find(255,201,Header);
 }
 if (p is 0) {
 p = Find(255,202,Header);
 }
 if (p is 0) {
 p = Find(255,203,Header);
 }
 if (p is 0) {
 p = Find(255,205,Header);
 }
 if (p is 0) {
 p = Find(255,206,Header);
 }
 if (p is 0) {
 p = Find(255,207,Header);
 }

 if (p is 0) {
 writeoutput(!-- image error A --);
 } else {
 Header=Mid(Header,p,Len(Header) - p);
 CompressionType=ListGetAt(Header,2);
 Length=ListGetAt(Header,3) ListGetAt(Header,4);
 Caller.Image.Type=ListGetAt(Header,5);
 Caller.Image.Height=(ListGetAt(Header,6)*256) + ListGetAt(Header,7);
 Caller.Image.Width=(ListGetAt(Header,8)*256) + ListGetAt(Header,9);
 caller.image.error = 0;
 }
 /cfscript

CFELSEIF ImageType is Type_GIF

 cfscript
 Caller.Image.Width=(ASC(Mid(Gif, 7, 1)) + (ASC(Mid(Gif, 8, 1)))*256);
 Caller.Image.Height=(ASC(Mid(Gif, 9, 1)) + (ASC(Mid(Gif, 10, 1)))*256);
 Caller.Image.Type=Mid(Gif, 1, 6);
 caller.image.error = 0;
 /cfscript

CFELSE

 !-- image error B --

/cfif

/cfsilent

~
 Efflare Systems :: http://efflare.com :: [EMAIL PROTECTED]
 cfx ImageCR :: http://efflare.com/products/cfx_imagecr/?sig
 cfx gFont :: http://efflare.com/products/cfx_gfont/?sig

- Original Message -
From: Shawn Grover [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, December 10, 2001 10:21 AM
Subject: RE: Custom Tag to resize JPG on the fly...


 The other problem with this is that you need to know the original
 dimensions
 of the image programatically to determine your aspect ratio.  To do
 this
 manually for one or two images is fine, but when you have a folder with
 thousands of images that are displayed dynamically, then this becomes
 extremely time consuming and inefficient.

 Is there some way to determine the original dimensions programatically?
 I've yet to come across anything that is useful to me - CFX_Image is
 not an
 option because I do not control the server in question and cannot
 install
 DLLs.  Perhaps there's something simpler I've missed?

 Shawn Grover

 -Original Message-
 From: Garza, Jeff [mailto:[EMAIL PROTECTED]]
 Sent: Friday, December 07, 2001 4:04 PM
 To: CF-Talk
 Subject: RE: Custom Tag to resize JPG on the fly...


 The only problem with this is you are still downloading the entire
 image
 rather than the smaller thumbnail or whatever.  I think the purpose is
 to
 reduce the physical size/resolution for a smaller download.

 I've been fiddling with the Perl Image Magick modules for this.
 Running the
 commands from cfexecute.  It's slow since I don't know Perl all that
 well

 Jeff Garza
 Lead Developer/Webmaster
 Spectrum Astro, Inc.
 480.892.8200
 [EMAIL PROTECTED]
 http://www.spectrumastro.com



 -Original Message-
 From: Mookie Bear [mailto:[EMAIL PROTECTED]]
 Sent: Friday, December 07, 2001 4:00 PM
 To: CF-Talk
 Subject: RE: Custom Tag to resize JPG on the fly...


 or, you can use proportions to resize the pic :)

 for example, i have a pic that is 237 in width and 500 height.

 lets say i want to shrink it down to a width of 150.  to get the
 proportionate height (i knew this would come in handy one day since 4th


 grade!) just solve this equation  (237/500) = (150/x)

 blah, u should remember this stuff, right? :)







 From: Joseph DeVore [EMAIL PROTECTED]
 Reply-To: [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Subject: RE: Custom Tag to resize JPG on the 

Re: Hi

2001-12-10 Thread BILLY CRAVENS

Of course, picture 2 scenarios:

1) your application is unsecure, but it only cost you $5000 to develop it
2) your app is locked down, but the extra time to develop made the final
cost $10,000

Now let's say that in both situations the client was going to pay $20,000,
even if they knew that the app was insecure.  As much as I like quality, to
quote the great philosopher, Sean Combs, it's all about the Benjamins
baby.  :- )

Microsoft has no incentive to make secure products (if they wanted to, with
the resources at their disposal, they could make the most secure products on
Earth).  The same people who jump on the MS=bad bandwagon are the same
people who buy MS products.  (Perhaps .NET will change this - short term
subscriptions, as opposed to lifetime liscenses, could be more of a market
catalyst)

---
Billy Cravens

- Original Message -
From: Costas Piliotis [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Friday, December 07, 2001 6:34 PM
Subject: RE: Hi


 Right.  How many developers does microsoft have that it can allocate to
 breaking into its software.  How many hackers are there worldwide?  I'll
bet
 I'm not the first to admit that I've left features in my code as well.
 Sometimes, clients have a way of finding them that I never thought of.


 -Original Message-
 From: Dave Watts [mailto:[EMAIL PROTECTED]]
 Sent: Friday, December 07, 2001 3:04 PM
 To: CF-Talk
 Subject: RE: Hi


  If you were developing a ColdFusion Application that would be
  used by thousands worldwide, and you had pockets as deep as
  Microsoft, how likely would it be that the application could
  be hacked in dozens of different ways? How tough would it be
  to spend a couple of million to have a team of hackers go at
  it, BEFORE you release it? Better yet, release a hacker beta,
  and hand out wads of cash to whoever discovers holes. They
  haven't made it a priority. Expedient release is the priority.

 That's right - expedient release is certainly high on their priority list.
 That's how you get those deep pockets, you know.

 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/
 voice: (202) 797-5496
 fax: (202) 797-5444
 
~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT: WUsage vs. Webtrends

2001-12-10 Thread Phillip Broussard

I am trying to make a decision on who should host our companies website.
One company offers WUsage the other offers Dedicated Webtrends
Reporting. What do you guys think would be the best for reporting? I
don't know if it matters but my boss loves reports, charts and numbers. 

Thanks, 

Phillip Broussard
Tracker Marine Group
417-873-5957


~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: OT: pop up new browser window after closing the browser

2001-12-10 Thread Boardwine, David L.

SCRIPT LANGUAGE=VBScript
Sub MyLogoutWindow()
window.open MyLogout.cfm,
NewWin,width=600,height=200,left=100,top=100,Scrollbars=1,Resizable=1,too
lbar=1
End Sub
/SCRIPT

BODY OnUnload=MyLogoutWindow()


HTH

David L. Boardwine
Senior Analyst
Ohio Department of Development/ITO
Phone (614) 752-4431
[EMAIL PROTECTED]

-Original Message-
From: Jason Green [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 8:12 AM
To: CF-Talk
Subject: Re: OT: pop up new browser window after closing the browser


in the body tag use the onunload event.  then create a javascript function 
that opens a new window so they can logout of the application.



From: Mak Wing Lok [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Subject: OT: pop up new browser window after closing the browser
Date: Mon, 10 Dec 2001 01:25:48 -0800 (PST)

hi cfer,

how can i make a new browser window pop up after a
user close the main browser, for example, i want to
pop up a new window to remind the user to logoff from
the application and not to just close the browser
without logoff, how can i do that?






~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CF single user

2001-12-10 Thread Shawn Regan

Does CF 5 have the single user still? and if so what tags and features are
not open on this licence? I remember the older versions CFMAIL did not work.
How about verity?

Shawn Regan
Applications Developer
pacifictechnologysolutions

~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: eCommerce Question

2001-12-10 Thread Dimo Michailov

David:

As far as I know, the routing of the money is done by Verisign, so you 
don't have control over that. Once you setup your bank account in the 
Verisign Manager, that's where the funds go when Verisign captures the 
credit card number and gets the funds.

What we do here (we also have several departments that use one PayFlow 
Pro) is we get the money in a central bank account and then we route 
them to the departments according to information we store about each 
transaction. I am not sure if this would be applicable in your situation.

Good luck,
Dimo

David Brown wrote:

 We currently use VeriSign PayFlow Link solution.  We currently use it for
 our gift shops in three different hospitals.  We would like to add other
 eCommerce sites like for donations to some of our foundations.
 
 We are required to have three different payflow accounts since we have 3
 different gift shops; each with their own bank accounts.
 
 What I would like to do is write my own eCommerce site and route the money
 to the correct bank accounts.  But I would still need a way to verify Credit
 Card payments and credits.
 
 Is there way to have the eCommerce site local, verify the credit cards and
 route it to different bank accounts without having to have a separate
 payflow link type of account setup?
 
 
 
 
~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF single user

2001-12-10 Thread Raymond Camden

You are probably talking about CFExpress, not CF SIngle User. The single
user version is just that, a full featured version but only for one
user. You get this when you purchase Studio 5 (and maybe
Ultradev+Studio, not 100% sure). CF Express was a completely free
version of the server. There is no 5.0 version.

===
Raymond Camden, Principal Spectra Compliance Engineer for Macromedia

Email: [EMAIL PROTECTED]
Yahoo IM : morpheus

My ally is the Force, and a powerful ally it is. - Yoda 

 -Original Message-
 From: Shawn Regan [mailto:[EMAIL PROTECTED]] 
 Sent: Monday, December 10, 2001 12:00 PM
 To: CF-Talk
 Subject: CF single user
 
 
 Does CF 5 have the single user still? and if so what tags and 
 features are
 not open on this licence? I remember the older versions 
 CFMAIL did not work.
 How about verity?
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF single user

2001-12-10 Thread Shawn Regan

The off the cfstudio cd and what are the restrictions?

Shawn Regan
Applications Developer
pacifictechnologysolutions


-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 9:07 AM
To: CF-Talk
Subject: RE: CF single user


You are probably talking about CFExpress, not CF SIngle User. The single
user version is just that, a full featured version but only for one
user. You get this when you purchase Studio 5 (and maybe
Ultradev+Studio, not 100% sure). CF Express was a completely free
version of the server. There is no 5.0 version.

===
Raymond Camden, Principal Spectra Compliance Engineer for Macromedia

Email: [EMAIL PROTECTED]
Yahoo IM : morpheus

My ally is the Force, and a powerful ally it is. - Yoda 

 -Original Message-
 From: Shawn Regan [mailto:[EMAIL PROTECTED]] 
 Sent: Monday, December 10, 2001 12:00 PM
 To: CF-Talk
 Subject: CF single user
 
 
 Does CF 5 have the single user still? and if so what tags and 
 features are
 not open on this licence? I remember the older versions 
 CFMAIL did not work.
 How about verity?

~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Page Expired Show stopper..

2001-12-10 Thread Don Vawter

My approach would require some recoding so if someone else has a simple
answer go with that.
1. Is it possible to validate with js on the page. This has the advantage of
not re-serving the page.
2. I usually make my action page the same as the form page and set a flag
showform If the form passes validation I set showform to false, if not I
set showform to true. You will have to modify your form fields to poplulate
with initial values also.

- Original Message -
From: Angel Stewart [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, December 10, 2001 8:06 AM
Subject: Page Expired Show stopper..


 Hey all!

 I am doing some validation, where you go from a data entry page, to an
 action page.

 If it fails validation, I am popping a window informing them of the
 error, and then using a Javascript History(-1) thing to send the user
 back to the data entry page.

 Now..when it goes back to the data entry page..it is showing Page has
 Expired :-\
 I want it to just..go back..and show what was there before.

 -Gel

 
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Is CFGRAPH Crap?

2001-12-10 Thread Jay Jennings

Is the new CFGRAPH tag crap or is it just designed for very basic usage?

Specifically, I need to increase the width of the graph -- partly to make
more room for the labels in a vertical bar chart (and partly for
aesthetics).

I've searched the archives and have seen other people asking but no
definitive answer. Should I just bag CFGRAPH or is it a little more robust
than I'm thinking at this point? Thanks.

 jay

 - - - - - - - - - -  - - - - - - - - - - - - - - - -
 Free toys for your kids! Or, earn extra income
 while you play! http://www.FamilyToysAndGames.com
 - - - - - - - - -- - - - - - - - - - - - - - - - - -
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



How do people work around the current limited cfmail

2001-12-10 Thread Larry W. Virden

At least 2-3 times in the past week we've had developers and users scurrying
around trying to figure out why their ColdFusion apps were not delivering
mail, with the final reason being that someone had mistyped one of a
series of email addresses.

I was just curious what others are doing about this sort of thing?
What I sure wish were available was a way to a) get msgs out to all
valid ids, b) bounce errors back to an Errors-To: header.
-- 
Never apply a Star Trek solution to a Babylon 5 problem.
Larry W. Virden mailto:[EMAIL PROTECTED] URL: http://www.purl.org/NET/lvirden/
Even if explicitly stated to the contrary, nothing in this posting should 
be construed as representing my employer's opinions.
~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: UPS Prices

2001-12-10 Thread Dave Hannum

www.Intershipper.com

They have a CF tag written by Desert Raven

Dave


- Original Message -
From: Dunwiddie, Bruce [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, December 10, 2001 10:34 AM
Subject: UPS Prices


Does anyone have a page working that gets the online ups shipping cost? We
looked at this a while back, and Ben Forta's tag UPSPrice.cfm was working
then, but now that we're ready to put something in place, I'm getting a
Connection Failure error and after looking in to it, it looks like the tag
is on version 3 of ups's system, but their system is now on version 5. I
just went to DevEx and got the latest version of the tag that was modified
Oct 15th of this year, and it's still the version 3. Any help with what
small changes I might need to make to this tag to get it to work now or any
other options that would work would be greatly appreciated and would save me

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Is CFGRAPH Crap?

2001-12-10 Thread Angel Stewart

I can't even get the goddamned Java Applet to initialise.

And no one seems to know why (not a good sign), 
at least no one from either here or the CF Community lists...

So I guess unless you REALLY need it..I would Bag it :-\

-Gel


-Original Message-
From: Jay Jennings [mailto:[EMAIL PROTECTED]] 

Is the new CFGRAPH tag crap or is it just designed for very basic usage?

Specifically, I need to increase the width of the graph -- partly to
make more room for the labels in a vertical bar chart (and partly for
aesthetics).

I've searched the archives and have seen other people asking but no
definitive answer. Should I just bag CFGRAPH or is it a little more
robust than I'm thinking at this point? Thanks.

 jay
~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: UPS Prices

2001-12-10 Thread Judith Taylor

Well, I've just downloaded a new copy of the tag, and compared it with the version 
I've been usingthere are no differences in the tag itself.

How are you calling the tag? That may be where the problem is.what is the code 
you're using when you call it?

Trying to help,
Judith

Dunwiddie, Bruce put into words:
The FileContent is coming back with Connection Failure and that's it. When
I go to the url in a browser, I get UPSOnLine5%Missing ActionCode%6837. In
the code, there's a line that says CFIF ListFirst(CFHTTP.FileContent, %)
IS UPSOnLine3. I'm kind of at a loss if it's something wrong on my end,
but it really looks to me like this one is on the wrong version by that
upsonline #, and I tried changing the code to look for upsonline5, and I
still get the same. Could you fill in on maybe some other processes I need
to do to use the script. I don't see any login variables or anything...

Judith Taylor
Freelance ColdFusion Developer - Athens, OH
ICQ: 67460562  |  YahooID: lace_n_steel   |   AIM: BlacksmithLace

Friends don't let friends code before coffee.
~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Is CFGRAPH Crap?

2001-12-10 Thread Zac Belado

 I've searched the archives and have seen other people asking but no
 definitive answer. Should I just bag CFGRAPH or is it a little more robust
 than I'm thinking at this point? Thanks.

If you need something more specialised, or robust, than the cggraph tag
provides then I'd look at writing a custom Flash movie to handle the job.
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



(announce) CF Functions in JavaScript

2001-12-10 Thread Joseph Grossberg

  Ever wished that JavaScript had some of the cool ColdFusion functions 
like ListContainsNoCase, Trim, or the List structure?

Well now it does. This is my initial attempt at porting some CF 
Functions for use on the client-side (in JS). Good for form validation 
and the like.

Feedback, suggestions, criticism are welcome and desired. This is an 
ongoing project and will evolve and improve over time.

http://devex.allaire.com/developer/gallery/info.cfm?ID=FBB57483-ED7F-11D5-83F800508B94F85Amethod=Full

This has been released under the BSD license, so feel free to modify and 
contribute as you wish.

Joe

-- 

|
| Joe Grossberg :: Programmer :: [EMAIL PROTECTED] ::
| Matrix Group Int'l :: www.matrixgroup.net :: 703.838.9777
| Hay is for horses.
|

~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Is CFGRAPH Crap?

2001-12-10 Thread Bruce, Rodney (Contractor)

I agree the CFGRAPH tag is for basic usage.
but it does have WIDTH and HEIGHT attributes, I believe that will change its
size.
at least they work for me.
I only use it for simple pie charts and it works great for this.
To get a little more flexibility for bar charts I use a tag written by BEN
SPENCER ,I down loaded from the gallery.
If you want I can send you the tag off list.

Rodney


-Original Message-
From: Jay Jennings [mailto:[EMAIL PROTECTED]] 

Is the new CFGRAPH tag crap or is it just designed for very basic usage?

Specifically, I need to increase the width of the graph -- partly to
make more room for the labels in a vertical bar chart (and partly for
aesthetics).

I've searched the archives and have seen other people asking but no
definitive answer. Should I just bag CFGRAPH or is it a little more
robust than I'm thinking at this point? Thanks.

 jay

~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: How do people work around the current limited cfmail

2001-12-10 Thread BILLY CRAVENS

have you analyzed your undeliverable folder and your logs?  I've found that
when mail isn't going, it's usually an SMTP config issue.

---
Billy Cravens

- Original Message -
From: Larry W. Virden [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, December 10, 2001 11:17 AM
Subject: How do people work around the current limited cfmail


 At least 2-3 times in the past week we've had developers and users
scurrying
 around trying to figure out why their ColdFusion apps were not delivering
 mail, with the final reason being that someone had mistyped one of a
 series of email addresses.

 I was just curious what others are doing about this sort of thing?
 What I sure wish were available was a way to a) get msgs out to all
 valid ids, b) bounce errors back to an Errors-To: header.
 --
 Never apply a Star Trek solution to a Babylon 5 problem.
 Larry W. Virden mailto:[EMAIL PROTECTED] URL:
http://www.purl.org/NET/lvirden/
 Even if explicitly stated to the contrary, nothing in this posting should
 be construed as representing my employer's opinions.
 
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Setting up Advanced Security on Win2K

2001-12-10 Thread Brunt, Michael

Reed, my experience with Advanced Security is not very positive and I think
your point re Neo and it's Siteminders apparent none use is a good one.  I
know that someone re-wrote these facilities for Advanced Security for
Spectra in a non-Siteminder environment the URL of the current Spectra open
source project is http://spectrasource.macromedia.com/information.cfm you
might find something there.

As an alternative and if you use Fusebox there are a couple of tags I have
used (app_secure and app_logon.cfm) that work really well in Fusebox.  Hope
this helps.

Mike Brunt
Sempra Energy
213.244.5226

My software never has bugs. It just develops random features. 


-Original Message-
From: Reed Powell [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 5:41 AM
To: CF-Talk
Subject: Setting up Advanced Security on Win2K


The server that's been hosting my intranet site is finally
moving from NT40/WebsitePro to Win2k/IIS.  For user
authentication against the NT domain, I've been using the
Intranet Hosting Toolkit's CFX_USERS function, which has
worked flawlessly.  However, in testing on the new Win2k/IIS
server, I cannot get it to work at all, and the software is
now what its author refers to as abandonware, so it's
probably a good idea to move on to something with support.

It looks like Advanced Security is the ticket, now that I
have more control politically over how the server is being
setup and configured. I don't really need all the policy
capabilities that come with Advanced Security, just to be
able to use CFAUTHORIZE to get a yes/no on a specific
username/password combination from the NT domain.

I've read everything I can find, including notes from both
DevCon2000 and DevCon2001, and it doesn't look too hard to
setup. The Allaire docs talk about being able to use an
Access database for storing the policy data, which is good
because we are not (yet) running SQL server (that's another
dream for another day and another server).  Which is also
where the problems start.

When I start configuring Advanced Security, the first thing
that the Wizard wants is the info on the SQL database that
has already been created.  No options I can find for using
an Access database.  How do I do this?

I noticed a note in the Allaire docs about problems with
SiteMinder and the use of an Access database for the
Advanced Security policies.  What I cannot find much written
on is just when in the scheme of things SiteMinder gets
involved.  If all I do is to setup a single policy on a
single (dummy) resource, so that I can use CFAUTHORIZE as
mentioned above, does SiteMinder get involved?  Can I
eliminate the involvement of SiteMinder completely (since it
is going away in Neo anyway, why start using it now?!)?

thanks everyone!
-reed

FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Anyone else get solicited? FW: CFX ImageCR

2001-12-10 Thread Kelly Matthews

Did anyone else get solicited by these people? They snatched my email
address off CF-Talk... not appreciated... really hate it when people do
that!

-Original Message-
From: Efflare Systems [mailto:[EMAIL PROTECTED]] 
Sent: Sunday, December 09, 2001 11:47 AM
To: [EMAIL PROTECTED]
Subject: CFX ImageCR


Based on your input on the cf-talk mailing list, I thought you might be
interested in knowing about the recent public release of cfx ImageCR.

http://efflare.com/products/cfx_imagecr/?12

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF or Spectra vs. Broadvision

2001-12-10 Thread Brunt, Michael

Jon, whilst working for Allaire I handled several Spectra projects for
clients I found it to be an amazing product which in many ways was under
priced (in comparison to way over-priced products-services like Broadvision,
Vignette etc).  The pricing point for Spectra seemed to generate an aura of
disbelief that it could not be a serious content-management product in
comparison, which it was and is. Spectra is a little tricky to set up mainly
due to Advanced Security which as I mentioned in a previous thread has now
been re written if you do not want to use Siteminder.  If you do not have it
here is the url for the Spectra Community Source Project.
http://spectrasource.macromedia.com/information.cfm 

Mike Brunt
Sempra Energy
213.244.5226

My software never has bugs. It just develops random features. 


-Original Message-
From: Jon Hall [mailto:[EMAIL PROTECTED]]
Sent: Sunday, December 09, 2001 4:53 PM
To: CF-Talk
Subject: Re: CF or Spectra vs. Broadvision


I don't know why any programmer would choose Broadvision. It seems like 
one of those way overpriced products that is usually sold to the exec's 
not IT departments. I dont have any real  experience with Broadvision 
though, but this guy definately has an opinion. Perhaps you could shoot 
an email off to him for details.

http://www.peterme.com/bvsucks/

jon

John Allred wrote:

I have a new job in the Operations division of a large corporation.
Prior to my arrival, my group developed thousands of static pages for
store managers and district managers using Dreamweaver. We are the
conduit for directions coming out of the corporate office, and the
corporation decided within the last year to personalize the content,
based on job description. The idea was to simplify very complex pages
(suffering extreme information overload) into channels, where people see
what they need to see, without the clutter. District Managers should be
able to view the pages their store managers and the stores' department
managers see. In Operations, we should be able to create content and
specify who sees it and for how long.

The IT department was asked to come up with a solution over a year ago.
They waited till almost the last minute, and they're now telling us that
they've selected Broadvision. They also tell us that they can't
implement our designs (which we think are very effective, BTW). I know
nothing of Broadvision, so I don't know whether the problem lies with
Broadvision or their limited understanding of its capabilities.

Having said all that, I know that with a small group of CF programmers,
it would be possible to do this project right, with all of the features
we're being told can't be done by the IT folks.

Could any of you with Broadvision knowledge or experience offer some
insights on this situation? This is an intranet that handles above a
million hits a day. Is Broadvision the tool? Or is there good info out
there that I could use to influence management on my side of the fence?
Is Spectra a viable alternative to Broadvision? Sorry. I don't know
which specific Broadvision product they're using.



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Anyone else get solicited? FW: CFX ImageCR

2001-12-10 Thread Will Swain

No. but i agree that that is pretty poor form, and i wouldn't be happy if
they had emailed this to me.

will


-Original Message-
From: Kelly Matthews [mailto:[EMAIL PROTECTED]]
Sent: 10 December 2001 18:11
To: CF-Talk
Subject: Anyone else get solicited? FW: CFX ImageCR


Did anyone else get solicited by these people? They snatched my email
address off CF-Talk... not appreciated... really hate it when people do
that!

-Original Message-
From: Efflare Systems [mailto:[EMAIL PROTECTED]]
Sent: Sunday, December 09, 2001 11:47 AM
To: [EMAIL PROTECTED]
Subject: CFX ImageCR


Based on your input on the cf-talk mailing list, I thought you might be
interested in knowing about the recent public release of cfx ImageCR.

http://efflare.com/products/cfx_imagecr/?12


~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Anyone else get solicited? FW: CFX ImageCR

2001-12-10 Thread Carlisle, Eric

If they subscribe to this list, they should probably get booted.
Of course, other people can just take it from web archives of CF-TALK
(without subscribing to the list).

:P~
EC

-Original Message-
From: Will Swain [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 1:15 PM
To: CF-Talk
Subject: RE: Anyone else get solicited? FW: CFX ImageCR


No. but i agree that that is pretty poor form, and i wouldn't be happy if
they had emailed this to me.

will


-Original Message-
From: Kelly Matthews [mailto:[EMAIL PROTECTED]]
Sent: 10 December 2001 18:11
To: CF-Talk
Subject: Anyone else get solicited? FW: CFX ImageCR


Did anyone else get solicited by these people? They snatched my email
address off CF-Talk... not appreciated... really hate it when people do
that!

-Original Message-
From: Efflare Systems [mailto:[EMAIL PROTECTED]]
Sent: Sunday, December 09, 2001 11:47 AM
To: [EMAIL PROTECTED]
Subject: CFX ImageCR


Based on your input on the cf-talk mailing list, I thought you might be
interested in knowing about the recent public release of cfx ImageCR.

http://efflare.com/products/cfx_imagecr/?12



~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



How Do I Create Dynamic Arrays to Populate Select Boxes?

2001-12-10 Thread James Taavon

I want to create an application that allows the end-user to first select a
category from select box A, which entails populates select box B with that
category's data drawn from the database. In other words, when John Doe
selects Employment from select box A, select box B populates with data
taken from several fields through an OnSelect function within select box A.
I would like this application to occur on the same page.

I figure I'll have to create an array which collects data corresponding to
what is selected in select box A, and this is where I'm lost.

Any help would be appreciated.
~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: How Do I Create Dynamic Arrays to Populate Select Boxes?

2001-12-10 Thread Christopher Olive

look into Nate Weiss' TwoSelectedRelated tag on the allaire development
gallery.

christopher olive, cto, vp of web development
cresco technologies, inc
410.825.0383
http://www.crescotech.com


-Original Message-
From: James Taavon [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 1:29 PM
To: CF-Talk
Subject: How Do I Create Dynamic Arrays to Populate Select Boxes?


I want to create an application that allows the end-user to first select
a
category from select box A, which entails populates select box B with
that
category's data drawn from the database. In other words, when John Doe
selects Employment from select box A, select box B populates with data
taken from several fields through an OnSelect function within select box
A.
I would like this application to occur on the same page.

I figure I'll have to create an array which collects data corresponding
to
what is selected in select box A, and this is where I'm lost.

Any help would be appreciated.

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Anyone else get solicited? FW: CFX ImageCR

2001-12-10 Thread C. Hatton Humphrey

Just an interesting side-comment, they seem to be on a slow(er) connection
and all their mouse over JavaScript was iffy at best.

** Disclaimer: Slow as related to my connection (1/2 a T-1) and Iffy is
defined as I moused-over and it took a second for the mouse over to work and
in one or two cases I got a broken image.

Also, every page ended in .html... I know that can be head faked but it
was odd to see a site offering CF products with every page ending in .html.

Hatton


 -Original Message-
 From: Kelly Matthews [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 10, 2001 1:11 PM
 To: CF-Talk
 Subject: Anyone else get solicited? FW: CFX ImageCR


 Did anyone else get solicited by these people? They snatched my email
 address off CF-Talk... not appreciated... really hate it when people do
 that!

 -Original Message-
 From: Efflare Systems [mailto:[EMAIL PROTECTED]]
 Sent: Sunday, December 09, 2001 11:47 AM
 To: [EMAIL PROTECTED]
 Subject: CFX ImageCR


 Based on your input on the cf-talk mailing list, I thought you might be
 interested in knowing about the recent public release of cfx ImageCR.

 http://efflare.com/products/cfx_imagecr/?12

 
~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: How do people work around the current limited cfmail

2001-12-10 Thread Larry W. Virden

 have you analyzed your undeliverable folder and your logs?  I've found that
 when mail isn't going, it's usually an SMTP config issue.

Actually, the two most recent cases were places where users had typed
in incorrect email addresses.

The bottom line is that I would MUCH rather the person responsible for
a CF app get the failures and deal with them than me.

And I would prefer NOT to give everyone access to all the undelivered msgs -
there might be something confidential in a msg.
-- 
Never apply a Star Trek solution to a Babylon 5 problem.
Larry W. Virden mailto:[EMAIL PROTECTED] URL: http://www.purl.org/NET/lvirden/
Even if explicitly stated to the contrary, nothing in this posting should 
be construed as representing my employer's opinions.
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: How do people work around the current limited cfmail

2001-12-10 Thread Tony Gruen

We are also having serious trouble with CFMAIL. NO mail is being delivered
and NO files are being put into the UNDELIVR folder. Restarting does not
help. CF 4.5 / CF5, IIS5  IIS4 with all O/S service packs current.

We can see the errors on the mail server, but no files on the web server.
Does anyone have any input on this? I want an alternativne to CFMAIL, anyone
have input on their experience with any in particular?

Tony Gruen


-Original Message-
From: Larry W. Virden [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 9:18 AM
To: CF-Talk
Subject: How do people work around the current limited cfmail


At least 2-3 times in the past week we've had developers and users scurrying
around trying to figure out why their ColdFusion apps were not delivering
mail, with the final reason being that someone had mistyped one of a
series of email addresses.

I was just curious what others are doing about this sort of thing?
What I sure wish were available was a way to a) get msgs out to all
valid ids, b) bounce errors back to an Errors-To: header.
--
Never apply a Star Trek solution to a Babylon 5 problem.
Larry W. Virden mailto:[EMAIL PROTECTED] URL:
http://www.purl.org/NET/lvirden/
Even if explicitly stated to the contrary, nothing in this posting should
be construed as representing my employer's opinions.

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: How do people work around the current limited cfmail

2001-12-10 Thread BILLY CRAVENS

Easily done - CFSCHEDULE  a task that checks the undeliverable folder, loops
through the files, and emails them to whoever, and then deletes them from
the folder

---
Billy Cravens

- Original Message -
From: Larry W. Virden [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, December 10, 2001 12:32 PM
Subject: Re: How do people work around the current limited cfmail


  have you analyzed your undeliverable folder and your logs?  I've found
that
  when mail isn't going, it's usually an SMTP config issue.

 Actually, the two most recent cases were places where users had typed
 in incorrect email addresses.

 The bottom line is that I would MUCH rather the person responsible for
 a CF app get the failures and deal with them than me.

 And I would prefer NOT to give everyone access to all the undelivered
msgs -
 there might be something confidential in a msg.
 --
 Never apply a Star Trek solution to a Babylon 5 problem.
 Larry W. Virden mailto:[EMAIL PROTECTED] URL:
http://www.purl.org/NET/lvirden/
 Even if explicitly stated to the contrary, nothing in this posting should
 be construed as representing my employer's opinions.
 
~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Anyone else get solicited? FW: CFX ImageCR

2001-12-10 Thread BILLY CRAVENS

Looks like a decent product - too bad they just ruined their credibility by
using SPAM

Perhaps they can get in good graces by posting in a message to the list,
typed 100 times:
I will not resort to pathetic, slimy marketing tactics  :-)

---
Billy Cravens

- Original Message -
From: Will Swain [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, December 10, 2001 12:14 PM
Subject: RE: Anyone else get solicited? FW: CFX ImageCR


 No. but i agree that that is pretty poor form, and i wouldn't be happy if
 they had emailed this to me.

 will


 -Original Message-
 From: Kelly Matthews [mailto:[EMAIL PROTECTED]]
 Sent: 10 December 2001 18:11
 To: CF-Talk
 Subject: Anyone else get solicited? FW: CFX ImageCR


 Did anyone else get solicited by these people? They snatched my email
 address off CF-Talk... not appreciated... really hate it when people do
 that!

 -Original Message-
 From: Efflare Systems [mailto:[EMAIL PROTECTED]]
 Sent: Sunday, December 09, 2001 11:47 AM
 To: [EMAIL PROTECTED]
 Subject: CFX ImageCR


 Based on your input on the cf-talk mailing list, I thought you might be
 interested in knowing about the recent public release of cfx ImageCR.

 http://efflare.com/products/cfx_imagecr/?12


 
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: eCommerce Question

2001-12-10 Thread David Brown

Good idea, I will check to see if we can.
- Original Message -
From: Dimo Michailov [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, December 10, 2001 11:54 AM
Subject: Re: eCommerce Question


 David:

 As far as I know, the routing of the money is done by Verisign, so you
 don't have control over that. Once you setup your bank account in the
 Verisign Manager, that's where the funds go when Verisign captures the
 credit card number and gets the funds.

 What we do here (we also have several departments that use one PayFlow
 Pro) is we get the money in a central bank account and then we route
 them to the departments according to information we store about each
 transaction. I am not sure if this would be applicable in your situation.

 Good luck,
 Dimo

 David Brown wrote:

  We currently use VeriSign PayFlow Link solution.  We currently use it
for
  our gift shops in three different hospitals.  We would like to add other
  eCommerce sites like for donations to some of our foundations.
 
  We are required to have three different payflow accounts since we have 3
  different gift shops; each with their own bank accounts.
 
  What I would like to do is write my own eCommerce site and route the
money
  to the correct bank accounts.  But I would still need a way to verify
Credit
  Card payments and credits.
 
  Is there way to have the eCommerce site local, verify the credit cards
and
  route it to different bank accounts without having to have a separate
  payflow link type of account setup?
 
 
 
 
 
~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: How do people work around the current limited cfmail

2001-12-10 Thread Kurt Ward

We have battled this problem for 2 years.  First there was the bare LF
problem with Linux Qmail (and CFMail not building emails per the RFC), plus
undeliverables of every nature, etc., etc..  We also tried ASPMail, which
was configured per the docs and it worked sporadic at best.  Our solution:
we use cffile to write emails to a text file with unique filenames, and kick
off a Perl script at 3 min intervals to process the queue.  Haven't had a
problem since...

-Original Message-
From: Tony Gruen [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 1:40 PM
To: CF-Talk
Subject: RE: How do people work around the current limited cfmail


We are also having serious trouble with CFMAIL. NO mail is being delivered
and NO files are being put into the UNDELIVR folder. Restarting does not
help. CF 4.5 / CF5, IIS5  IIS4 with all O/S service packs current.

We can see the errors on the mail server, but no files on the web server.
Does anyone have any input on this? I want an alternativne to CFMAIL, anyone
have input on their experience with any in particular?

Tony Gruen


-Original Message-
From: Larry W. Virden [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 9:18 AM
To: CF-Talk
Subject: How do people work around the current limited cfmail


At least 2-3 times in the past week we've had developers and users scurrying
around trying to figure out why their ColdFusion apps were not delivering
mail, with the final reason being that someone had mistyped one of a
series of email addresses.

I was just curious what others are doing about this sort of thing?
What I sure wish were available was a way to a) get msgs out to all
valid ids, b) bounce errors back to an Errors-To: header.
--
Never apply a Star Trek solution to a Babylon 5 problem.
Larry W. Virden mailto:[EMAIL PROTECTED] URL:
http://www.purl.org/NET/lvirden/
Even if explicitly stated to the contrary, nothing in this posting should
be construed as representing my employer's opinions.


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: How Do I Create Dynamic Arrays to Populate Select Boxes?

2001-12-10 Thread Alex

cf_twoselects_related

On Mon, 10 Dec 2001, James Taavon wrote:

 I want to create an application that allows the end-user to first select a
 category from select box A, which entails populates select box B with that
 category's data drawn from the database. In other words, when John Doe
 selects Employment from select box A, select box B populates with data
 taken from several fields through an OnSelect function within select box A.
 I would like this application to occur on the same page.
 
 I figure I'll have to create an array which collects data corresponding to
 what is selected in select box A, and this is where I'm lost.
 
 Any help would be appreciated.
 
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: How Do I Create Dynamic Arrays to Populate Select Boxes?

2001-12-10 Thread James Taavon

First thing I looked at, actually have used it for another app. The
difference here is that, the way the TwoSelectsRelated Tag works (my
interpretation) is that it takes your choice from Select Box 1 and gives you
the corresponding value in Select Box 2.

Example, Column A is database populates Select Box 1. When choice is made,
Select Box 2 is populated with the corresponding value.

Column AColumn B

John Doe[EMAIL PROTECTED]
Jane Doe[EMAIL PROTECTED]


If I choose John Doe from Select Box 1, his email [EMAIL PROTECTED] will
poplulate Select Box 2. What I want though is to populate Select Box 2 with
choices from not only Column B, but also if I have a Column C,D,E and F.
Does that make sense?




-Original Message-
From: Christopher Olive [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 1:32 PM
To: CF-Talk
Subject: RE: How Do I Create Dynamic Arrays to Populate Select Boxes?


look into Nate Weiss' TwoSelectedRelated tag on the allaire development
gallery.

christopher olive, cto, vp of web development
cresco technologies, inc
410.825.0383
http://www.crescotech.com


-Original Message-
From: James Taavon [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 1:29 PM
To: CF-Talk
Subject: How Do I Create Dynamic Arrays to Populate Select Boxes?


I want to create an application that allows the end-user to first select
a
category from select box A, which entails populates select box B with
that
category's data drawn from the database. In other words, when John Doe
selects Employment from select box A, select box B populates with data
taken from several fields through an OnSelect function within select box
A.
I would like this application to occur on the same page.

I figure I'll have to create an array which collects data corresponding
to
what is selected in select box A, and this is where I'm lost.

Any help would be appreciated.


~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: How do people work around the current limited cfmail

2001-12-10 Thread Larry W. Virden

from: BILLY CRAVENS [EMAIL PROTECTED]

 Easily done - CFSCHEDULE  a task that checks the undeliverable folder, loops
 through the files, and emails them to whoever, and then deletes them from
 the folder

Not so easy, since it is relatively difficult, as far as I can tell, to
determine what application generated the mails - or did I miss
an option somewhere?
-- 
Never apply a Star Trek solution to a Babylon 5 problem.
Larry W. Virden mailto:[EMAIL PROTECTED] URL: http://www.purl.org/NET/lvirden/
Even if explicitly stated to the contrary, nothing in this posting should 
be construed as representing my employer's opinions.
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: How do people work around the current limited cfmail

2001-12-10 Thread Cameron Childress

This tag may help...

http://devex.allaire.com/developer/gallery/info.cfm?ID=05D90D06-6C6B-11D5-83
F100508B94F85Amethod=Full

IMHO - If the application's designer is properly checking for valid mail
formats, and the user enters a wrong email for themselves...  They shouldn't
expect a message, and there's not too much more you can do to force a user
to enter their own email address correctly.

-Cameron


Cameron Childress
elliptIQ Inc.
p.770.460.1035.232
f.770.460.0963
--
http://www.neighborware.com
America's Leading Community Network Software





 -Original Message-
 From: Larry W. Virden [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 10, 2001 1:51 PM
 To: CF-Talk
 Subject: Re: How do people work around the current limited cfmail


 from: BILLY CRAVENS [EMAIL PROTECTED]

  Easily done - CFSCHEDULE  a task that checks the undeliverable
 folder, loops
  through the files, and emails them to whoever, and then deletes
 them from
  the folder

 Not so easy, since it is relatively difficult, as far as I can tell, to
 determine what application generated the mails - or did I miss
 an option somewhere?
 --
 Never apply a Star Trek solution to a Babylon 5 problem.
 Larry W. Virden mailto:[EMAIL PROTECTED] URL:
 http://www.purl.org/NET/lvirden/
 Even if explicitly stated to the contrary, nothing in this posting should
 be construed as representing my employer's opinions.
 
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: How Do I Create Dynamic Arrays to Populate Select Boxes?

2001-12-10 Thread Christopher Olive

not technically correct.  it will do something like this

Column AColumn B

Item 1  Item 1 - Sub 1
Item 1  Item 1 - Sub 2
Item 1  Item 1 - Sub 3
Item 2  Item 2 - Sub 1
Item 2  Item 2 - Sub 2
Item 2  Item 2 - Sub 3

when selecting item 1 from the first box, it will show the subs for item
1 in the second.

christopher olive, cto, vp of web development
cresco technologies, inc
410.825.0383
http://www.crescotech.com


-Original Message-
From: James Taavon [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 1:52 PM
To: CF-Talk
Subject: RE: How Do I Create Dynamic Arrays to Populate Select Boxes?


First thing I looked at, actually have used it for another app. The
difference here is that, the way the TwoSelectsRelated Tag works (my
interpretation) is that it takes your choice from Select Box 1 and gives
you
the corresponding value in Select Box 2.

Example, Column A is database populates Select Box 1. When choice is
made,
Select Box 2 is populated with the corresponding value.

Column AColumn B

John Doe[EMAIL PROTECTED]
Jane Doe[EMAIL PROTECTED]


If I choose John Doe from Select Box 1, his email [EMAIL PROTECTED] will
poplulate Select Box 2. What I want though is to populate Select Box 2
with
choices from not only Column B, but also if I have a Column C,D,E and F.
Does that make sense?




-Original Message-
From: Christopher Olive [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 1:32 PM
To: CF-Talk
Subject: RE: How Do I Create Dynamic Arrays to Populate Select Boxes?


look into Nate Weiss' TwoSelectedRelated tag on the allaire development
gallery.

christopher olive, cto, vp of web development
cresco technologies, inc
410.825.0383
http://www.crescotech.com


-Original Message-
From: James Taavon [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 1:29 PM
To: CF-Talk
Subject: How Do I Create Dynamic Arrays to Populate Select Boxes?


I want to create an application that allows the end-user to first select
a
category from select box A, which entails populates select box B with
that
category's data drawn from the database. In other words, when John Doe
selects Employment from select box A, select box B populates with data
taken from several fields through an OnSelect function within select box
A.
I would like this application to occur on the same page.

I figure I'll have to create an array which collects data corresponding
to
what is selected in select box A, and this is where I'm lost.

Any help would be appreciated.



~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: UPS Prices

2001-12-10 Thread Matt Robertson

I used to use the Forta tag and loved it.  Then UPS started playing
hide-the-api and broke it... At the time, at least.

After that experience I decided I can't depend on a 3rd party's good
will to let ecommerce sites keep working.  Built a tag that uses
downloaded/imported rates rather than trying to keep up with UPS, their
changing API and usage restrictions (at the time of v1.1 and 2.0 (which
was a whole year-and-a-half ago... Now they're on V5??) pulling rates
from their site became a violation of their site usage rules.  Don't
know if they've changed, but from what they told me at the time they
were pretty solid in wanting to migrate everyone to their own licensed
tools.

The solution isn't perfect by any stretch.  Not *everything* is
supported, although what most U.S. shippers seem to need is.  Plus the
rates need to be updated annually... But at least that means
UPS-shipping sites don't break themselves more than once a year.   

--Matt Robertson--
MSB Designs, Inc.
http://mysecretbase.com



-Original Message-
From: Dunwiddie, Bruce [mailto:[EMAIL PROTECTED]] 
Sent: Monday, December 10, 2001 7:35 AM
To: CF-Talk
Subject: UPS Prices


Does anyone have a page working that gets the online ups shipping cost?
We looked at this a while back, and Ben Forta's tag UPSPrice.cfm was
working then, but now that we're ready to put something in place, I'm
getting a Connection Failure error and after looking in to it, it
looks like the tag is on version 3 of ups's system, but their system is
now on version 5. I just went to DevEx and got the latest version of the
tag that was modified Oct 15th of this year, and it's still the version
3. Any help with what small changes I might need to make to this tag to
get it to work now or any other options that would work would be greatly
appreciated and would save me

~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: How do people work around the current limited cfmail

2001-12-10 Thread Tony Gruen

Thnk you for the link, I will check it out. I agree on the user format
trouble. We are validating the format pretty heavily and all emails seem to
be correctly formatted. Our tests are not even going anywhere.

This is a well known issue, however, careful monitoring and resending or
restarting the server has kept us going in the past. Now nothing helps.

Tony Gruen

-Original Message-
From: Cameron Childress [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 10:58 AM
To: CF-Talk
Subject: RE: How do people work around the current limited cfmail


This tag may help...

http://devex.allaire.com/developer/gallery/info.cfm?ID=05D90D06-6C6B-11D5-83
F100508B94F85Amethod=Full

IMHO - If the application's designer is properly checking for valid mail
formats, and the user enters a wrong email for themselves...  They shouldn't
expect a message, and there's not too much more you can do to force a user
to enter their own email address correctly.

-Cameron


Cameron Childress
elliptIQ Inc.
p.770.460.1035.232
f.770.460.0963
--
http://www.neighborware.com
America's Leading Community Network Software





 -Original Message-
 From: Larry W. Virden [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 10, 2001 1:51 PM
 To: CF-Talk
 Subject: Re: How do people work around the current limited cfmail


 from: BILLY CRAVENS [EMAIL PROTECTED]

  Easily done - CFSCHEDULE  a task that checks the undeliverable
 folder, loops
  through the files, and emails them to whoever, and then deletes
 them from
  the folder

 Not so easy, since it is relatively difficult, as far as I can tell, to
 determine what application generated the mails - or did I miss
 an option somewhere?
 --
 Never apply a Star Trek solution to a Babylon 5 problem.
 Larry W. Virden mailto:[EMAIL PROTECTED] URL:
 http://www.purl.org/NET/lvirden/
 Even if explicitly stated to the contrary, nothing in this posting should
 be construed as representing my employer's opinions.


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CfLocation ?

2001-12-10 Thread Eric J Hoffman

Is it possible to use cflocation after a cfcontent download?  I can't seem
to make it work.

Client clicks ok after selecting file, cf goes to the action page and the
server finishes upload, the file is moved for storage, then cfcontent
initiates a download...after that all seems to stop even though I have a
cflocation after it so the client is moved back the beginning of the
process.

Any ideas how to get that to happen?

Eric J Hoffman
Director of Internet Development
Small Dog Design, LLC
www.smalldogdesign.com

Home of MN Vikings Fans Worldwide!
www.purplepride.org

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Using newgroup

2001-12-10 Thread Won Lee

Testing. 
If I get another message saying my post was reject because I don't have a 
subject and/or message...

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: UPS Prices

2001-12-10 Thread Kurt Ward

I'm pretty sure that pulling rate quotes from the UPS site via the CGI
gateway
is still a violation of their site usage rules.  Registering and using the
XML
tools was for the most part painless and the tools are very cool (address
verification, tracking, rates, etc.).  They also send email notifications
when any changes will take place.  If the quote fails (either from a
connectivity standpoint or any other error) the order is flagged as manual
and bypasses the shipping calcs allowing for the checkout transaction to
complete.  Reliability?  Pretty good! We typically process 600+ orders per
week, and I honestly cannot remember the last time a rate quote failed.
Only one bad not: their tech support/customer service is HORRIBLE.

-Original Message-
From: Matt Robertson [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 2:04 PM
To: CF-Talk
Subject: RE: UPS Prices


I used to use the Forta tag and loved it.  Then UPS started playing
hide-the-api and broke it... At the time, at least.

After that experience I decided I can't depend on a 3rd party's good
will to let ecommerce sites keep working.  Built a tag that uses
downloaded/imported rates rather than trying to keep up with UPS, their
changing API and usage restrictions (at the time of v1.1 and 2.0 (which
was a whole year-and-a-half ago... Now they're on V5??) pulling rates
from their site became a violation of their site usage rules.  Don't
know if they've changed, but from what they told me at the time they
were pretty solid in wanting to migrate everyone to their own licensed
tools.

The solution isn't perfect by any stretch.  Not *everything* is
supported, although what most U.S. shippers seem to need is.  Plus the
rates need to be updated annually... But at least that means
UPS-shipping sites don't break themselves more than once a year.

--Matt Robertson--
MSB Designs, Inc.
http://mysecretbase.com



-Original Message-
From: Dunwiddie, Bruce [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 7:35 AM
To: CF-Talk
Subject: UPS Prices


Does anyone have a page working that gets the online ups shipping cost?
We looked at this a while back, and Ben Forta's tag UPSPrice.cfm was
working then, but now that we're ready to put something in place, I'm
getting a Connection Failure error and after looking in to it, it
looks like the tag is on version 3 of ups's system, but their system is
now on version 5. I just went to DevEx and got the latest version of the
tag that was modified Oct 15th of this year, and it's still the version
3. Any help with what small changes I might need to make to this tag to
get it to work now or any other options that would work would be greatly
appreciated and would save me


~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: How do people work around the current limited cfmail

2001-12-10 Thread Howie Hamlin

Sorry for the plug...

You may want to try iMS-SE.  iMS-SE is a mail server solution that is integrated 
tightly with ColdFusion.  You don't have to rely on
external mail servers plus you get several features over cfmail (you can continue to 
use cfmail with iMS-SE as well).

Some of the more important features are:

Mail Merge
Real-time delivery status
Daily Message Statistics
Built-in Scheduler
and lots more...

You can see a comparison of iMS-SE and other cfmail replacements here: 
http://www.coolfusion.com/imssecomparison.cfm

You can get a fully functional 60-day demo from http://www.coolfusion.com/downloads.cfm

Regards,

--
Howie Hamlin - inFusion Project Manager
On-Line Data Solutions, Inc. - www.CoolFusion.com  - 631-737-4668 x101
inFusion Mail Server (iMS) - The Intelligent Mail Server
 Vote for iMS as the CFDJ Reader's Choice Awards Most Innovative Product 
http://www.sys-con.com/coldfusion/readerschoice2001/nominationformbpa.cfm
 Find out how iMS Stacks up to the competition: 
http://www.coolfusion.com/imssecomparison.cfm

- Original Message -
From: Tony Gruen [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, December 10, 2001 1:40 PM
Subject: RE: How do people work around the current limited cfmail


 We are also having serious trouble with CFMAIL. NO mail is being delivered
 and NO files are being put into the UNDELIVR folder. Restarting does not
 help. CF 4.5 / CF5, IIS5  IIS4 with all O/S service packs current.

 We can see the errors on the mail server, but no files on the web server.
 Does anyone have any input on this? I want an alternativne to CFMAIL, anyone
 have input on their experience with any in particular?

 Tony Gruen


~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: How Do I Create Dynamic Arrays to Populate Select Boxes?

2001-12-10 Thread James Taavon

Yes, I see how that can work. Only problem is that if Item 1 exits n times
in Column A in database it is listed n times in the list. Using GROUP BY
on the query does not work, any way around that?



-Original Message-
From: Christopher Olive [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 2:03 PM
To: CF-Talk
Subject: RE: How Do I Create Dynamic Arrays to Populate Select Boxes?


not technically correct.  it will do something like this

Column AColumn B

Item 1  Item 1 - Sub 1
Item 1  Item 1 - Sub 2
Item 1  Item 1 - Sub 3
Item 2  Item 2 - Sub 1
Item 2  Item 2 - Sub 2
Item 2  Item 2 - Sub 3

when selecting item 1 from the first box, it will show the subs for item
1 in the second.

christopher olive, cto, vp of web development
cresco technologies, inc
410.825.0383
http://www.crescotech.com


-Original Message-
From: James Taavon [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 1:52 PM
To: CF-Talk
Subject: RE: How Do I Create Dynamic Arrays to Populate Select Boxes?


First thing I looked at, actually have used it for another app. The
difference here is that, the way the TwoSelectsRelated Tag works (my
interpretation) is that it takes your choice from Select Box 1 and gives
you
the corresponding value in Select Box 2.

Example, Column A is database populates Select Box 1. When choice is
made,
Select Box 2 is populated with the corresponding value.

Column AColumn B

John Doe[EMAIL PROTECTED]
Jane Doe[EMAIL PROTECTED]


If I choose John Doe from Select Box 1, his email [EMAIL PROTECTED] will
poplulate Select Box 2. What I want though is to populate Select Box 2
with
choices from not only Column B, but also if I have a Column C,D,E and F.
Does that make sense?




-Original Message-
From: Christopher Olive [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 1:32 PM
To: CF-Talk
Subject: RE: How Do I Create Dynamic Arrays to Populate Select Boxes?


look into Nate Weiss' TwoSelectedRelated tag on the allaire development
gallery.

christopher olive, cto, vp of web development
cresco technologies, inc
410.825.0383
http://www.crescotech.com


-Original Message-
From: James Taavon [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 1:29 PM
To: CF-Talk
Subject: How Do I Create Dynamic Arrays to Populate Select Boxes?


I want to create an application that allows the end-user to first select
a
category from select box A, which entails populates select box B with
that
category's data drawn from the database. In other words, when John Doe
selects Employment from select box A, select box B populates with data
taken from several fields through an OnSelect function within select box
A.
I would like this application to occur on the same page.

I figure I'll have to create an array which collects data corresponding
to
what is selected in select box A, and this is where I'm lost.

Any help would be appreciated.




~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: How Do I Create Dynamic Arrays to Populate Select Boxes?

2001-12-10 Thread James Taavon

actually, do you have a copy of ThreeSelectsRelated tag? Nate's site is down
for upgrade.

-Original Message-
From: James Taavon [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 2:39 PM
To: CF-Talk
Subject: RE: How Do I Create Dynamic Arrays to Populate Select Boxes?


Yes, I see how that can work. Only problem is that if Item 1 exits n times
in Column A in database it is listed n times in the list. Using GROUP BY
on the query does not work, any way around that?



-Original Message-
From: Christopher Olive [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 2:03 PM
To: CF-Talk
Subject: RE: How Do I Create Dynamic Arrays to Populate Select Boxes?


not technically correct.  it will do something like this

Column AColumn B

Item 1  Item 1 - Sub 1
Item 1  Item 1 - Sub 2
Item 1  Item 1 - Sub 3
Item 2  Item 2 - Sub 1
Item 2  Item 2 - Sub 2
Item 2  Item 2 - Sub 3

when selecting item 1 from the first box, it will show the subs for item
1 in the second.

christopher olive, cto, vp of web development
cresco technologies, inc
410.825.0383
http://www.crescotech.com


-Original Message-
From: James Taavon [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 1:52 PM
To: CF-Talk
Subject: RE: How Do I Create Dynamic Arrays to Populate Select Boxes?


First thing I looked at, actually have used it for another app. The
difference here is that, the way the TwoSelectsRelated Tag works (my
interpretation) is that it takes your choice from Select Box 1 and gives
you
the corresponding value in Select Box 2.

Example, Column A is database populates Select Box 1. When choice is
made,
Select Box 2 is populated with the corresponding value.

Column AColumn B

John Doe[EMAIL PROTECTED]
Jane Doe[EMAIL PROTECTED]


If I choose John Doe from Select Box 1, his email [EMAIL PROTECTED] will
poplulate Select Box 2. What I want though is to populate Select Box 2
with
choices from not only Column B, but also if I have a Column C,D,E and F.
Does that make sense?




-Original Message-
From: Christopher Olive [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 1:32 PM
To: CF-Talk
Subject: RE: How Do I Create Dynamic Arrays to Populate Select Boxes?


look into Nate Weiss' TwoSelectedRelated tag on the allaire development
gallery.

christopher olive, cto, vp of web development
cresco technologies, inc
410.825.0383
http://www.crescotech.com


-Original Message-
From: James Taavon [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 1:29 PM
To: CF-Talk
Subject: How Do I Create Dynamic Arrays to Populate Select Boxes?


I want to create an application that allows the end-user to first select
a
category from select box A, which entails populates select box B with
that
category's data drawn from the database. In other words, when John Doe
selects Employment from select box A, select box B populates with data
taken from several fields through an OnSelect function within select box
A.
I would like this application to occur on the same page.

I figure I'll have to create an array which collects data corresponding
to
what is selected in select box A, and this is where I'm lost.

Any help would be appreciated.





~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Test time

2001-12-10 Thread Won

I must apologize for the swarm of test messages that I am posting. But
as most of you know, CF-TALK receives a large volume of messages/mail
everyday.  Not being able to sort by date is not an option for me.  So
if I can't get it to work by a few more tries, I will stop polluting
your inboxes with my useless messages/mails.

Won
~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CfLocation ?

2001-12-10 Thread Dave Watts

 Is it possible to use cflocation after a cfcontent download?  

No, you can only do one or the other. I think this is a limitation within
the HTTP protocol, and isn't specific to CF.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: How do people work around the current limited cfmail

2001-12-10 Thread Gordon Burns

At 19:15 10/12/2001 Tony Gruen said
Thnk you for the link, I will check it out. I agree on the user format
trouble. We are validating the format pretty heavily and all emails seem to
be correctly formatted. Our tests are not even going anywhere.

This is a well known issue, however, careful monitoring and resending or
restarting the server has kept us going in the past. Now nothing helps.

Tony Gruen

To answer the question in the Subject.

We use Howie's or rather his company's CFX and his SE iMS.

We never have any problems. It is much more flexible, more 
powerful, the support is great and it just sends the mail.  I have 
lost track of the pricing but the SE version is a bargain. I think 
the annual licence is $80.00 or so. The reason I mention this is 
that I know some folk get confused and think they need the full iMS 
mail server with POP SMTP etc etc.Also that if they are running a 
full mail server on the same box they can not use it.  The SE is 
only a Post server it can happily reside on a server that has 
another mail server running alongside.

To replace CFMail just use the SE version I am sure there is a 
trial version you can download and test.

We have it running on a Box with CF, web server,and mail server 
that churns out a fair bit of mail on some tech support lists.

I just wish I could resolve some other issues as easily as iMS 
resolved the CF mail problem.

We have customers who can log on and generate a mailing of 
10,000.  It never concerns us, would not want to rely of CFMail for 
that.  Not fair to compare the two anyway as delivering it straight 
to an efficient Post Server is bound to be better and more efficient.

Mystery to me why everyone isn't using it.

Mail Howie or join the iMS support list if you have any real 
technical questions.


Gordon



~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: How Do I Create Dynamic Arrays to Populate Select Boxes?

2001-12-10 Thread Christopher Olive

you don't want GROUP, you want ORDER by.

GROUP BY is only used with aggregate functions.

christopher olive, cto, vp of web development
cresco technologies, inc
410.825.0383
http://www.crescotech.com


-Original Message-
From: James Taavon [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 2:39 PM
To: CF-Talk
Subject: RE: How Do I Create Dynamic Arrays to Populate Select Boxes?


Yes, I see how that can work. Only problem is that if Item 1 exits n
times
in Column A in database it is listed n times in the list. Using GROUP
BY
on the query does not work, any way around that?



-Original Message-
From: Christopher Olive [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 2:03 PM
To: CF-Talk
Subject: RE: How Do I Create Dynamic Arrays to Populate Select Boxes?


not technically correct.  it will do something like this

Column AColumn B

Item 1  Item 1 - Sub 1
Item 1  Item 1 - Sub 2
Item 1  Item 1 - Sub 3
Item 2  Item 2 - Sub 1
Item 2  Item 2 - Sub 2
Item 2  Item 2 - Sub 3

when selecting item 1 from the first box, it will show the subs for item
1 in the second.

christopher olive, cto, vp of web development
cresco technologies, inc
410.825.0383
http://www.crescotech.com


-Original Message-
From: James Taavon [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 1:52 PM
To: CF-Talk
Subject: RE: How Do I Create Dynamic Arrays to Populate Select Boxes?


First thing I looked at, actually have used it for another app. The
difference here is that, the way the TwoSelectsRelated Tag works (my
interpretation) is that it takes your choice from Select Box 1 and gives
you
the corresponding value in Select Box 2.

Example, Column A is database populates Select Box 1. When choice is
made,
Select Box 2 is populated with the corresponding value.

Column AColumn B

John Doe[EMAIL PROTECTED]
Jane Doe[EMAIL PROTECTED]


If I choose John Doe from Select Box 1, his email [EMAIL PROTECTED] will
poplulate Select Box 2. What I want though is to populate Select Box 2
with
choices from not only Column B, but also if I have a Column C,D,E and F.
Does that make sense?




-Original Message-
From: Christopher Olive [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 1:32 PM
To: CF-Talk
Subject: RE: How Do I Create Dynamic Arrays to Populate Select Boxes?


look into Nate Weiss' TwoSelectedRelated tag on the allaire development
gallery.

christopher olive, cto, vp of web development
cresco technologies, inc
410.825.0383
http://www.crescotech.com


-Original Message-
From: James Taavon [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 1:29 PM
To: CF-Talk
Subject: How Do I Create Dynamic Arrays to Populate Select Boxes?


I want to create an application that allows the end-user to first select
a
category from select box A, which entails populates select box B with
that
category's data drawn from the database. In other words, when John Doe
selects Employment from select box A, select box B populates with data
taken from several fields through an OnSelect function within select box
A.
I would like this application to occur on the same page.

I figure I'll have to create an array which collects data corresponding
to
what is selected in select box A, and this is where I'm lost.

Any help would be appreciated.





~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: How Do I Create Dynamic Arrays to Populate Select Boxes?

2001-12-10 Thread Christopher Olive

look on allaire's DEVEX.

christopher olive, cto, vp of web development
cresco technologies, inc
410.825.0383
http://www.crescotech.com


-Original Message-
From: James Taavon [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 2:47 PM
To: CF-Talk
Subject: RE: How Do I Create Dynamic Arrays to Populate Select Boxes?


actually, do you have a copy of ThreeSelectsRelated tag? Nate's site is
down
for upgrade.

-Original Message-
From: James Taavon [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 2:39 PM
To: CF-Talk
Subject: RE: How Do I Create Dynamic Arrays to Populate Select Boxes?


Yes, I see how that can work. Only problem is that if Item 1 exits n
times
in Column A in database it is listed n times in the list. Using GROUP
BY
on the query does not work, any way around that?



-Original Message-
From: Christopher Olive [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 2:03 PM
To: CF-Talk
Subject: RE: How Do I Create Dynamic Arrays to Populate Select Boxes?


not technically correct.  it will do something like this

Column AColumn B

Item 1  Item 1 - Sub 1
Item 1  Item 1 - Sub 2
Item 1  Item 1 - Sub 3
Item 2  Item 2 - Sub 1
Item 2  Item 2 - Sub 2
Item 2  Item 2 - Sub 3

when selecting item 1 from the first box, it will show the subs for item
1 in the second.

christopher olive, cto, vp of web development
cresco technologies, inc
410.825.0383
http://www.crescotech.com


-Original Message-
From: James Taavon [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 1:52 PM
To: CF-Talk
Subject: RE: How Do I Create Dynamic Arrays to Populate Select Boxes?


First thing I looked at, actually have used it for another app. The
difference here is that, the way the TwoSelectsRelated Tag works (my
interpretation) is that it takes your choice from Select Box 1 and gives
you
the corresponding value in Select Box 2.

Example, Column A is database populates Select Box 1. When choice is
made,
Select Box 2 is populated with the corresponding value.

Column AColumn B

John Doe[EMAIL PROTECTED]
Jane Doe[EMAIL PROTECTED]


If I choose John Doe from Select Box 1, his email [EMAIL PROTECTED] will
poplulate Select Box 2. What I want though is to populate Select Box 2
with
choices from not only Column B, but also if I have a Column C,D,E and F.
Does that make sense?




-Original Message-
From: Christopher Olive [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 1:32 PM
To: CF-Talk
Subject: RE: How Do I Create Dynamic Arrays to Populate Select Boxes?


look into Nate Weiss' TwoSelectedRelated tag on the allaire development
gallery.

christopher olive, cto, vp of web development
cresco technologies, inc
410.825.0383
http://www.crescotech.com


-Original Message-
From: James Taavon [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 1:29 PM
To: CF-Talk
Subject: How Do I Create Dynamic Arrays to Populate Select Boxes?


I want to create an application that allows the end-user to first select
a
category from select box A, which entails populates select box B with
that
category's data drawn from the database. In other words, when John Doe
selects Employment from select box A, select box B populates with data
taken from several fields through an OnSelect function within select box
A.
I would like this application to occur on the same page.

I figure I'll have to create an array which collects data corresponding
to
what is selected in select box A, and this is where I'm lost.

Any help would be appreciated.






~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: How Do I Create Dynamic Arrays to Populate Select Boxes?

2001-12-10 Thread James Taavon

FOUND IT!!

-Original Message-
From: James Taavon [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 2:47 PM
To: CF-Talk
Subject: RE: How Do I Create Dynamic Arrays to Populate Select Boxes?


actually, do you have a copy of ThreeSelectsRelated tag? Nate's site is down
for upgrade.

-Original Message-
From: James Taavon [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 2:39 PM
To: CF-Talk
Subject: RE: How Do I Create Dynamic Arrays to Populate Select Boxes?


Yes, I see how that can work. Only problem is that if Item 1 exits n times
in Column A in database it is listed n times in the list. Using GROUP BY
on the query does not work, any way around that?



-Original Message-
From: Christopher Olive [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 2:03 PM
To: CF-Talk
Subject: RE: How Do I Create Dynamic Arrays to Populate Select Boxes?


not technically correct.  it will do something like this

Column AColumn B

Item 1  Item 1 - Sub 1
Item 1  Item 1 - Sub 2
Item 1  Item 1 - Sub 3
Item 2  Item 2 - Sub 1
Item 2  Item 2 - Sub 2
Item 2  Item 2 - Sub 3

when selecting item 1 from the first box, it will show the subs for item
1 in the second.

christopher olive, cto, vp of web development
cresco technologies, inc
410.825.0383
http://www.crescotech.com


-Original Message-
From: James Taavon [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 1:52 PM
To: CF-Talk
Subject: RE: How Do I Create Dynamic Arrays to Populate Select Boxes?


First thing I looked at, actually have used it for another app. The
difference here is that, the way the TwoSelectsRelated Tag works (my
interpretation) is that it takes your choice from Select Box 1 and gives
you
the corresponding value in Select Box 2.

Example, Column A is database populates Select Box 1. When choice is
made,
Select Box 2 is populated with the corresponding value.

Column AColumn B

John Doe[EMAIL PROTECTED]
Jane Doe[EMAIL PROTECTED]


If I choose John Doe from Select Box 1, his email [EMAIL PROTECTED] will
poplulate Select Box 2. What I want though is to populate Select Box 2
with
choices from not only Column B, but also if I have a Column C,D,E and F.
Does that make sense?




-Original Message-
From: Christopher Olive [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 1:32 PM
To: CF-Talk
Subject: RE: How Do I Create Dynamic Arrays to Populate Select Boxes?


look into Nate Weiss' TwoSelectedRelated tag on the allaire development
gallery.

christopher olive, cto, vp of web development
cresco technologies, inc
410.825.0383
http://www.crescotech.com


-Original Message-
From: James Taavon [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 1:29 PM
To: CF-Talk
Subject: How Do I Create Dynamic Arrays to Populate Select Boxes?


I want to create an application that allows the end-user to first select
a
category from select box A, which entails populates select box B with
that
category's data drawn from the database. In other words, when John Doe
selects Employment from select box A, select box B populates with data
taken from several fields through an OnSelect function within select box
A.
I would like this application to occur on the same page.

I figure I'll have to create an array which collects data corresponding
to
what is selected in select box A, and this is where I'm lost.

Any help would be appreciated.






~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: How do people work around the current limited cfmail

2001-12-10 Thread Howie Hamlin

One comment - we don't have annual licenses anymore.  The new license does not expire 
and costs $250.

Regards,

Howie

- Original Message -
From: Gordon Burns [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, December 10, 2001 1:44 PM
Subject: RE: How do people work around the current limited cfmail


 At 19:15 10/12/2001 Tony Gruen said
 Thnk you for the link, I will check it out. I agree on the user format
 trouble. We are validating the format pretty heavily and all emails seem to
 be correctly formatted. Our tests are not even going anywhere.
 
 This is a well known issue, however, careful monitoring and resending or
 restarting the server has kept us going in the past. Now nothing helps.
 
 Tony Gruen

 To answer the question in the Subject.

 We use Howie's or rather his company's CFX and his SE iMS.

 We never have any problems. It is much more flexible, more
 powerful, the support is great and it just sends the mail.  I have
 lost track of the pricing but the SE version is a bargain. I think
 the annual licence is $80.00 or so. The reason I mention this is
 that I know some folk get confused and think they need the full iMS
 mail server with POP SMTP etc etc.Also that if they are running a
 full mail server on the same box they can not use it.  The SE is
 only a Post server it can happily reside on a server that has
 another mail server running alongside.

 To replace CFMail just use the SE version I am sure there is a
 trial version you can download and test.

 We have it running on a Box with CF, web server,and mail server
 that churns out a fair bit of mail on some tech support lists.

 I just wish I could resolve some other issues as easily as iMS
 resolved the CF mail problem.

 We have customers who can log on and generate a mailing of
 10,000.  It never concerns us, would not want to rely of CFMail for
 that.  Not fair to compare the two anyway as delivering it straight
 to an efficient Post Server is bound to be better and more efficient.

 Mystery to me why everyone isn't using it.

 Mail Howie or join the iMS support list if you have any real
 technical questions.


 Gordon



 
~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Test time

2001-12-10 Thread BILLY CRAVENS

I'm not having any problem seeing the time of each message - they appear
correct.  Perhaps it's an issue with your mail client/server.

---
Billy Cravens

- Original Message -
From: Won [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, December 10, 2001 1:43 PM
Subject: Test time


 I must apologize for the swarm of test messages that I am posting. But
 as most of you know, CF-TALK receives a large volume of messages/mail
 everyday.  Not being able to sort by date is not an option for me.  So
 if I can't get it to work by a few more tries, I will stop polluting
 your inboxes with my useless messages/mails.

 Won
 
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: How do people work around the current limited cfmail

2001-12-10 Thread Tony Gruen

Thanks Gordon. Super feedback and we are going to try it. I appreciate your
input.

T

-Original Message-
From: Gordon Burns [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 10:44 AM
To: CF-Talk
Subject: RE: How do people work around the current limited cfmail

 answer the question in the Subject.
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Test time

2001-12-10 Thread Won Lee

I'm trying to get it to work via the fuseware newsgroup.
It worked perfectly well in my mail client, Eudora (used to be outlook 
before they banned it here).

Won
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: How do people work around the current limited cfmail

2001-12-10 Thread Larry W. Virden

 One comment - we don't have annual licenses anymore.  The new license does not 
expire and costs $250.

Does it run on SPARC Solaris?  That's the platform we use for all useful
web applications - we don't currently use Windows for any 'real world'
web work.
-- 
Never apply a Star Trek solution to a Babylon 5 problem.
Larry W. Virden mailto:[EMAIL PROTECTED] URL: http://www.purl.org/NET/lvirden/
Even if explicitly stated to the contrary, nothing in this posting should 
be construed as representing my employer's opinions.
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: How do people work around the current limited cfmail

2001-12-10 Thread Jochem van Dieten

Larry W. Virden wrote:

 from: BILLY CRAVENS [EMAIL PROTECTED]
 
Easily done - CFSCHEDULE  a task that checks the undeliverable folder, loops
through the files, and emails them to whoever, and then deletes them from
the folder

 
 Not so easy, since it is relatively difficult, as far as I can tell, to
 determine what application generated the mails - or did I miss
 an option somewhere?


No you didn't, it is something that has to be explicitly enabled, for 
instance by writing it as a header in the email.

As a hosting provider I require everybody using cfmail to write 2 extra 
headers for each email.

Header number 1 is the X-Originating-IP which should always read 
#cgi.remote_addr# to track down people abusing (badly designed) email 
facilities.
cfmailparam name=X-Originating-IP value=#cgi.remote_addr#

Header number 2 is the X-Complaints-To header which should have the 
emailaddress of either the webmaster or the postmaster of the site.
This header is intended to make sure that even people that host without 
their own domain get to handle their own email complaints.

But the Complaints header gives a nice second option. Policy is to run a 
scheduled script at midnight which reads the contents of the undelivr 
folder. Each individual email is parsed for the presence of an 
X-Complaints-To header. If present the reason for the email being 
undeliverable is parsed from the mail.log and the email together with 
the reason are send to the X-Complaints-To address and are no longer my 
problem.

People have been informed that email without an X-Complaints-To header 
that is found in the undelivr directory will be deleted.

And the second way to solve the problem is that I have modified 
cf_advancedemail to be able to write to the pickup dir of any SMTP 
server, some of which perform quite a bit better than dart.dll. But 
processing of undeliverable emails remains the same.

Jochem
~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: How do people work around the current limited cfmail

2001-12-10 Thread Howie Hamlin

It's currently Windows-only.

Regards,

Howie

- Original Message - 
From: Larry W. Virden [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, December 10, 2001 3:13 PM
Subject: Re: How do people work around the current limited cfmail


  One comment - we don't have annual licenses anymore.  The new license does not 
expire and costs $250.
 
 Does it run on SPARC Solaris?  That's the platform we use for all useful
 web applications - we don't currently use Windows for any 'real world'
 web work.
 -- 
 Never apply a Star Trek solution to a Babylon 5 problem.
 Larry W. Virden mailto:[EMAIL PROTECTED] URL: http://www.purl.org/NET/lvirden/
 Even if explicitly stated to the contrary, nothing in this posting should 
 be construed as representing my employer's opinions.
 
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Error clearing dynamic Client Variables.

2001-12-10 Thread Angel Stewart

Hi folks!

Can anyone tell me why I am getting erorrs with this code?

I am trying to delete all my client.comments_#whatever# variables. 

 CFSET CurrentDate= #StartDate# 
 
cfloop CONDITION=#CurrentDate# LTE #EndDate# 
  
  
 CFIF
IsDefined(Client.Comment_#Evaluate(#DateFormat(CurrentDate,'mmdd')
#)#) 
CFOUTPUT
#Evaluate(Client.Comment_#Evaluate(#DateFormat(CurrentDate,'mmdd')
#)#)# /CFOUTPUT

 

 CFSET temp =
DeleteClientVariable(Client.Comment_#Evaluate(#DateFormat(CurrentDate,
'mmdd')#)#) 
 
 
 /CFIF 
  
CFSET CurrentDate=DATEADD(d,1,#CurrentDate#) !--- Advance the
current date by one day --- 
CFSET CurrentDate = DateFormat(#CurrentDate#,'mm/dd/') 
 
/CFLOOP

The IsDefined() statement works, but the DeleteClientVariable statement
doesn't.

IT doesn't delete anything :-\

-Gel
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Disconnecting Data Sources for Upload?

2001-12-10 Thread John McKown

Customer has Access database that he uploads to CF Server via FTP.
Access database is a datasource for his site.
When site is being viewed, he cannot upload a newer copy of the database
because the file is locked.

Any creative solutions besides disconnect the datasource?

John McKown, President
Delaware.Net, Inc.
28 Old Rudnick Lane
Dover, DE 19901
e-mail: [EMAIL PROTECTED]
phone: 302-736-5515
toll free: 888-432-7965
fax: 302-736-5945
cell: 302-363-0071
icq: 1812513

~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Error clearing dynamic Client Variables.

2001-12-10 Thread Don Vawter

Mixing single and double quotes in your isdefined statement

- Original Message - 
From: Angel Stewart [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, December 10, 2001 1:31 PM
Subject: Error clearing dynamic Client Variables.


 Hi folks!
 
 Can anyone tell me why I am getting erorrs with this code?
 
 I am trying to delete all my client.comments_#whatever# variables. 
 
  CFSET CurrentDate= #StartDate# 
  
 cfloop CONDITION=#CurrentDate# LTE #EndDate# 
   
   
  CFIF
 IsDefined(Client.Comment_#Evaluate(#DateFormat(CurrentDate,'mmdd')
 #)#) 
 CFOUTPUT
 #Evaluate(Client.Comment_#Evaluate(#DateFormat(CurrentDate,'mmdd')
 #)#)# /CFOUTPUT
 
  
 
 CFSET temp =
 DeleteClientVariable(Client.Comment_#Evaluate(#DateFormat(CurrentDate,
 'mmdd')#)#) 
  
  
  /CFIF 
   
 CFSET CurrentDate=DATEADD(d,1,#CurrentDate#) !--- Advance the
 current date by one day --- 
 CFSET CurrentDate = DateFormat(#CurrentDate#,'mm/dd/') 
  
 /CFLOOP
 
 The IsDefined() statement works, but the DeleteClientVariable statement
 doesn't.
 
 IT doesn't delete anything :-\
 
 -Gel
 
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Disconnecting Data Sources for Upload?

2001-12-10 Thread Chuck Rodgers

Hi,

You can break the lock by running a query on the datasource that causes 
an error

select *
from x

(in this case x stands for a table that does not exist).

This should break the lock and allow the uploading of the db.

Chuck Rodgers

At 03:36 PM 12/10/01 -0500, you wrote:
Customer has Access database that he uploads to CF Server via FTP.
Access database is a datasource for his site.
When site is being viewed, he cannot upload a newer copy of the database
because the file is locked.

Any creative solutions besides disconnect the datasource?

John McKown, President
Delaware.Net, Inc.
28 Old Rudnick Lane
Dover, DE 19901
e-mail: [EMAIL PROTECTED]
phone: 302-736-5515
toll free: 888-432-7965
fax: 302-736-5945
cell: 302-363-0071
icq: 1812513


~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Disconnecting Data Sources for Upload?

2001-12-10 Thread BEN MORRIS

Have two datasources  databases.  Have person upload datasource 2 while 
the site uses datasource 1.  Do a query of datasource 2, loop through it 
and update datasource 1.  Maybe have a scheduled task do this at a time 
that would be least disruptive.  There are probably better ways to do 
this, but since you are using an access db in the first place, I imagine 
that simple is good.

 John McKown [EMAIL PROTECTED] 12/10/01 03:36PM 
Customer has Access database that he uploads to CF Server via FTP.
Access database is a datasource for his site.
When site is being viewed, he cannot upload a newer copy of the database
because the file is locked.

Any creative solutions besides disconnect the datasource?

John McKown, President
Delaware.Net, Inc.
28 Old Rudnick Lane
Dover, DE 19901
e-mail: [EMAIL PROTECTED] 
phone: 302-736-5515
toll free: 888-432-7965
fax: 302-736-5945
cell: 302-363-0071
icq: 1812513


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Error clearing dynamic Client Variables.

2001-12-10 Thread Angel Stewart

The IsDefined statement works..
It drops into the CFIF statement correctly..and then it is supposed to
delete the client variables.

The Deleteclientvariable is the one that isn't working.

-Angel


-Original Message-
From: Don Vawter [mailto:[EMAIL PROTECTED]] 

Mixing single and double quotes in your isdefined statement

- Original Message - 
From: Angel Stewart [EMAIL PROTECTED]
 
  CFSET CurrentDate= #StartDate#
  
 cfloop CONDITION=#CurrentDate# LTE #EndDate#
   
   
  CFIF
 IsDefined(Client.Comment_#Evaluate(#DateFormat(CurrentDate,'mmdd
 ')
 #)#) 
 CFOUTPUT

#Evaluate(Client.Comment_#Evaluate(#DateFormat(CurrentDate,'mmdd')
 #)#)# /CFOUTPUT
 
  
 
 CFSET temp = 
 DeleteClientVariable(Client.Comment_#Evaluate(#DateFormat(CurrentDat
 e,
 'mmdd')#)#) 
  
  
  /CFIF
   
 CFSET CurrentDate=DATEADD(d,1,#CurrentDate#) !--- Advance the 
 current date by one day --- CFSET CurrentDate = 
 DateFormat(#CurrentDate#,'mm/dd/')
  
 /CFLOOP
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Disconnecting Data Sources for Upload?

2001-12-10 Thread John McKown

Ben,

That sounds like a good solution.

Thanks.

John McKown, President
Delaware.Net, Inc.
28 Old Rudnick Lane
Dover, DE 19901
e-mail: [EMAIL PROTECTED]
phone: 302-736-5515
toll free: 888-432-7965
fax: 302-736-5945
cell: 302-363-0071
icq: 1812513




-Original Message-
From: BEN MORRIS [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 3:33 PM
To: CF-Talk
Subject: Re: Disconnecting Data Sources for Upload?


Have two datasources  databases.  Have person upload datasource 2 while
the site uses datasource 1.  Do a query of datasource 2, loop through it
and update datasource 1.  Maybe have a scheduled task do this at a time
that would be least disruptive.  There are probably better ways to do
this, but since you are using an access db in the first place, I imagine
that simple is good.

 John McKown [EMAIL PROTECTED] 12/10/01 03:36PM 
Customer has Access database that he uploads to CF Server via FTP.
Access database is a datasource for his site.
When site is being viewed, he cannot upload a newer copy of the database
because the file is locked.

Any creative solutions besides disconnect the datasource?

John McKown, President
Delaware.Net, Inc.
28 Old Rudnick Lane
Dover, DE 19901
e-mail: [EMAIL PROTECTED]
phone: 302-736-5515
toll free: 888-432-7965
fax: 302-736-5945
cell: 302-363-0071
icq: 1812513



~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Error clearing dynamic Client Variables.

2001-12-10 Thread Don Vawter

OK but wouldn't if be a lot simpler to have your isdefined like this:

CFIF IsDefined(client.Comment_  DateFormat(CurrentDate,'mmdd') )

and

CFSET temp = DeleteClientVariable(Client.Comment_ 
DateFormat(CurrentDate,'mmdd'))



why do you need all the extra evaluates etc.


- Original Message -
From: Angel Stewart [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, December 10, 2001 1:44 PM
Subject: RE: Error clearing dynamic Client Variables.


 The IsDefined statement works..
 It drops into the CFIF statement correctly..and then it is supposed to
 delete the client variables.

 The Deleteclientvariable is the one that isn't working.

 -Angel


 -Original Message-
 From: Don Vawter [mailto:[EMAIL PROTECTED]]

 Mixing single and double quotes in your isdefined statement

 - Original Message -
 From: Angel Stewart [EMAIL PROTECTED]
 
   CFSET CurrentDate= #StartDate#
 
  cfloop CONDITION=#CurrentDate# LTE #EndDate#
 
 
   CFIF
  IsDefined(Client.Comment_#Evaluate(#DateFormat(CurrentDate,'mmdd
  ')
  #)#)
  CFOUTPUT
 
 #Evaluate(Client.Comment_#Evaluate(#DateFormat(CurrentDate,'mmdd')
  #)#)# /CFOUTPUT
 
 
 
  CFSET temp =
  DeleteClientVariable(Client.Comment_#Evaluate(#DateFormat(CurrentDat
  e,
  'mmdd')#)#)
 
 
   /CFIF
 
  CFSET CurrentDate=DATEADD(d,1,#CurrentDate#) !--- Advance the
  current date by one day --- CFSET CurrentDate =
  DateFormat(#CurrentDate#,'mm/dd/')
 
  /CFLOOP
 
~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Error clearing dynamic Client Variables.

2001-12-10 Thread Tyler Clendenin

I don't understand why you need the evaluate function inside the isdefined.
- Original Message - 
From: Angel Stewart [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, December 10, 2001 3:31 PM
Subject: Error clearing dynamic Client Variables.


 Hi folks!
 
 Can anyone tell me why I am getting erorrs with this code?
 
 I am trying to delete all my client.comments_#whatever# variables. 
 
  CFSET CurrentDate= #StartDate# 
  
 cfloop CONDITION=#CurrentDate# LTE #EndDate# 
   
   
  CFIF
 IsDefined(Client.Comment_#Evaluate(#DateFormat(CurrentDate,'mmdd')
 #)#) 
 CFOUTPUT
 #Evaluate(Client.Comment_#Evaluate(#DateFormat(CurrentDate,'mmdd')
 #)#)# /CFOUTPUT
 
  
 
 CFSET temp =
 DeleteClientVariable(Client.Comment_#Evaluate(#DateFormat(CurrentDate,
 'mmdd')#)#) 
  
  
  /CFIF 
   
 CFSET CurrentDate=DATEADD(d,1,#CurrentDate#) !--- Advance the
 current date by one day --- 
 CFSET CurrentDate = DateFormat(#CurrentDate#,'mm/dd/') 
  
 /CFLOOP
 
 The IsDefined() statement works, but the DeleteClientVariable statement
 doesn't.
 
 IT doesn't delete anything :-\
 
 -Gel
 
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: How do people work around the current limited cfmail

2001-12-10 Thread Joseph DeVore

Hey Jochem,

Off hand do you know how many email messages your custom tag can handle per
day? I like the idea of having the SMTP server do what it does best. What
are the cons to using this tag aside from the undeliverables?


Joseph DeVore
VeloxWeb Technologies



-Original Message-
From: Jochem van Dieten [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 12:26 PM
To: CF-Talk
Subject: Re: How do people work around the current limited cfmail


Larry W. Virden wrote:

 from: BILLY CRAVENS [EMAIL PROTECTED]

Easily done - CFSCHEDULE  a task that checks the undeliverable folder,
loops
through the files, and emails them to whoever, and then deletes them from
the folder


 Not so easy, since it is relatively difficult, as far as I can tell, to
 determine what application generated the mails - or did I miss
 an option somewhere?


No you didn't, it is something that has to be explicitly enabled, for
instance by writing it as a header in the email.

As a hosting provider I require everybody using cfmail to write 2 extra
headers for each email.

Header number 1 is the X-Originating-IP which should always read
#cgi.remote_addr# to track down people abusing (badly designed) email
facilities.
cfmailparam name=X-Originating-IP value=#cgi.remote_addr#

Header number 2 is the X-Complaints-To header which should have the
emailaddress of either the webmaster or the postmaster of the site.
This header is intended to make sure that even people that host without
their own domain get to handle their own email complaints.

But the Complaints header gives a nice second option. Policy is to run a
scheduled script at midnight which reads the contents of the undelivr
folder. Each individual email is parsed for the presence of an
X-Complaints-To header. If present the reason for the email being
undeliverable is parsed from the mail.log and the email together with
the reason are send to the X-Complaints-To address and are no longer my
problem.

People have been informed that email without an X-Complaints-To header
that is found in the undelivr directory will be deleted.

And the second way to solve the problem is that I have modified
cf_advancedemail to be able to write to the pickup dir of any SMTP
server, some of which perform quite a bit better than dart.dll. But
processing of undeliverable emails remains the same.

Jochem

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Error clearing dynamic Client Variables.

2001-12-10 Thread David Schmidt

I just had this same problem.  The problem is that you are not supposed to
use the word client. in the deleteclient variable statement.  For example:

cfset result = deleteclientvariable(myVar) --- Correct Way.

instead of:

cfset result = deleteclientvariable(client.myVar) --- Wrong Way.

Hope this helps.




-Original Message-
From: Angel Stewart [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 10, 2001 12:44 PM
To: CF-Talk
Subject: RE: Error clearing dynamic Client Variables.


The IsDefined statement works..
It drops into the CFIF statement correctly..and then it is supposed to
delete the client variables.

The Deleteclientvariable is the one that isn't working.

-Angel


-Original Message-
From: Don Vawter [mailto:[EMAIL PROTECTED]]

Mixing single and double quotes in your isdefined statement

- Original Message -
From: Angel Stewart [EMAIL PROTECTED]

  CFSET CurrentDate= #StartDate#

 cfloop CONDITION=#CurrentDate# LTE #EndDate#


  CFIF
 IsDefined(Client.Comment_#Evaluate(#DateFormat(CurrentDate,'mmdd
 ')
 #)#)
 CFOUTPUT

#Evaluate(Client.Comment_#Evaluate(#DateFormat(CurrentDate,'mmdd')
 #)#)# /CFOUTPUT



 CFSET temp =
 DeleteClientVariable(Client.Comment_#Evaluate(#DateFormat(CurrentDat
 e,
 'mmdd')#)#)


  /CFIF

 CFSET CurrentDate=DATEADD(d,1,#CurrentDate#) !--- Advance the
 current date by one day --- CFSET CurrentDate =
 DateFormat(#CurrentDate#,'mm/dd/')

 /CFLOOP

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CfLocation ?

2001-12-10 Thread BILLY CRAVENS

Use hidden frames.
---
Billy Cravens
- Original Message -
From: Eric J Hoffman [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, December 10, 2001 1:09 PM
Subject: CfLocation ?


 Is it possible to use cflocation after a cfcontent download?  I can't seem
 to make it work.

 Client clicks ok after selecting file, cf goes to the action page and the
 server finishes upload, the file is moved for storage, then cfcontent
 initiates a download...after that all seems to stop even though I have a
 cflocation after it so the client is moved back the beginning of the
 process.

 Any ideas how to get that to happen?

 Eric J Hoffman
 Director of Internet Development
 Small Dog Design, LLC
 www.smalldogdesign.com

 Home of MN Vikings Fans Worldwide!
 www.purplepride.org

 
~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



  1   2   >