question about cookies..

2003-12-03 Thread Dan Farmer
I want to delete my cookie variables but they don't seem to be deleting. What am I doing wrong in my code?I originally set these cookies with _javascript_, I don't see how that would make a difference..cookies are cookies... anyway, when I do the JS alert statement below I get a whole ton of

Re:Date Range Query Issues

2003-12-03 Thread Gabriel Robichaud
Here is the code I use to find stuff in a date range! Judging from the quality of your postings in the past, I am sure you can modify it to your own needs!As for the discussion regarding separating your dates into separate fields… hey… if I have learned anything in my experience in computer

RE: US Sales Tax Question

2003-12-03 Thread Matt Robertson
Short answer:If you have any sort of physical facility in the destination state, then you have to charge that state's tax. An example of a physical facility would be a brick/mortar store, or a drop-ship warehouse belonging to you ( a big maybe is a drop-ship warehouse belonging to a vendor other

RE: Visio for modeling?

2003-12-03 Thread Simon Horwith
I've also heard very mixed reviews of Adalon.I don't use Fusebox but I do create collaboration, component, entity, and use case diagrams using Enterprise Architect.There's nothing wrong with using Visio to do the same, though it doesn't have all of the features in EA. ~Simon Simon Horwith CTO,

RE: [cftalk] About CFChart..

2003-12-03 Thread Allan Cliff
You have this: D:\WEB_Datais my root dir for web sites...then i have GraphData.cfm in D:\WEB_Data\CFIDE\GraphData.cfm This is fine as far as I can see. In IIS you need to set up. New Website (i.e. www.mysite.com) Then inside that set up you need to create 2 virtual directories CFIDE --

CFMX 6.1 Install Problems

2003-12-03 Thread T Pimm
Hiya, some help please! I'm trying to upgrade a CF5 box to MX6.1. I want to install CFMX6.1 OVER the CF5 installation on the IIS web server. I've got the installer, and our License key. All goes fine, until... The dialog box that says Select the web servers to configure to use with

Re: OT: US Sales Tax Question

2003-12-03 Thread Rafael Bleiweiss
Just a back-up verification to one answer already given, as another incorrect one was given: The site seller is required to charge tax to any buyer who resides in a state where the site seller legally does business.If the seller has a license to do business in New York, if the buyer is not in

Re: Date Range Query Issues

2003-12-03 Thread Jochem van Dieten
Jochem van Dieten wrote: DURETTE, STEVEN J (AIT) wrote: The problem with your change is that it won't pick up partial overlays. Just run it. We actually need to test it twice, proving that the negator is the same as the operator is too much work for now: On second thought, the proof that

Verity on RedHat ES 2.1

2003-12-03 Thread Tim Blair
Evening all... I know that Macromedia (specifically in http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/intro6.htm) says that Verity is not supported on RedHat 7.3, 8.0, and 9.Does anyone know whether all is OK with RedHat ES 2.1? Tim.

RE: OT: US Sales Tax Question

2003-12-03 Thread Kennerly, Rick H CIV
States localities have been chaffing under the Internet exemption law for years (fueled not only by their desire to raise revenue but also by pressure from brick mortar stores that do have to charge the tax and believe that they are losing business to the internet).The complexity of charging

Help with Q of Q

2003-12-03 Thread Mickael
Hello All, I am trying to run a query of a query and I am running into a little of SQL trouble.I keep getting this error Query Of Queries runtime error. The aggregate function [SUM(_expression_)] cannot operate on an operand of type [VARCHAR]. Here is the code I am trying to run cfquery

RE: Help with Q of Q

2003-12-03 Thread Tangorre, Michael
Seems as if you are trying to SUM up non numeric data. You will have to convert or cast the data into a numeric format to use the SUM function. Mike -Original Message- From: Mickael [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 03, 2003 8:33 AM To: CF-Talk Subject: Help with Q

RE: Help with Q of Q

2003-12-03 Thread Tony Weeg
I don't know for sure, but from the error, it looks like you are trying to perform a math operation on a datatype that is textual.if the column isnt a number (like int or bigInt), I would imagine...you cant do a sum operation on it. ...tony tony weeg senior web applications architect navtrak,

Re: question about cookies..

2003-12-03 Thread Michael Hodgdon
If you do a cfdump on the cookie scope (cfdump var=#cookie#), are the values still in there?What does the code look like that is setting these cookies? - Original Message - From: Dan Farmer To: CF-Talk Sent: Wednesday, December 03, 2003 1:59 AM Subject: question about cookies.. I want

RE: Help with Q of Q

2003-12-03 Thread Mike Townend
if you are just after the SUM of the columns, you could try something like CFOUTPUT #ArraySum(ListToArray(ValueList(MasterQuery.Orig_amt)))# /CFOUTPUT HTH -Original Message- From: Mickael [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 3, 2003 13:33 To: CF-Talk Subject: Help

Re: Help with Q of Q

2003-12-03 Thread Mickael
Should have looked at that first, this is my first query of a query, thought it had something to do with QofQ Thanks Mike - Original Message - From: Tony Weeg To: CF-Talk Sent: Wednesday, December 03, 2003 8:38 AM Subject: RE: Help with Q of Q I don't know for sure, but from the

RE: XmlSearch() returning Attribute Values

2003-12-03 Thread Alexander Sherwood
-- Alex Sherwood PHS Collection Agency THE COLLECTORS T:301.215.4200 F:301.664.6834 W: www.phs-net.com [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: question about cookies..

2003-12-03 Thread MILAN MUSHRAN
I guess you forgot to treat it as a function (parentheses required). It should be now() or #now()#. From: Michael Hodgdon [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: Re: question about cookies.. Date: Wed, 3 Dec 2003 08:55:31 -0500 If you do a cfdump on

Re: Verity on RedHat ES 2.1

2003-12-03 Thread Thomas Chiverton
On Wednesday 03 Dec 2003 12:21 pm, Tim Blair wrote: know whether all is OK with RedHat ES 2.1? That's basicaly RH8, I think, so no, it's not supported. I was sure some people had managed to get it working anyway, but a recent post from MM here said 'nah'... -- Tom Chiverton Advanced

Re: question about cookies..

2003-12-03 Thread Ubqtous
Dan, On 12/3/2003 at 01:59, you wrote: DF I want to delete my cookie variables but they don't seem to be DF deleting. What am I doing wrong in my code?I originally set DF these cookies with _javascript_, I don't see how that would make a DF difference..cookies are cookies... anyway, when I do

Re: question about cookies..

2003-12-03 Thread Ubqtous
MILAN, On 12/3/2003 at 09:18, you wrote: MM I guess you forgot to treat it as a function (parentheses required). It MM should be now() or #now()#. No, his syntax is valid. From the MM docs: expires: Optional. Schedules the expiration of a cookie variable. Can be specified as a date (as in,

RE: OT: US Sales Tax Question

2003-12-03 Thread Stacy Young
Thanks very much all for the info! Stace _ From: Rafael Bleiweiss [mailto:[EMAIL PROTECTED] Sent: December 3, 2003 8:16 AM To: CF-Talk Subject: Re: OT: US Sales Tax Question Just a back-up verification to one answer already given, as another incorrect one was given: The site seller is

RE: Date Range Query Issues

2003-12-03 Thread DURETTE, STEVEN J (AIT)
Jochem, Running your code on MSSql2K returns: Server: Msg 170, Level 15, State 1, Line 1 Line 1: Incorrect syntax near ';'. Removing the begin; then returns: Server: Msg 2715, Level 16, State 7, Line 1 Column or parameter #1: Cannot find data type DATE. MSSql2K doesn't have the date

Re: Update Verity Collections Execution Time

2003-12-03 Thread Matt Liotta
I've also worked with a variety of other search products (including Lucene) -- I'm not wedded to Verity.  I just object to it being thrown on the scrap heap when in many instances it is perfectly good, very easy to setup and comes bundled with CF. No one implied throwing it on the scrap

RE: Verity on RedHat ES 2.1

2003-12-03 Thread Tim Blair
know whether all is OK with RedHat ES 2.1? That's basicaly RH8, I think, so no, it's not supported. I was sure some people had managed to get it working anyway, but a recent post from MM here said 'nah'... Hmm, I was going by the info in the comments section of the licedocs URL previously

OT: MySQL Front end

2003-12-03 Thread Ryan Roskilly
Any recommendations for a MySQL Front end, or ones to stay away from? Thanks [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: Verity on RedHat ES 2.1

2003-12-03 Thread Thomas Chiverton
On Wednesday 03 Dec 2003 14:53 pm, Tim Blair wrote: Hmm, I was going by the info in the comments section of the licedocs URL previously posted which has an entry that says: Well, now you say that :-) ...by which I was assuming that ES 3.0 wouldn't work, but 2.1 would...? Sounds fair. I'm

Re: Date Range Query Issues

2003-12-03 Thread Jochem van Dieten
DURETTE, STEVEN J (AIT) wrote: BEGIN declare @yourTable table( EntryNo int, startDateField datetime, endDateField datetime ) insert into @yourTable(entryNo, startDateField, endDateField) values(1, '11-25-2003', '12-15-2003') insert into @yourTable(entryNo, startDateField, endDateField)

Re: OT: MySQL Front end

2003-12-03 Thread Thomas Chiverton
On Wednesday 03 Dec 2003 15:07 pm, Ryan Roskilly wrote: Any recommendations for a MySQL Front end, or ones to stay away from? There is an 'offical' one on the MySQL web site isn't there ? -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997 email: [EMAIL PROTECTED]

RE: MySQL Front end

2003-12-03 Thread Tangorre, Michael
This one is not bad... http://www.mysql.com/downloads/mysqlcc.html http://www.mysql.com/downloads/mysqlcc.html Also, look for mysql front. HTH, Mike -Original Message- From: Ryan Roskilly [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 03, 2003 10:08 AM To: CF-Talk

RE: Verity on RedHat ES 2.1

2003-12-03 Thread Tim Blair
Well, now you say that :-) I only just noticed it hiding at the bottom there...:) I'm sure someone @macromedia.com will chip in and confirm though /me watches the tumbleweed slowly drifting by... ;) --- RAWNET LTD - Internet, New Media and

RE: MySQL Front end

2003-12-03 Thread Tim Blair
Any recommendations for a MySQL Front end, or ones to stay away from? Personally I go for MySQL-Front.The project has recently been restarted (after a fairly long hiatus) at http://www.mysqlfront.de/. For me, the stable 2.5 version is a lot nicer and easier to use than the latest beta - v3 is a

Re: MySQL Front end

2003-12-03 Thread Kevin Kazmierczak
I enjoy MySQL-Front, the official one from MySQL is only a beta and stopped working for me after a while. Kevin. - Original Message - From: Tangorre, Michael To: CF-Talk Sent: Wednesday, December 03, 2003 10:07 AM Subject: RE: MySQL Front end This one is not bad...

RE: OT: US Sales Tax Question

2003-12-03 Thread Hagan, Ryan Mr (Contractor ACI)
It's also important to note that if you do business in California and sell to a California resident, you must charge based on which COUNTY that your customer lives in.California has 50 some counties and about six different tax rates between them.I've not seen this in any other state, but I'm

RE: variables within variables

2003-12-03 Thread Scott Brady
Original Message: From: Dan Farmer [EMAIL PROTECTED] Ok so what am I doing wrong here? value=cfif isdefined('Evaluate(cookie.ans#i#)')Evaluate(cookie.ans#i#)/cfif /br / or value=cfif isdefined('cookie[ans#i#]')bah/cfif /br / What is the value of i?The error seems to imply that

RE: MySQL Front end

2003-12-03 Thread Matt Robertson
google mySQLFront and look for the ssteinmann.de download site.I believe in the U.S. Google its third from the top.This is the 2.5 release from the original author. And stay away from the current mySQLFront 3.0.It has the same name, a similar initial look, but a different author, an entirely

RE: Update Verity Collections Execution Time

2003-12-03 Thread Andy Ousterhout
Geoff, What started this all was an update to an empty, optimized collection that was taking over 1 second.This is what really surprised me. Andy -Original Message- From: Geoff Bowers [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 02, 2003 3:50 PM To: CF-Talk Subject: Re: Update

RE: MySQL Front end

2003-12-03 Thread Jim T
http://www.webyog.com/ -Original Message- From: Ryan Roskilly [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 03, 2003 8:08 AM To: CF-Talk Subject: OT: MySQL Front end Any recommendations for a MySQL Front end, or ones to stay away from? Thanks [Todays Threads] [This Message]

RE: Update Verity Collections Execution Time

2003-12-03 Thread Andy Ousterhout
Geoff, How do you efficiently update a collection? Andy That said, we typically take great care to ensure that the collections are regularly optimised and that they are efficiently updated. -- geoff http://www.daemon.com.au/ [Todays Threads] [This Message] [Subscription] [Fast

Query of Queries issue with 6.1

2003-12-03 Thread Craig Dudley
Afternoon I've just updated a customer site to 6.1 from 5.0 and am getting a very strange error with a QoQ, Basically, I'm creating a query object from a string that's being posted to this page, no problems here, I have a nice query object that works fine, mostly. But when I try to do

RE: Update Verity Collections Execution Time

2003-12-03 Thread Andy Ousterhout
Actually, I started using a DB query, didn't like the flexibility so moved to Verity.I update the DB daily from data in another system and use the Update action to do so when I add or change records.I am having no issues with search response times, just the update response times. It appears from

Re: variables within variables

2003-12-03 Thread Ubqtous
Scott, On 12/3/2003 at 10:23, you wrote: Ok so what am I doing wrong here? value=cfif isdefined('Evaluate(cookie.ans#i#)')Evaluate(cookie.ans#i#)/cfif /br / or value=cfif isdefined('cookie[ans#i#]')bah/cfif /br / isdefined() needs the name of a variable to check for, not the value

Re: Java error in coldfusion mx6.1

2003-12-03 Thread Joe Eugene
Are you trying to use some type of Java Class? Post your code. I have seen this error happen in CFMX 6.0, while trying to access Java Crimson DOM parsers. The issue was resolved in CFMX 6.1 related to DOM Parsers. Joe Eugene - Original Message - From: Andrew Scott To: CF-Talk Sent:

RE: Query of Queries issue with 6.1

2003-12-03 Thread Ryan Emerle
I've had this lovely issue come up before.Gotta love the fact that the columns are typed, but you have no control over it (AFAIK).What i had to do was insert a dummy row at the top of the query with the problematic field set as a string.This causes the column typing algorithm to set the column as

RE: OT: US Sales Tax Question

2003-12-03 Thread Matt Robertson
Its my understanding, from clients who have checked with the Board of Equalization, that CA web merchants charge tax based on their *own* county, just like a brick-and-mortar store does. Matt Robertson [EMAIL PROTECTED] MSB Designs,

Nulling or reseting password in MX 6.1

2003-12-03 Thread Schuster, Steven
OK, I forgot my Admin password on my MX 6.1 box, does anyone know how I can NULL it or reset it. I seem to remember some XML doc you could modify to do this but have since forgotten it's name and what to change. Steve http://www.houseoffusion.com/banners/view.cfm?bannerid=24 [Todays

RE: Nulling or reseting password in MX 6.1

2003-12-03 Thread Mike Townend
CFusionMX\lib\neo-security.xml set the var name='admin.security.enabled' boolean value='true'/ /var to false HTH -Original Message- From: Schuster, Steven [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 3, 2003 15:57 To: CF-Talk Subject: Nulling or reseting password in

Re: Nulling or reseting password in MX 6.1

2003-12-03 Thread Thomas Chiverton
On Wednesday 03 Dec 2003 15:57 pm, Schuster, Steven wrote: I seem to remember some XML doc you could modify to do this but have since forgotten it's name and what to change. neo-security.xml in var name='admin.security.enabled' set the value to false. -- Tom Chiverton Advanced ColdFusion

RE: Query of Queries issue with 6.1

2003-12-03 Thread Craig Dudley
Yer, thought of that and it works, thanks. Still very annoying though, wasted a few hours trying to track that down this morning. -Original Message- From: Ryan Emerle [mailto:[EMAIL PROTECTED] Sent: 03 December 2003 15:54 To: CF-Talk Subject: RE: Query of Queries issue with 6.1

QoQ - Truncating a character column

2003-12-03 Thread d.a.collie
Hello all, Keeping with the theme got a problem with QoQ I have a column in the 'qQuestData' query that holds the user input from a Text Area, if I look at it in the dump before it, the text is all there. When I look at it after perfuming my grouping (qReport)... the Query of Queries

Re: question about cookies..

2003-12-03 Thread Dan Farmer
I've tried a CFDUMP var=#cookie#, and funny enough it returns a whole set of different cookies than ( alert(document.cookie)) could it be tha to need to use _javascript_ to delete them because they were created with _javascript_? Someone mentioned that it might be because of page

RE: question about cookies..

2003-12-03 Thread cf-talk
Not sure if this is still an outstanding issue... but check the case sensitivity.It used to be that if you created a cookie called apple in _javascript_ ColdFusion wouldn't handle it too well.ColdFusion names all it's cookies in UPPER CASE.If you create the cookie in _javascript_ name it in all

RE: Date Range Query Issues

2003-12-03 Thread DURETTE, STEVEN J (AIT)
To answer your first question, ok, my brain isn't working properly yet.I was including them because I was just automatically thinking that the shift would end at the end of the day not the beginning and therefore if someone chose that day to start there would be an overlap.Using times in the test

RE: Update Verity Collections Execution Time

2003-12-03 Thread Tom Jordahl
No, CF uses a castrated version of the K2 engine.God knows what they castrated, other than the # docs limit. The K2 server and VDK libraries we use in ColdFusion are the fully capable release 2.6.1 binaries. Our license limits the (legal) document count. -- Tom Jordahl Macromedia Server

Re: RE: Update Verity Collections Execution Time

2003-12-03 Thread ksuh
Thanks for the info.It makes me feel better (really, it does). - Original Message - From: Tom Jordahl [EMAIL PROTECTED] Date: Wednesday, December 3, 2003 11:09 am Subject: RE: Update Verity Collections Execution Time No, CF uses a castrated version of the K2 engine.God knows what

RE: Verity on RedHat ES 2.1

2003-12-03 Thread Christine Lawson
Hi Tim, I'll admit that this is a little confusing, especially if you read on of our documents that states Red Hat Linux 7.2, 7.3, 8.0, 9, AS ES 2.1, AS ES 3.0** **Verity does not support these OS's... I was also unclear about this and my inclination was to originally say it was not supported.

RE: RE: Update Verity Collections Execution Time

2003-12-03 Thread Tom Jordahl
No problem. :-) -- Tom Jordahl Macromedia Server Development -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 03, 2003 1:08 PM To: CF-Talk Subject: Re: RE: Update Verity Collections Execution Time Thanks for the info.It makes me feel better

RE: Verity on RedHat ES 2.1

2003-12-03 Thread Tom Jordahl
Tim Blair [EMAIL PROTECTED] wrote: Well, now you say that :-) I only just noticed it hiding at the bottom there...  :) I'm sure someone @macromedia.com will chip in and confirm though /me watches the tumbleweed slowly drifting by... ;) Hey, we are here but have you SEEN the volume on this

RE: Update Verity Collections Execution Time

2003-12-03 Thread Tom Jordahl
[EMAIL PROTECTED] wrote: I agree with Matt.  The Verity that comes with CF sucks.  Hard. So. I am in the process of planning what Blackstone will have in terms of search technology.I am interested in hearing what people have to say about Verity in ColdFusion. If you want to make sure I see

RE: CFMX 6.1 Install Problems

2003-12-03 Thread Christine Lawson
Hi Tony, Is the web server definitely running? If so, I'm not entirely sure why it isn't detecting it but you could install with the built-in web server and then manually configure CFMX to use IIS: http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/config11.htm#wp111759 0

OT:Shipping Charges

2003-12-03 Thread Bruce Sorge
I know that discussions have been going on regarding how to implement a particular shipping estimator, but what I would like to ask is, what is a good tag to use that will allow me to present the customer with the best shipping option? Currently I have a site that I charge a flat rate shipping

Re: question about cookies..

2003-12-03 Thread Michael Hodgdon
Out of curiosity, is the persistence causing a problem for your code, or did you just notice that the output of this cookie was retaining these values after deleting them?If there is no problem, I would say you are all set.It would help to see a little more code though from the page where you are

RE: Date Range Query Issues

2003-12-03 Thread Candace Cottrell
The situation is a little eccentric, as these are not work shifts, they are on-call shifts. So, a person could have a shift that lasted a whole month. Another thing to note is that while Dr. X's shift ENDS at 8AM 12/5/03, DR. X's BEGINS at 8AM 12/5/03. :) Candace K. Cottrell, Web Developer The

cfif dynamic lt / gt

2003-12-03 Thread Wurst, Keith D.
hey everyone. i want to write a cfif tag that checks to see if a var is defined and switches the gt / lt attribute based on that check. for example - if the variable is defined, then write cfif blah lt 4 if the variable is not defined then write... cfif blah gt 4 any help is

RE: Shipping Charges

2003-12-03 Thread Tangorre, Michael
Check into some of the APIs and services available for developersYou should be able to send some info and get back rates, times, etc.. FedEx: http://www.fedex.com/us/about/technology/automation.html?link=4 http://www.fedex.com/us/about/technology/automation.html?link=4 USPS:

Re: cfif dynamic lt / gt

2003-12-03 Thread Bushy
RTFM --Original Message Text--- From: Wurst, Keith D. Date: Wed, 3 Dec 2003 14:10:47 -0500 hey everyone. i want to write a cfif tag that checks to see if a var is defined and switches the gt / lt attribute based on that check. for example - if the variable is defined, then write cfif blah lt 4

RE: cfif dynamic lt / gt

2003-12-03 Thread Barney Boisvert
cfif ( isDefined(var) AND var2 LT 4 ) OR ( NOT isDefined(var) AND var2 GT 4 ) !--- whatever --- /cfif -Original Message- From: Wurst, Keith D. [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 03, 2003 11:11 AM To: CF-Talk Subject: cfif dynamic lt / gt hey everyone. i want to

RE: cfif dynamic lt / gt

2003-12-03 Thread John Stanley
cfset blah = 2 cfif isDefined(this_variable) cfset conditional = blah lt 4 cfelse cfset conditional = blah gt 4 /cfif cfif #Evaluate(conditional)# 1 cfelse 2 /cfif -Original Message- From: Wurst, Keith D. [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 03, 2003 2:11 PM To:

JRUN/JSP and Cold Fusion are about to kill me....

2003-12-03 Thread Schuster, Steven
We had this pretty app that used a JSP page to display BLOB data from Oracle running on MX 6.1 and O8i. It was working perfectly on box A, then I moved it to box B which has the exact same settings in the CF administrator and uses the exact same classes12.zip files (et all) and it is FUBAR.

RE: cfif dynamic lt / gt

2003-12-03 Thread Ian Skinner
Something fancier then cfif IsDefined(blah) cfif blah LT 4/cfif cfelse cfif blah GT 4/cfif /cfif But that doesn't make much cense to me, since if the variable is undefined how can you compare it, unless you are comparing a different variable then the one you are checking to see if it is

Test..

2003-12-03 Thread Hassan Arteaga Rodriguez
__ MSc. Hassan Arteaga Rodrguez Microsoft Certified System Engineer. DIGI- Grupo de Desarrollo COPEXTEL, S.A. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: cfif dynamic lt / gt

2003-12-03 Thread Jim Campbell
You could probably use a combination of DE() and Evaluate() for that, but they're resource hogs, and the code would be pretty hard to read. I assume you're not checking for blah, so it would likely be better to just use... if (isDefined(fnord)) { if (blah lt 4) { } } else { if (blah gt 4)

Array Issues.

2003-12-03 Thread Bailey, Neal
Hey guys... I am trying to count an Arrays length but I keep getting strange java errors. Here is what I'm doing. cfset SESSION.Testimonials = StructNew() !--- Lets collect these values from the User; start blank --- cfset SESSION.Testimonials.business = cfset

RE: Array Issues.

2003-12-03 Thread Raymond Camden
Err, you didn't make an array, you made a struct. cfset session.testimonials = structNew() If you want to count the keys, use structCount() [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Array Issues.

2003-12-03 Thread John Stanley
this is a structure you need to use #structcount(session.Testimonials)# or cfdump var=#session.Testimonials# -Original Message- From: Bailey, Neal [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 03, 2003 2:44 PM To: CF-Talk Subject: Array Issues. Hey guys... I am trying to

RE: Java error in coldfusion mx6.1

2003-12-03 Thread Andrew Scott
Joe, Its ok it is all sorted now, the problem was that being new to java I was not aware that it was case sensitive. When I created the class as public class Account it told me that it needs to be in Account.java, so I renamed the file this and it worked. _ From: Joe Eugene

RE: Recursion and Breadcrumbs

2003-12-03 Thread Andre Turrettini
Jake, I did something that might help you.Its a recursive function that uses one db call.You can see it at work by creating an account and creating a survey here.www.surveys.theanticool.com http://www.surveys.theanticool.com .The interface to create the survey uses only ie at this point(I know I

Re: question about cookies..

2003-12-03 Thread Dan Farmer
Yes Michael, persistence is causing a problem I am setting the cookies via _javascript_ with the following code see very below for how I'm trying to delete them . Just seems funny and odd, that a JS alert ( returns different cookie values ). For example... the QUESTION cookie.. keeps

RE: question about cookies..

2003-12-03 Thread cf-talk
Dan, Did you get my earlier message about naming all of your cookies in UPPER CASE?That just might solve your problem. -Novak -Original Message- From: Dan Farmer [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 03, 2003 12:26 PM To: CF-Talk Subject: Re: question about cookies..

RE: question about cookies..

2003-12-03 Thread Dan Farmer
NOVAK -- Yes I did get your message. And I did change my code to reflect that ( all uppercase cookie names ). But still having the same problem. Do you think the fact that I'm working on a local testing machine ( could that be the culprit ). Using CFMX 6.1. Something that I noticed... when I

RE: question about cookies..

2003-12-03 Thread cf-talk
I think that one thing I had to do was delete ALL cookies from my browser... then make sure all my code named cookies in UPPER CASE.Once I had the old cookies out of there things worked better. Give that a try and let me know how it works. -Novak -Original Message- From: Dan Farmer

RE: question about cookies..

2003-12-03 Thread Dan Farmer
JUST FOUND OUT SOMETHING... After closing my browser and reloading the page. I noticed all the cookies were deleted ! ( like I wanted them to be ). So this means that the browser or ( coldfusion ) was not accepting the expires attriubute that I was giving it. According to my CF developer

Calling CFCs directly from Form Action attribute.

2003-12-03 Thread Angel Stewart
Hello all, i am trying to write a modular application using .cfcs. I'm now trying to use a .cfc to handle a data input/edit/delete series of actions, direct from a form. i.e. I have form name=Userdetail action=""> METHOD=POST . However, this looks for heldesk_user.cfc in the current

CFMail Problem (Valid Email Addresses in TO and FROM fields)

2003-12-03 Thread Ming Lu
Hi, Problem: In CFMail tag (ColdFusion 5 server), at least one of the email addresses in TO or FROM fields has to be a valid email address on the same server where the email to be sent, otherwise the email will be ended up in UnDelivr folder and can never be able to sent out when none of email

Re: CFFUNCTION - Any thoughts??

2003-12-03 Thread Bryan Stevenson
I got the thumbnailing working on Linux!!I made the jvm.config file changes as laid out on the MM site and on the Rat-web blogthe one thing I didn't do was reboot the serverDOH!!! (welcome to Linux...hehe). Anyways...works likea champ now...thanks to all you helped out Cheers Bryan

RE: Calling CFCs directly from Form Action attribute.

2003-12-03 Thread Barney Boisvert
If you're requesting a CFC directly from the client, it has to be exposed on the web root just like any other file, because the web server (Apache, IIS, whatever) has to do the translation from URL to filesystem path, and it has no knowledge of the internal CF mappings. Cheers, barneyb

OT: Dreamweaver MX

2003-12-03 Thread Jeff Beer
In DWMX you can add tag libraries for just about any language (PHP, VB, CF, etc). I can't figure out how to change the delimiter for a specific library. I want to add a bunch of tags for an image gallery creator (Arles, if you know it), and want to be able to plug in the tags using dreamweaver.

RE: CFMail Problem (Valid Email Addresses in TO and FROM fields )

2003-12-03 Thread Tom Jordahl
This sounds like a problem with the way your mail server (SMTP server) is set up. ColdFusion does not have restrictions of this kind. -- Tom Jordahl Macromedia Server Development -Original Message- From: Ming Lu [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 03, 2003 4:23 PM To:

Re: CFMail Problem (Valid Email Addresses in TO and FROM fields)

2003-12-03 Thread Ubqtous
Ming, On 12/3/2003 at 16:22, you wrote: ML Is this a CF problem or SMTP server setting problem? This is a SMTP issue. Cold Fusion does nothing but write out the email and pass it to the mail server. If CF cannot connect to the mail server for whatever reason, then it will dump the message into

Dreamweaver MX Word Wrapping

2003-12-03 Thread Jacob
In Dreamweaver MX, how do you turn word wrap on? When I type the coding, it just carries across forever.I went to Edit - Preferences - Code Format and check Automatic Wrapping after 70, but still does not work. Thanks Jacob [Todays Threads] [This Message] [Subscription] [Fast

Re: CFMail Problem (Valid Email Addresses in TO and FROM fields)

2003-12-03 Thread Scott Weikert
Ubqtous writes: As I recall, in CF4.5- the email addresses in the TO and FROM attributes of CFMAIL had to be well-formed, but I think this requirement was relaxed in CF5 or MX. I've found the opposite. Badly formed email addresses in the TO in CFMX error out. CF5 used to try sending them

RE: Dreamweaver MX Word Wrapping

2003-12-03 Thread Barney Boisvert
Do you want it to insert line breaks, or just wrap the text, like in Notepad?If the latter, click the right-most icon in the document toolbar (the one with the 'Title' field), and there is a word wrap option. Cheers, barneyb -Original Message- From: Jacob [mailto:[EMAIL PROTECTED]

RE: Dreamweaver MX Word Wrapping

2003-12-03 Thread Jacob
click the right-most icon in the document toolbar (the one with the 'Title' field), and there is a word wrap option... That was it! Thanks At 02:41 PM 12/3/2003, you wrote: Do you want it to insert line breaks, or just wrap the text, like in Notepad?If the latter, click the right-most icon in

Re: CFMail Problem (Valid Email Addresses in TO and FROM fields)

2003-12-03 Thread Jochem van Dieten
Ming Lu wrote: In CFMail tag (ColdFusion 5 server), at least one of the email addresses in TO or FROM fields has to be a valid email address on the same server where the email to be sent, otherwise the email will be ended up in UnDelivr folder and can never be able to sent out when none of

Re: CFMail Problem (Valid Email Addresses in TO and FROM fields)

2003-12-03 Thread Ubqtous
Scott, On 12/3/2003 at 17:49, you wrote: SW I've found the opposite. Badly formed email addresses in the TO in SW CFMX error out. CF5 used to try sending them regardless. I'm pretty sure CF4.5 (or maybe it was 4.0) didn't like malformed addresses. CF5 is when I noticed that it didn't matter

Re:Calling CFCs directly from Form Action attribute.

2003-12-03 Thread Angel Stewart
That's what I figured. I was hoping there might have been some form of fancy dot notation or something to get it to recognise the internal CF Mappings. I guess not eh ? :-) -Gel [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Calling CFCs directly from Form Action attribute.

2003-12-03 Thread Barney Boisvert
If it's an important feature, you could write a faade CFC or CFM that would take a parameter naming the CFC, and simply delegate the request to it with CFINVOKE.Something like Fusebox or Mach-II, to some extent, though much simpler. Cheers, barneyb -Original Message- From: Angel

Re: CFMail Problem (Valid Email Addresses in TO and FROM fields)

2003-12-03 Thread Scott Weikert
Ubqtous writes: cfmail to=ubqtous from=[EMAIL PROTECTED] subject=testTEST/cfmail cfmail to=[EMAIL PROTECTED] from=ubqtous subject=testTEST/cfmail cfmail to=ubqtous from=ubqtous subject=testTEST/cfmail Try running ubqtous@@ubqtous.com through and see. That was what my issue was yesterday -

Re: CFMail Problem (Valid Email Addresses in TO and FROM fields)

2003-12-03 Thread Ubqtous
Scott, On Wednesday, December 3, 2003, 7:07:54 PM, you wrote: SW Try running ubqtous@@ubqtous.com through and see. That was what my issue SW was yesterday - emails with two @'s in'em (sometimes together, sometimes SW not). Ah-ha, MX does error out with @@ in the TO field: cfmail

OT Flex beta

2003-12-03 Thread Michael Dinowitz
If anyone in the ColdFusion community has been accepted to the Flex beta program, could you please join the HoF Flex mailing list and just say hi. I just want to know that someone in the community has been accepted. Everyone I've talked to, including some of the top names in the community, has

  1   2   >