Re: CFINCLUDE not including: FB3/Linux

2006-10-18 Thread Josh Nathanson
Thanks Sandra,

The cases all match up, and the file is definitely there.

In FB3 it will throw the "could not find included template" error if the 
file is not found, so that is not the issue.

It's really weird - it only does this skipping occasionally, and there 
doesn't seem to be any pattern to it, except that it happens after I upload 
a change to the file that is supposed to be included (but not every time I 
do this).

-- Josh


- Original Message - 
From: "Sandra Clark" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Wednesday, October 18, 2006 12:20 PM
Subject: RE: CFINCLUDE not including: FB3/Linux


> The only thing that comes to my mind is that Linux is case sensitive while
> Windows is not.  Is the file name in the cfinclude exactly like it is in 
> the
> file system?  I know that Fusebox 4 will ignore a  if the file 
> is
> not there unless an attribute is set in the  in the 
> circuit.xml.
> Possibly there is some try/catch in the core files in FB3 that also 
> ignores
> a file if it is not found
>


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:257269
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


CFINCLUDE not including: FB3/Linux

2006-10-18 Thread Josh Nathanson
Hey all,

I am running a FuseBox 3 app on Linux.

Sometimes, when I make a change to a .cfm file and upload it, the 
application will start skipping over the cfinclude which references the 
uploaded file as though it's not even there.  No error or anything, it just 
skips right over it. When I look at the generated html code, there is just 
nothing there -- it looks like CF is not "seeing" the cfinclude.

So, say I make a change to "myFile.cfm" and upload it.
I have another file that has 
It skips over the  as though it doesn't exist.

This never happens on my local dev box which is Windows XP.  The exact same 
code will work fine.

If I rename the file that is supposed to be included, and change the name in 
the cfinclude tag, it works again.  So there must be some weird caching 
thing going on somewhere.  I cleared the template cache in cfadmin but it 
had no effect.  I have "Trusted Cache" unchecked, "Save Class Files" 
checked, and "Cache web server paths" unchecked.

Anyone seen anything like this before?

-- Josh 


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:257250
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Form Fields - storing unsaved values with a Page refresh

2006-10-18 Thread Josh Nathanson
How about submitting the form, and cfparam'ing all the form fields, then 
make the value of each field "#form.whatever#".  That will save any changed 
data.

You'll probably need to set up some logic to determine if you only want to 
change the ID, or you really are submitting the whole form.

-- Josh




- Original Message - 
From: "Derek" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Wednesday, October 18, 2006 10:59 AM
Subject: Form Fields - storing unsaved values with a Page refresh


> Can anyone help me with this?
>
> I have an onChange function that refreshes my coldfusion page and puts the
> new ID in the URL and then the SQL uses this ID to get certain information
> from the database. But when it refreshes with the new ID I lose any 
> changed
> data in the form... any suggestions?
>
> My code goes kinda like this
>
> 
> function filter(ID){
> self.location.href=('index.cfm?ID=' + ID + '');
> }
> 
>
> 
> SELECT
> FROM
> WHERE url.Id
> 
>
> 
>
> 
>
> 
> 
> 
> 
>
> 
>
> Let me know if you need more details. Thanks so much for your time. I dont
> know where coders would be without forums.
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:257246
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfadmin 404 with apache

2006-10-18 Thread Josh Nathanson
Doug - make sure you have the following in your httpd.conf file (in the conf 
directory of your apache directory):

DirectoryIndex index.html index.shtml index.cfm

You have to have that "index.cfm" on the end -- sometimes it gets stripped 
when you do a reinstall of CF.

Don't know if that is what your issue is but it sounds like something I went 
through when I installed Apache.

-- Josh


- Original Message - 
From: "Rob Wilkerson" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Wednesday, October 18, 2006 6:33 AM
Subject: Re: cfadmin 404 with apache


> Can you send you JRun module block like I did earlier?  That might help.
>


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:257224
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Why does CF remove my leading 0''s??

2006-10-13 Thread Josh Nathanson
When you are inserting/updating into your db, you would need this:

ccfield = '#form.ccfield#'

rather than
ccfield = #form.ccfield#

I think if you do the first, it should save your 0.  If you do the second, 
CF thinks it's not a string.

-- Josh


- Original Message - 
From: "Will Tomlinson" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Friday, October 13, 2006 10:50 AM
Subject: Re: Why does CF remove my leading 0''s??


> >Depending on the data type of the variable / database field, it will.
>>If the field is set top number or integer, all leading 0s will be
>>dropped.
>>The DB field will need to be CHAR or VARCHAR
>
> So is the solution to check for the len()? If it's 3, add a 0 back to it? 
> Sounds like a goofy solution, but hey, this is Will talkin'!
>
> The db is no problem. I've got that set to varchar. I'm just tryin to 
> ensure the data is correct before it even GETS to the db - no luck.
>
> Thanks,
> Will
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:256730
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: mySql connector J

2006-10-12 Thread Josh Nathanson
You're all good, except in the JDBC URL, you need the name of your actual 
database rather than the datasource name, if they're not the same.  It's 
looking for the database name, as it doesn't know the datasource name yet.

-- Josh


- Original Message - 
From: "Doug Brown" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Thursday, October 12, 2006 5:04 PM
Subject: mySql connector J


> Can someone tell me what they have listed in CF for the mySql connector?
>
> Here is what I have
>
> CF DataSource = myDsn
> JDBC URL = jdbc:mysql://localhost:3306/myDsn
> Driver Class = com.mysql.jdbc.Driver
> Driver Name = blank
> Username = ROOT
> Password = ***
>
> I get the following error
>
> Connection verification failed for data source: 
> java.sql.SQLException: No suitable driver available for , please check 
> the driver setting in resources file, error: null
> The root cause was that: java.sql.SQLException: No suitable driver 
> available for nexbid, please check the driver setting in resources file, 
> error: null
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:256608
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Money no Object - Best Online Editor for dealing with cut'n p aste from Word

2006-10-12 Thread Josh Nathanson
Heh...my gf works at a big law firm, and she says the lawyers are the 
biggest spoiled babies...they absolutely refuse to lift a finger to learn 
anything...their attitude is "someone else should do that for me, I'm a 
lawyer...I shouldn't have to learn anything..."  They don't even answer 
email...

So, sorry Les and good luck!



- Original Message - 
From: "Dave Watts" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Thursday, October 12, 2006 9:35 AM
Subject: RE: Money no Object - Best Online Editor for dealing with cut'n p 
aste from Word


>> That's been my directive to them all along, but they're
>> LAWYERS, and they're gonna use WORD and nothing but the WORD
>> until hell freezes over.
>>
>> So, gotta keep the client happy!
>
> I can't help with your technical problem, but in my experience it is
> impossible to keep lawyers happy.
>
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
>
> Fig Leaf Software provides the highest caliber vendor-authorized
> instruction at our training centers in Washington DC, Atlanta,
> Chicago, Baltimore and Northern Virginia, or on-site at your location.
> Visit http://training.figleaf.com/ for more information!
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:256538
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: IDE's

2006-10-11 Thread Josh Nathanson
Getting a bit OT here, but in terms of CF help/reference, I've become a 
recent convert to cfquickdocs...for those who haven't tried it, it's the 
same info as the MM/Adobe LiveDocs (scraped from there, so includes comments 
and everything), but AJAX'ed, so WAY faster and easier to get the 
information you're looking for.

http://www.cfquickdocs.com

-- Josh



- Original Message - 
From: "Snake" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Wednesday, October 11, 2006 9:26 AM
Subject: RE: IDE's


> No, whats online is better.
>
>
>
> -Original Message-
> From: Aaron Rouse [mailto:[EMAIL PROTECTED]
> Sent: 11 October 2006 17:07
> To: CF-Talk
> Subject: Re: IDE's
>
> I think the help sucks as well but isn't it pretty much what is offered
> online by Adobe just less the comments?
>
> On 10/11/06, Snake <[EMAIL PROTECTED]> wrote:
>>
>> I actually prefer to have the ending tag created when I close the
>> openeing tag.
>> So I guess everyone has different preferences.
>> Also he help in DW sucks compared to HS+, it doesn't have anywhere
>> near as much into on tags and fucntions.
>> I usually have to pop open HS+, right click, insert expression, and
>> pull up the help from there.
>>
>> Russ
>>
>>
>
> --
> Aaron Rouse
> http://www.happyhacker.com/
>
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:256378
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: tutorials on how to slice a design up?

2006-10-11 Thread Josh Nathanson
Just wanted to chime in that I also find Fireworks much easier to use than 
Photoshop/ImageReady when it comes to slicing for the web.  If you don't 
like the 1-pixel shims that it generates, you can change your slicing in the 
Preferences menu to produce no shims, or shims from image.  Also you can set 
the slice naming convention however you want.  I started out with FW2 and 
never looked back.

I think Macromedia was way ahead of the game in terms of web design (did 
anyone use Adobe's web design product?), and Adobe saw that which is why 
Adobe bought MM -- if you can't beat 'em, buy 'em!

-- Josh




- Original Message - 
From: "Ben Nadel" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Wednesday, October 11, 2006 8:45 AM
Subject: RE: tutorials on how to slice a design up?


> Andy,
>
> AWESOME response my man. Thanks so much for taking time to read through
> my rant and count-post. I have to say that much of my experience is
> geared towards Photoshop directly and not so much towards Image Ready,
> so I see from your response that there are a lot of differences between
> the two applications.
>
> I guess the bottom line is that both applications are very high-level
> and very capable. I guess another matter of to-each-his-own.
>
> One thing though is that the whole cick for the context menu of layers
> below the cursor. That is a cool feature (and actually something that
> would be cool to have in FireWorks)... But more often than not, there's
> like 30 items in that last .. YIKES!
>
> But again, thanks so much for the response (and the blog post).
>
> -Ben
>
> ..
> Ben Nadel
> Certified Advanced ColdFusion Developer
> www.bennadel.com
>
>
> -Original Message-
> From: Andy Matthews [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, October 11, 2006 11:26 AM
> To: CF-Talk
> Subject: RE: tutorials on how to slice a design up?
>
> I'd be happy be happy to do that Ben. I'll address each point in turn:
>
> 1) Click-Select-Alter Functionality
> You say Fireworks just "knows" which layer/object to select.
> I say that Photoshop offers so much fliexibility with it's
> layers, layers sets
> and adjustment layers that Fireworks would just become confused.
> As for YOUR
> interaction with layers, Photoshop makes it so easy to do.
> Here's a short list
> of ways you can interact with layers and their data in
> Photoshop.
>
> creating new layers
> CTRL + SHIFT + N = new layer (and name it)
> CTRL + SHIFT + ALT + N = new layer no naming options
>
> dealing with multiple layers
> CTRL + [ or ] = moves a layer up and down in the stack
> CTRL + SHIFT + [ or ] = moves a layer to the top or bottom of
> the stack
>
> ALT + [ or ] = selects the next visible layer (up or down) in
> the stack
> ALT + SHIFT + [ or ] = selects the bottom or top layer in the
> stack
>
> If you want to select a specific visible object on the workboard
> but you don't
> know what layer it's on:
> CTRL + right click brings up a menu of layers directly under
> your cursor
> CTRL + ALT + right click takes you to the very top layer under
> your cursor
>
> Photoshop does not offer any sort of visual feedback on the
> currently selected
> RASTER object, but it does offer visual clues for text boxes and
> vector objects.
>
> 2) Data Driven Graphics Wizard
> I believe that Photoshop offers this functionality, but I've not
> used it. I know
> that Illustrator has had this for the last 3 versions.
>
> 3) Flash-Style Symbol Library
> Photoshop doesn't offer a library of symbols like FW does, but
> it does have layer
> styles. This lets you create one styles and apply it to multiple
> layers/objects.
> It also allows you to do this action to "all linked layers".
>
> 4) Flash-Style Interface
> This will soon be a non-issue as Adobe will be appliying the
> same interface to
> all of their applications in the next iteration.
>
> 5) Improved Optimization
> As I haven't used FW in many years I can't say that this is
> true. However, when I
> switched back to Photoshop a few years ago, I found it just the
> opposite.
> Image Ready
> file sizes and quality were leaps and bounds ahead of FW. I'm
> sure that the two apps
> played leapfrog.
>
> 6) Multiple Frames
> Photoshop doesn't offer this (that I know of) but Image Ready
> does. IMO Image Ready's
> animation tools are far superior to FW. In fact, that's one of
> the main reasons I
> changed over back in the day.
>
> 7) Batch Processing
> Are you kidding? Photoshop invented batch processing via actions
> and the abi

Re: IDE's

2006-10-11 Thread Josh Nathanson
Hey... not everyone here hates Dreamweaver.

It's a bit sluggish sometimes, but since I am always doing design stuff as 
well as coding, I need the WSIWYG, the find/replace is awesome, and it ties 
in nicely with CF.


-- Josh

- Original Message - 
From: "Dave Watts" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Wednesday, October 11, 2006 6:49 AM
Subject: RE: IDE's


>> I usually have to run the find/replace several times in DW
>> until it picks everything up.
>
> I've never had that problem, and I use it all the time.
>
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:256356
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Tricky Form validation Question (for me at least)

2006-10-10 Thread Josh Nathanson
If you are looking for client side validation, CFFORM/CFINPUT is your 
friend.  You don't need to know any javascript to use it, CF writes the 
Javascript for you.  Check the live- or quick-docs for specific usage.

If you are looking to make things a bit more fancy, you could throw an 
onChange event on your select list that would have the second fields 
disabled unless "other" was selected.  It would be something like



That would give your users the info visually that they didn't need to fill 
out the second fields if they are not "other".

You would still need to use CFFORM to do validation on the second two fields 
in the case of "other".

-- Josh



- Original Message - 
From: "Les Mizzell" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Tuesday, October 10, 2006 9:27 AM
Subject: Tricky Form validation Question (for me at least)


> This is probably going to take more javascript than I know how to do,
> since I suck at javascript...
>
> First page of a multi-part form has a drop-down of admin namex to pick 
> from.
>
>
> 
>  Other - Enter Information Below!
>
>  #MyData.AdminNam1#
>
> 
>
> If you ain't in the list, then you should fill in "adminNAME" and
> "adminEMAIL" text fields below that.
>
>
> I've not quit figured out how to validate this on one page. If "Other"
> is picked in the select, then I need validation for "adminNAME" and
> "adminEMAIL" to happen before the form can be submitted. If "Other"
> ain't picked, then ignore them...
>
> I can check for this on the NEXT page of the form and force them to fill
> in the blanks there, but I want it to take place all on the first page.
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:256140
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: removing bad emails from bounced emails and db

2006-10-07 Thread Josh Nathanson
Sweet!  Glad to be of service.

-- Josh


- Original Message - 
From: "Dave Lyons" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Friday, October 06, 2006 10:24 PM
Subject: Re: removing bad emails from bounced emails and db


> what i ended up doing was downloading all the bounces in outlook and 
> exporting them all to a big csv file. Then I got this 
> http://www.maxprog.com/EmailExtractor.html and dropped the csv file into 
> that and it spit out a nice list of emails, then ran them into a list and 
> thru rays getemail udf and into db then compared them against the mailing 
> list db and removed any matches. Seems to have worked well.
>
> Thanks for the suggestion i woulda never thought of it
>
>
>
>
>
>
>
>
>
>>Hi Dave,
>>
>>I should have mentioned I was using Outlook Express.  I funneled all the
>>emails into an Outlook Express folder I created called "unsubscribe", then
>>selected all the emails in that folder and dragged them out of Outlook
>>Express into a folder on my desktop.  This automatically saved them all as
>>separate .eml files, which are just text files containing the email 
>>source.
>>So I didn't really do any exporting as such, just drag and drop.  Not sure
>>if this will work in plain Outlook or not.
>>
>>-- Josh
>>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:255885
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: removing bad emails from bounced emails and db

2006-10-06 Thread Josh Nathanson
Hi Dave,

I should have mentioned I was using Outlook Express.  I funneled all the 
emails into an Outlook Express folder I created called "unsubscribe", then 
selected all the emails in that folder and dragged them out of Outlook 
Express into a folder on my desktop.  This automatically saved them all as 
separate .eml files, which are just text files containing the email source. 
So I didn't really do any exporting as such, just drag and drop.  Not sure 
if this will work in plain Outlook or not.

-- Josh


- Original Message - 
From: "Dave Lyons" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Friday, October 06, 2006 3:00 PM
Subject: Re: removing bad emails from bounced emails and db


> Im already running into the problem of getting them into a txt file.
> I was thinking outlook would do it, so i busted out windows but after bout 
> 5 minutes working on it i was ready to shoot myself
>
> Somewhere on a old hd or bu disk i have a program that will export it 
> nicely to a txt file, just gotta find it and hope it still works a bit.
>
> i got a fully loaded macbook pro so it should handle whatever i throw at 
> it(which might be a dell and xp pro in about 5 more mintues!!, duck mac 
> duck!)
>


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:255864
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: removing bad emails from bounced emails and db

2006-10-06 Thread Josh Nathanson
Hi Dave,

Cool, glad I could help!

The one possible gotcha will be dragging the emails out of your Tbird Inbox 
folder and into another folder.  Not sure on a Mac if it automatically 
converts them into text files as it does on Windows.

Also, dragging and dropping 10,000 emails at once might be kind of sketchy, 
so you'll probably want to break them into chunks somehow.  Although if you 
have a relatively new Mac it should be able to handle it.

Hope it works out for you.

-- Josh



- Original Message - 
From: "Dave Lyons" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Friday, October 06, 2006 1:08 PM
Subject: Re: removing bad emails from bounced emails and db


> Josh,
> The more i think about it the better this sounds. Once the big lot is down 
> what i have will work fine.
>
> Before i got this one the previous site had NO checking at all on the 
> emails going into the db, so there was tons of crap in there, almost 
> 60,000 bad entries when i cleaned it out. I do pretty decent checking now, 
> there are just a lot of old email addies in it.
>
> Im on a mac so i think i will dl thunderbird and do this.
>
> thanks for the suggestion, i think in this particular case it is the best 
> solution so far.
>
> dave
>
>
>
>>Dave -- I have used a tag like the activsoftware one before.  They are 
>>great
>>if you are verifying a single email address as legit before sticking it in
>>your db.  They actually go out and check the domain.  However, if you are
>>doing 10,000 of these, I think it would be prohibitively slow.  Also, you
>>already know they are bad emails since they bounced, correct?
>>
>>Once you have moved the bounced emails around as I described before, the
>>work is all done except running your script to parse the email address and
>>remove it from your db.
>>
>>I was forced into figuring this out since I was in essentially the same
>>situation as you, and I didn't want to go through 300 emails and manually
>>remove each email from the db.
>>
>>You still might want the activsoftware tag though, those are good for
>>keeping bad emails out of your db in the first place.
>>
>>-- Josh
>>
>>
>>
>>
>>- Original Message - 
>>From: "Dave Lyons" <[EMAIL PROTECTED]>
>>To: "CF-Talk" 
>>Sent: Friday, October 06, 2006 12:31 PM
>>Subject: Re: removing bad emails from bounced emails and db
>>
>>
>>>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:255856
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: removing bad emails from bounced emails and db

2006-10-06 Thread Josh Nathanson
Dave -- I have used a tag like the activsoftware one before.  They are great 
if you are verifying a single email address as legit before sticking it in 
your db.  They actually go out and check the domain.  However, if you are 
doing 10,000 of these, I think it would be prohibitively slow.  Also, you 
already know they are bad emails since they bounced, correct?

Once you have moved the bounced emails around as I described before, the 
work is all done except running your script to parse the email address and 
remove it from your db.

I was forced into figuring this out since I was in essentially the same 
situation as you, and I didn't want to go through 300 emails and manually 
remove each email from the db.

You still might want the activsoftware tag though, those are good for 
keeping bad emails out of your db in the first place.

-- Josh




- Original Message - 
From: "Dave Lyons" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Friday, October 06, 2006 12:31 PM
Subject: Re: removing bad emails from bounced emails and db


> yes the newsletter still goes out.
> The mail is sent out of a seperate account so that it will collect bounces 
> basically the same was as using failto, so there is no worries about 
> getting "good emails".
>
> Actually, thats a pretty good idea ya got there!
>
> At this point im waiting to hear back from the activesoftware folks, the 
> have a tag there that will do this but in another way, which would work 
> perfect. http://www.activsoftware.com/email/verify/
>
> The cost aint no biggie but they have it listed as a free tag as well, so 
> of course free would be better.
>
>
>
>>Hi Dave,
>>
>>Are you still actively sending out the newsletter?  If so, maybe you could
>>set up your own pop box to receive the bounces (this would depend on how
>>you're sending the newsletter, you need contol -- if cfmail then set the
>>failto attribute), then download them via your favorite email client
>>(thunderbird or whatever) to your local box overnight or something.  Then
>>you copy them into a directory (on Windows they are automatically 
>>converted
>>to .eml text files when you do this), then ftp them as text files up to 
>>your
>>server and use cfdirectory to loop over the files, parse out the email
>>addresses and update your db.  That way you don't have to worry about 
>>cfpop.
>>
>>It will still take a long time to move all the files around but probably 
>>way
>>faster than cfpopping each one.
>>
>>I had to do something similar recently, although it was more like 300 
>>emails
>>than 10,000, it worked dandy.  I also used Ray's getEmail function to 
>>parse
>>out the email addresses.
>>
>>-- Josh
>>
>>
>>
>>- Original Message - 
>>From: "Dave Lyons" <[EMAIL PROTECTED]>
>>To: "CF-Talk" 
>>Sent: Thursday, October 05, 2006 7:08 PM
>>Subject: removing bad emails from bounced emails and db
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:255846
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfdocument underline in Linux

2006-10-06 Thread Josh Nathanson
CFDocument is notoriously buggy.  I think it's because it's relatively new 
and all the kinks haven't been worked out yet.  If you go to the LiveDocs 
site (http://livedocs.macromedia.com/coldfusion/7/htmldocs/part_cfm.htm) and 
do a search for the CFDocument tag, you'll see all the comments added at the 
bottom by disgruntled users of the tag.  At the bottom there is a link 
called "bug reporting".

-- Josh


- Original Message - 
From: "Brad Wood" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Friday, October 06, 2006 12:08 PM
Subject: RE: cfdocument underline in Linux


> Anybody???
>


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:255832
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: URL Parameters Ignored

2006-10-06 Thread Josh Nathanson
OK sorry, I got the same behavior as Ben when I clicked the link on the 
page, so it probably is a session issue.

-- Josh


- Original Message - 
From: "Ben Nadel" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Friday, October 06, 2006 11:46 AM
Subject: RE: URL Parameters Ignored


> Interesting... I just clicked on the link and it DID redirect me. But,
> when I clicked on it a second time, I got the target page. Perhaps there
> is something that it is checking regarding SESSION that is forcing
> people back? I would check session info???
>
>
> ..
> Ben Nadel
> Certified Advanced ColdFusion Developer
> www.bennadel.com
>


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:255822
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: URL Parameters Ignored

2006-10-06 Thread Josh Nathanson
I got the redirect on both FF and IE, the first time I landed there.

How are you converting "fa" in the query string into "fuseaction"?  If 
you're doing an isapi or mod rewrite you might want to look there.  If 
you're not doing a rewrite, then you're experiencing the default behavior 
for Fusebox when the query string is malformed (it needs that "fuseaction" 
in the query string either directly or via rewrite.)

-- Josh




- Original Message - 
From: "Virginia Neal" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Friday, October 06, 2006 11:30 AM
Subject: URL Parameters Ignored


> Problem - user trys to follow a link to a URL that has a parameter, the 
> page may "flash" for a second and then the browser routes the user back to 
> any part of the URL string that does not contain a parameter.   For 
> instance, after clicking a link for 
> http://www.courts.wa.gov/opinions/index.cfm?fa=opinions.recent, the user 
> will get routed back to http://www.courts.wa.gov/opinions/index.cfm.
>
> This problem happens with only a small percentage of users.  I can not 
> duplicate the problem, but I have had several reports of this issue.  Of 
> those that I spoke with personally, they all are using Firefox, but I can 
> not be sure that is true in all cases.
>
> Our site is MX 7, and we use the Fusebox 3.0 framework (moving to 4 or 5 
> is not possible at this time - managment reasons).
>
> You might note the one person I was able to work with was able to get to 
> .asp pages with url parameters, but he had problems navigating the 
> fusebox.org site.
>
> I would appreciate ANY ideas, suggestions, or help!!
>
> Thanks
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:255821
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: removing bad emails from bounced emails and db

2006-10-06 Thread Josh Nathanson
Hi Dave,

Are you still actively sending out the newsletter?  If so, maybe you could 
set up your own pop box to receive the bounces (this would depend on how 
you're sending the newsletter, you need contol -- if cfmail then set the 
failto attribute), then download them via your favorite email client 
(thunderbird or whatever) to your local box overnight or something.  Then 
you copy them into a directory (on Windows they are automatically converted 
to .eml text files when you do this), then ftp them as text files up to your 
server and use cfdirectory to loop over the files, parse out the email 
addresses and update your db.  That way you don't have to worry about cfpop.

It will still take a long time to move all the files around but probably way 
faster than cfpopping each one.

I had to do something similar recently, although it was more like 300 emails 
than 10,000, it worked dandy.  I also used Ray's getEmail function to parse 
out the email addresses.

-- Josh



- Original Message - 
From: "Dave Lyons" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Thursday, October 05, 2006 7:08 PM
Subject: removing bad emails from bounced emails and db


> yes I know we have gone over this before, sorta
>
> the deal is that we have a mailing list db that wasnt cleaned out for over 
> 8 years so there are like 10,000 no good emails in it. I made some script 
> to go in ang get the bounced emails, parse them for email addresses then 
> delete them from the list (checking the mail account with cfpop).
>
> The problem is that cfpop is so slow that it times out, i fixed that by 
> using forwarding the page to another page inbetween emails then 
> cflocation'n them back to start again but after awhile i get errors about 
> it not being able to forward the page.
> The other problem is that it is god awefully slow, bout 30-40 seconds for 
> each email.
>
> So the situation really is this, this first batch of cleaning out is gunna 
> be a bitch for whomever does it, which they really dont want to do, so I 
> am looking to see if any of you know of any programs that can do it 
> effectively.
>
> Again, here is the problem.
> They send a newsletter out and they will get about 10,000 bounced 
> addresses back and basically we just need to grab all those 10,000 emails 
> and delete them from mailing list. Although its not that simple but, do 
> any of you have anything or now of anything to effectively do it, doesnt 
> matter if it costs $$.


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:255819
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: How do I disable view source?

2006-10-04 Thread Josh Nathanson
If you disable the user, then you have to make your site 508 compliant. Heh.

-- Josh




- Original Message - 
From: "Ian Skinner" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Wednesday, October 04, 2006 11:03 AM
Subject: RE: How do I disable view source?


> Hell lets disable the user!!
>
>
> NOW That could be a really useful capability.  Let's get a community 
> project started!
>
>
>
>
> --
> Ian Skinner
> Web Programmer
> BloodSource
> www.BloodSource.org
> Sacramento, CA
>
> -
> | 1 |   |
> -  Binary Soduko
> |   |   |
> -
>
> "C code. C code run. Run code run. Please!"
> - Cynthia Dunning
>
> Confidentiality Notice:  This message including any
> attachments is for the sole use of the intended
> recipient(s) and may contain confidential and privileged
> information. Any unauthorized review, use, disclosure or
> distribution is prohibited. If you are not the
> intended recipient, please contact the sender and
> delete any copies of this message.
>
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:255497
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: replace function

2006-10-02 Thread Josh Nathanson
You need to add the parameter "All" as the scope in your Replace tag --

Replace(get_ing_img.sbclc_item, " ", "", "All")

That tells it to replace all occurrences rather than just the first one.

-- Josh




- Original Message - 
From: <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Monday, October 02, 2006 9:38 AM
Subject: replace function


> I'm trying to replace any black spaces in a string with nothing, 
> essentially removing the black
> space.  However, when I come accros a string like, "light sour cream", my 
> code below only
> returns lightsour cream.  It does replace the second space.  Shouldn't it?
>
> I'm using ...
>
> get_ing_img.sbclc_item is query result which contains a string
> 
>
> Replaces occurrences of substring1 in a string with substring2, in a 
> specified scope. The search is case-sensitive.
> FORMAT:#Replace(FORM.myString, FORM.MySubstring1, FORM.mySubString2)#
>
> D
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:255036
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: standards with error handling

2006-10-02 Thread Josh Nathanson
In my CFERROR tag and handler, I have it so it emails me whenever an error 
occurs, with all the information about the error.  This has been 
tremendously helpful as I am immediately alerted to any errors in the 
application.  I highly recommend it.

-- Josh




- Original Message - 
From: "Richard White" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Monday, October 02, 2006 8:25 AM
Subject: Re: standards with error handling


> this is a really good idea, thanks claude
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:255031
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Anyone know a good authorize.net reseller?

2006-09-27 Thread Josh Nathanson
PayQuake is "Powered by Authorize.net" so you would just use the 
Authorize.net integration methods, which are pretty straightforward.

>From the PayQuake site faq's:
---
Who provides the payQuakeT Internet Gateway?
Currently, payQuakeT is bundling the Authorize.net payment gateway with your 
merchant account. For more details on Authorize.net's gateway, click here.
-

-- Josh


- Original Message - 
From: "Russ" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Wednesday, September 27, 2006 1:18 PM
Subject: RE: Anyone know a good authorize.net reseller?


>I resell PayQuake accounts on www.x-registrar.com if you're interested. 
>The
> startup fee is a bit smaller then if you go through payquake.com directly.
>
> I haven't used PayQuake myself, do they have easy cf integration?
>
> Russ
>
>


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:254518
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Help displaying a query result

2006-09-27 Thread Josh Nathanson
Whoops sorry, that should be "add a column to your CATEGORIES table" not 
products table as in my first post.

Then of course you would add "ORDER BY SortOrder" to your query.

-- Josh




> - Original Message - 
> From: "Doug Brown" <[EMAIL PROTECTED]>
> To: "CF-Talk" 
> Sent: Wednesday, September 27, 2006 11:06 AM
> Subject: Help displaying a query result
>
>
>>I have a list of categories, and I want to sort them ascending, but I need
>>to have the category (other) always listed last. Anyone have ideas on how
>>to accomplish this?
>>
>> IE:
>> Baby Backpacks
>> Baby Carriers and Slings
>> Baby Jumpers
>> Play Pens
>> Vibrating Chairs
>> Other
>>
>> My current query is like so...
>>
>> 
>> SELECT
>> categories.cat_id,
>> categories.category,
>> categories.parent_id
>> FROM
>> categories
>> WHERE
>> categories.parent_id =
>> 
>> 
>>
>>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:254481
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Help displaying a query result

2006-09-27 Thread Josh Nathanson
As a long term solution, you might want to add a column to your products 
table called "SortOrder" or "Priority" which contains the actual order you 
want the query to output.  This way you are not stuck to any particular way 
of sorting (by id, name etc.)  You could make the "Other" category 9 or 
something suitably high so it will always be last.  Then in your admin 
section you'll want to be able to modify that column's value so you can 
change the order if necessary.

In lieu of that, I'm sure some folks on here will have a fancy way to get 
that "Other" category to come out at the end.

-- Josh



- Original Message - 
From: "Doug Brown" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Wednesday, September 27, 2006 11:06 AM
Subject: Help displaying a query result


>I have a list of categories, and I want to sort them ascending, but I need 
>to have the category (other) always listed last. Anyone have ideas on how 
>to accomplish this?
>
> IE:
> Baby Backpacks
> Baby Carriers and Slings
> Baby Jumpers
> Play Pens
> Vibrating Chairs
> Other
>
> My current query is like so...
>
> 
> SELECT
> categories.cat_id,
> categories.category,
> categories.parent_id
> FROM
> categories
> WHERE
> categories.parent_id =
> 
> 
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:254467
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Anyone know a good authorize.net reseller?

2006-09-27 Thread Josh Nathanson
Have you tried PayQuake?  I've had good results with them.  I think they're 
pretty huge.

-- Josh



- Original Message - 
From: "Matt Robertson" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Wednesday, September 27, 2006 9:59 AM
Subject: OT: Anyone know a good authorize.net reseller?


>I am trying to get an ecommerce site up and I'm getting answering
> machines and voice mail.  Anyone know a reseller where my client can
> get a real person on the phone and get their application in process?
>
> Tried ECommerce Exchange.  They used to be good but I am years out of
> the loop on this kind of site.
>
> -- 
> [EMAIL PROTECTED]
> Janitor, MSB Web Systems
> mysecretbase.com
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:254435
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Bizarre Flash/AS error

2006-09-21 Thread Josh Nathanson
There are no other brackets, functions or anything in the script.  Just that 
one function.  When the error started happening I moved everything else out 
of the file to isolate the function.

I'm about to uninstall and go re-download the application again...

-- Josh


- Original Message - 
From: "Kevin Aebig" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Thursday, September 21, 2006 11:56 AM
Subject: RE: Bizarre Flash/AS error


> My guess is that you're missing a { or } somewhere else in your script and
> it's confusing the compiler. Check to make sure that you have both opening
> and closing brackets everywhere else including if, switch, loops, etc.
>
> !k
>
> -Original Message-
> From: Josh Nathanson [mailto:[EMAIL PROTECTED]
> Sent: Thursday, September 21, 2006 12:43 PM
> To: CF-Talk
> Subject: Re: Bizarre Flash/AS error
>
> Hi Kevin,
>
> Thanksyes it is external...however, it seems to reload the AS file 
> each
> time I publish -- if I make a change to the AS file I see it reflected in
> the error message.
>
> I'm hip to the datatypes, I tried that too but it didn't make a 
> difference.
> Also tried putting the '{' on the second line as you did, same error.
>
> It's kind of amusing that it shows me the '{' in the error while it says 
> it
> is missing.
>
> This is definitely in the WTF category.
>
> -- Josh
>
>
>
>> The flash compiler takes the scripts in the movie and creates a cache of
>> them called ASO files. Is this script in an external file?
>>
>> If it's not try defining it differently and don't forget that Flash has
>> gone
>> a lot more strict, so set your datatypes:
>>
>> doSomething = function ():Void
>> {
>> var z:Number = 0;
>> }
>>
>> !k
>
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:253779
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Bizarre Flash/AS error

2006-09-21 Thread Josh Nathanson
Hi Kevin,

Thanksyes it is external...however, it seems to reload the AS file each 
time I publish -- if I make a change to the AS file I see it reflected in 
the error message.

I'm hip to the datatypes, I tried that too but it didn't make a difference. 
Also tried putting the '{' on the second line as you did, same error.

It's kind of amusing that it shows me the '{' in the error while it says it 
is missing.

This is definitely in the WTF category.

-- Josh



> The flash compiler takes the scripts in the movie and creates a cache of
> them called ASO files. Is this script in an external file?
>
> If it's not try defining it differently and don't forget that Flash has 
> gone
> a lot more strict, so set your datatypes:
>
> doSomething = function ():Void
> {
> var z:Number = 0;
> }
>
> !k


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:253771
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Bizarre Flash/AS error

2006-09-21 Thread Josh Nathanson
Hey all,

Just getting into Flash again after a few years...got the free trial of 
Flash 8...trying to do some action scripting.  When I try to define a 
function, like so:

function doSomething() {
var z = 0;
}

Then I preview, I get the error:

Line 23: '{' expected
function doSomething() {

However, the curly bracket is clearly there, it even includes it in the 
error message.  There are no other functions or curly brackets in the AS 
file that would be mucking things up.

When I do "check script", I get "the script contains no errors."

What am I missing here?  Could I have gotten a bad download or something? 
Could it be that you can't define functions in the trial version?  Arg.

-- Josh



 


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:253746
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CFchart scaleFrom and scaleTo

2006-09-20 Thread Josh Nathanson
Hi Ian,

I notice folks aren't much responding to your cfchart inquiries.  I've 
struggled with some of the cfchart implementations as well -- I think 
because they're fairly new, there are still some small details that don't 
function 100% as expected, plus I think not too many people are using them 
in general.  Too bad because they are awesome in many regards, I am a huge 
fan of cfchart.  I hope there are some improvements in Scorpio.

Maybe you could introduce some sort of scaling factor in your queries, say 
multiply the values by 1000, so the scaleFrom values are big enough to not 
get set to 0.  Then make a note of it in your axis labels, something like 
"values x 1000" or whatever.  At least this may get you some results.

-- Josh




- Original Message - 
From: "Ian Skinner" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Wednesday, September 20, 2006 9:43 AM
Subject: CFchart scaleFrom and scaleTo


> I'm built some logic to figure out how to scale charts containing dynamic 
> data to help highlight the variations instead of show a series of 
> relatively flat values with large bars.
>
> But I'm finding many times the CFchart tag is ignoring my scaleFrom and 
> scaleTo values.  Particularly the scaleFrom will often be over ridden to 0 
> instead of the value I supplied.  This does seem to happen more often on 
> charts dealing with small numbers and/or small variations between values; 
> I am sometimes dealing with variations that only differ by tenths, 
> hundredths and even ten thousandths in one case.
>
> Can anybody point me or provide more details information about the 
> workings of the cfchart tag than is provided in the documentation.
>
>
> --
> Ian Skinner
> Web Programmer
> BloodSource
> www.BloodSource.org
> Sacramento, CA
>
> -
> | 1 |   |
> -  Binary Soduko
> |   |   |
> -
>
> "C code. C code run. Run code run. Please!"
> - Cynthia Dunning
>
> Confidentiality Notice:  This message including any
> attachments is for the sole use of the intended
> recipient(s) and may contain confidential and privileged
> information. Any unauthorized review, use, disclosure or
> distribution is prohibited. If you are not the
> intended recipient, please contact the sender and
> delete any copies of this message.
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:253640
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Flash Form stalls at PreLoad

2006-09-20 Thread Josh Nathanson
Scott - it took about 6-7 seconds to load for me.  Not bad at all.  Then I 
hit refresh and it loaded immediately.   I think you could be having issues 
from refreshing a bunch of times.  Are you developing on your local box, or 
are you using a remote server?  That will also give you different results. 
If remote you are subject to fluctuations in your connection speed, so that 
could make a difference.

-- Josh



- Original Message - 
From: "Scott Hoff" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Wednesday, September 20, 2006 9:17 AM
Subject: Re: Flash Form stalls at PreLoad


> Thanks a lot for going and checking it out.  What do you think might be 
> causing it to lock up every once in a while?  Is the pre-load affected at 
> all by the overall stress on the computer that you are using?  I also 
> usually don't have that many problems usually... however, sometimes I 
> think that after I refresh it a few times it starts giving me more issues. 
> could that be an issue with my computer getting overwhelmed or the server 
> getting slammed? Or are these worries unfounded?  I'm thinking that a few 
> refreshes shouldn't really kill the server or my computer.
>
> I wouldn't mind if anyone else wanted to give it a try and check it out. 
> I have experienced the similar issue of waiting on other computers within 
> the office.  I'm not a pro about flash forms and the complining/loading 
> process.  I'm open to any hints anyone has to give.
>
> thanks again for the quick response!
>
> AMAZING.  I'm glad I finally found a mailing list... I've been lost in the 
> dark!
>
>
>>That worked really fast for me. It took maybe 3 or 4 secs to load, than
>>another 2 to initialize. Considering how much it needs to load, I think 
>>it's
>>doing extremely well.
>>
>>!k
>>
>>-Original Message-
>>From: Scott Hoff [mailto:[EMAIL PROTECTED]
>>Sent: Wednesday, September 20, 2006 10:05 AM
>>To: CF-Talk
>>Subject: Flash Form stalls at PreLoad
>>
>>I'm currently working on setting up my a fairly complex flash forms with a
>>lot of tabs and validation. I have to say that it really only loads 
>>smoothly
>>one out of 4 times. The other times, I run into issues when it says
>>"initializing" or "Loading library". Furthermore, it almost always stops 
>>at
>>the library at 40%. In short, there are handful of things going on in the
>>preloader that either lock it up or make it take close to a minute to 
>>load.
>>
>>The actual application laods great once it loads and I don't think people
>>will mind waiting for a "long time" ... 10, 15... as long as I can tell 
>>them
>>that it WILL load. However, I think these delays are very long and give 
>>the
>>impression that they never will load at all. Usually, if I just keep on
>>refreshing, then eventually it will load perfectly without a problem one 
>>of
>>the times.
>>
>>I've been doing a lot of seraching and most of the time I just find people
>>complaining about slow load times. However, I need to find a solution. I'm
>>going to go ahead and post a link to the actual form and then a link to a
>>text file that will show the code.
>>
>>Please help!
>>
>>Page Link: http://www.firstheartland.com/Coldfusion/leadersClubHELP.cfm
>>Source File: http://www.firstheartland.com/Coldfusion/leadersClubHELP.txt
>>
>>[EMAIL PROTECTED]
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:253630
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: MySQL Front

2006-09-18 Thread Josh Nathanson
If you are talking about a GUI to manage MySQL databases --

Navicat!!

Best $99 I ever spent on software.

-- Josh


- Original Message - 
From: "Chad Gray" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Monday, September 18, 2006 12:50 PM
Subject: MySQL Front


>I logged onto http://www.mysqlfront.de/ today to find they are out of 
>business.
>
> Anyone have a good MySQL front program?
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:253449
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: ColdFusion URL and anchors.

2006-09-11 Thread Josh Nathanson
>> Ok how does on get the URL on the page?  I can get parts of it with CGI 
>> and other structures, but not the plain and complete URL.

There's probably an easier way but you could do

cfoutput
http://#cgi.http_host##cgi.script_name#?#cgi.query_string#
/cfoutput

to get the whole url if you need to, though I think Charlie's method using 
just the query string would work fine.  The above should work with or 
without a query string.

-- Josh


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252785
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Need help!!

2006-09-08 Thread Josh Nathanson
Your JDBC url should look like:
jdbc:mysql://localhost:3306/yourdbnamehere (no []'s)

Driver class should be:
com.mysql.jdbc.Driver


-- Josh




- Original Message - 
From: "Doug Brown" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Friday, September 08, 2006 1:06 PM
Subject: Re: Need help!!


> Ok trying what you said, what am I doing wrong? I extracted the jar to
> cf_root/WEB-INF/lib directory
>
> JDBC URL = jdbc:mysql://[1localhost]:[3306]/[2net]
> DRIVER CLASS = mysql-connector-java-3.0.17-ga-bin.jar
>
>
>
>
> - Original Message - 
> From: "Josh Nathanson" <[EMAIL PROTECTED]>
> To: "CF-Talk" 
> Sent: Friday, September 08, 2006 1:51 PM
> Subject: Re: Need help!!
>
>
>> I don't know if you need to do anything Windows ODBC related since
>> Connector/J is JDBC -- I didn't need to do anything additional to get it
>> working with CF besides dropping in the JAR file and restarting CF -- but
>> I'm sure others will chime in.
>>
>> -- Josh
>>
>>
>>
>> - Original Message - 
>> From: "Doug Brown" <[EMAIL PROTECTED]>
>> To: "CF-Talk" 
>> Sent: Friday, September 08, 2006 12:36 PM
>> Subject: Re: Need help!!
>>
>>
>> > Josh, thanks for the reply. I am a little confused as to installing the
>> > connector under windows. How is this accomplished as far as classpath
> etc.
>> > I
>> > see what you suppose to do in coldfusion, but not sure about setting it
> up
>> > for windows odbc.
>> >
>> >
>> >
>> > - Original Message - 
>> > From: "Josh Nathanson" <[EMAIL PROTECTED]>
>> > To: "CF-Talk" 
>> > Sent: Friday, September 08, 2006 1:28 PM
>> > Subject: Re: Need help!!
>> >
>> >
>> >> >I see in adobe help they say that Connector/J version 3.1.11  and
> higher
>> >> > cannot be used with CFMX. Is this still the case? How bout 5
>> >> >
>> >>
>> >>
>> >> >From Adobe, updated 8/1/06:
>> >>
>> >> http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_19170
>> >>
>> >> "Connector/J version 3.1 release 3.1.11 or 3.1.12 cannot be used with
>> >> ColdFusion MX 7 because of mySQL Bug 13469. Connector/J 3.1.13 fixes
> this
>> >> bug, so driver version 3.1.10 or 3.1.13 should be used. All 
>> >> Connector/J
>> >> version 3.0 releases and all (currently beta) version 3.2 releases 
>> >> work
>> > with
>> >> ColdFusion MX 7."
>> >>
>> >> -- Josh
>> >>
>> >>
>> >>
>> >>
>> >>
>> >>
>> >>
>> >>
>> >>
>> >>
>> >>
>> >
>> >
>>
>>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252624
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Need help!!

2006-09-08 Thread Josh Nathanson
I don't know if you need to do anything Windows ODBC related since 
Connector/J is JDBC -- I didn't need to do anything additional to get it 
working with CF besides dropping in the JAR file and restarting CF -- but 
I'm sure others will chime in.

-- Josh



- Original Message - 
From: "Doug Brown" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Friday, September 08, 2006 12:36 PM
Subject: Re: Need help!!


> Josh, thanks for the reply. I am a little confused as to installing the
> connector under windows. How is this accomplished as far as classpath etc. 
> I
> see what you suppose to do in coldfusion, but not sure about setting it up
> for windows odbc.
>
>
>
> - Original Message - 
> From: "Josh Nathanson" <[EMAIL PROTECTED]>
> To: "CF-Talk" 
> Sent: Friday, September 08, 2006 1:28 PM
> Subject: Re: Need help!!
>
>
>> >I see in adobe help they say that Connector/J version 3.1.11  and higher
>> > cannot be used with CFMX. Is this still the case? How bout 5
>> >
>>
>>
>> >From Adobe, updated 8/1/06:
>>
>> http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_19170
>>
>> "Connector/J version 3.1 release 3.1.11 or 3.1.12 cannot be used with
>> ColdFusion MX 7 because of mySQL Bug 13469. Connector/J 3.1.13 fixes this
>> bug, so driver version 3.1.10 or 3.1.13 should be used. All Connector/J
>> version 3.0 releases and all (currently beta) version 3.2 releases work
> with
>> ColdFusion MX 7."
>>
>> -- Josh
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252615
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Need help!!

2006-09-08 Thread Josh Nathanson
>I see in adobe help they say that Connector/J version 3.1.11  and higher
> cannot be used with CFMX. Is this still the case? How bout 5
>


>From Adobe, updated 8/1/06:

http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_19170

"Connector/J version 3.1 release 3.1.11 or 3.1.12 cannot be used with 
ColdFusion MX 7 because of mySQL Bug 13469. Connector/J 3.1.13 fixes this 
bug, so driver version 3.1.10 or 3.1.13 should be used. All Connector/J 
version 3.0 releases and all (currently beta) version 3.2 releases work with 
ColdFusion MX 7."

-- Josh










~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252613
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: another mySql question...

2006-09-07 Thread Josh Nathanson
AFAIK you *have* to use the JDBC driver with MySQL 4+/CF, you cannot use the 
ODBC driver at all.  It's called Connector/J I think, you have to download 
it from the MySQL website -- here's the link:

http://dev.mysql.com/downloads/connector/j/3.1.html

To Install:

http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_19170

-- Josh


- Original Message - 
From: "Munson, Jacob" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Thursday, September 07, 2006 3:35 PM
Subject: RE: another mySql question...


> I've always used MySQL's JDBC driver, not ODBC.  If you search Ben
> Forta's blog, there's an entry about MySQL 5 in CF, and this has good
> directions for getting it to work in the comments.
>


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252452
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: mySql question?

2006-09-07 Thread Josh Nathanson
+1 for Navicat.  Best $99 I ever spent for software, I would pay much more. 
Has saved me uncountable hours of work.  Plus, 30 day free trial.

http://www.navicat.com


-- Josh



- Original Message - 
From: "Ray Champagne" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Thursday, September 07, 2006 12:19 PM
Subject: RE: mySql question?


> Navicat rocks - does that and a whole lot more.  Pretty damn cheap too.
>
>> -Original Message-
>> From: Doug Brown [mailto:[EMAIL PROTECTED]
>> Sent: Thursday, September 07, 2006 3:14 PM
>> To: CF-Talk
>> Subject: mySql question?
>>
>> When mySql first came out, if memory serves me correctly it only had a
> command
>> line interface. Has things changed with it? Are you able to create tables
> etc from
>> a GUI interface?
>>
>>
>>
>> Doug
>>
>>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252410
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: OT: can you resolve this domain?

2006-09-06 Thread Josh Nathanson
All, thanks for trying my domain.  Turns out it was a Plesk 8/Red Hat Linux 
issue causing the nameserver to crash which has now been rectified.  If 
anyone is running that configuration this link describes the issue.

http://forum.swsoft.com/showthread.php?s=429144aedcddc7f1d70655bd55f2e133&threadid=22147&perpage=15&highlight=named%20failed&pagenumber=1

-- Josh






- Original Message - 
From: "Claude Schneegans" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Wednesday, September 06, 2006 5:54 AM
Subject: Re: OT: can you resolve this domain?


> >>No, @ videotron.ca serving mostly the province of Quebec.
>
> Works today. May be it was just a question of letting all DNS in the
> world to update.
>
> -- 
> ___
> REUSE CODE! Use custom tags;
> See http://www.contentbox.com/claude/customtags/tagstore.cfm
> (Please send any spam to this address: [EMAIL PROTECTED])
> Thanks.
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252228
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Replying after the message

2006-09-05 Thread Josh Nathanson
Like you, I personally prefer the reply at the top, so I don't have to 
scroll down unless I need to review the OP.  Usually the subject line is 
enough to tell me what I'm reading about, so most of the time I don't need 
to review the OP, but I do always want to read the reply.  So, on the 
average, it would seem putting the reply at the top would save the most 
scrolling time.

-- Josh



- Original Message - 
From: "Robertson-Ravo, Neil (RX)" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Tuesday, September 05, 2006 3:57 PM
Subject: OT: Replying after the message


>I know Thunderbird etc does this out of the box, and it probably does make
> sense the way we read etc, but does anyone else find a reply after a 
> message
> damn annoying?!
>
> No fingers at anyone just a gripe.
>
>
>
>
>
>
> "This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
> Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,
> Registered in England, Number 678540.  It contains information which is
> confidential and may also be privileged.  It is for the exclusive use of 
> the
> intended recipient(s).  If you are not the intended recipient(s) please 
> note
> that any form of distribution, copying or use of this communication or the
> information in it is strictly prohibited and may be unlawful.  If you have
> received this communication in error please return it to the sender or 
> call
> our switchboard on +44 (0) 20 89107910.  The opinions expressed within 
> this
> communication are not necessarily those expressed by Reed Exhibitions."
> Visit our website at http://www.reedexpo.com
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252145
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: can you resolve this domain?

2006-09-05 Thread Josh Nathanson
Egads.  So far, so not good.  Thanks for the responses.

-- Josh


- Original Message - 
From: "Bryan Stevenson" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Tuesday, September 05, 2006 2:52 PM
Subject: Re: can you resolve this domain?


> No - Uniserve.com (Canadian ISPcovers whole country) Victoria, BC 
> Canada
>
> Bryan Stevenson B.Comm.
> VP & Director of E-Commerce Development
> Electric Edge Systems Group Inc.
> phone: 250.480.0642
> fax: 250.480.1264
> cell: 250.920.8830
> e-mail: [EMAIL PROTECTED]
> web: www.electricedgesystems.com
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252126
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


OT: can you resolve this domain?

2006-09-05 Thread Josh Nathanson
Hey all,

We are having some dns issues where some ISP's can resolve our domain and 
some can't.  Something about nameserver records pointing to multiple 
servers.  It would be super duper if some folks could try to hit our domain, 
and then just reply to the list "yes" or "no" and what isp you are on, or if 
you use a different dns server than your isp's, whose dns server you're 
using.  For example "yes - comcast" or "no - cox".  So far ones that can't 
resolve are Speakeasy and Verizon, while it seems others can.  The domain 
is:

http://www.igigi.com

TIA!

-- Josh



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252117
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Must I Use Evaluate() Here?

2006-08-30 Thread Josh Nathanson
Swet.  Forgot about the Variables scope.

-- Josh




- Original Message - 
From: "Sean Coyne" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Wednesday, August 30, 2006 10:12 AM
Subject: RE: Must I Use Evaluate() Here?


> Variables['q#dayspan#'].totalorders
>
> -Original Message-
> From: Josh Nathanson [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, August 30, 2006 1:06 PM
> To: CF-Talk
> Subject: Re: Must I Use Evaluate() Here?
>
> Yup, looping over the collection if you have a structure is more elegant
> than using evaluate.
>
> Here's an interesting one though...I am dynamically generating
> queries/query names, is there any way to evaluate the query results
> dynamically without using evaluate?
>
> I would do a single query and then loop qoq's for better performance but
> I'm doing some SQL that qoq's can't do.
>
> the setter loop:
> 
>   datasource="#Request.DS#"
> username="#Request.user#" password="#Request.pass#"> SELECT totalorders
> etc
>
> This gives 6 queries named q0, q1, q7 etc.
>
> the evaluator:
>  Evaluate('q' & dayspan &
> '.totalorders')
>
> ???
>
>
>
> - Original Message -
> From: "Aaron Rouse" <[EMAIL PROTECTED]>
> To: "CF-Talk" 
> Sent: Wednesday, August 30, 2006 9:51 AM
> Subject: Re: Must I Use Evaluate() Here?
>
>
>>I think it gets forgotten about as an option more times than not.
>>
>> On 8/30/06, Teddy Payne <[EMAIL PROTECTED]> wrote:
>>>
>>> Regardless of the speed factor, why not use the loop structure that
> was
>>> made
>>> to handle structures? *rhetorical question*
>>>
>>> Teddy
>>>
>>
>>
>>
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:251510
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Must I Use Evaluate() Here?

2006-08-30 Thread Josh Nathanson
Yup, looping over the collection if you have a structure is more elegant 
than using evaluate.

Here's an interesting one though...I am dynamically generating queries/query 
names, is there any way to evaluate the query results dynamically without 
using evaluate?

I would do a single query and then loop qoq's for better performance but I'm 
doing some SQL that qoq's can't do.

the setter loop:



SELECT totalorders etc

This gives 6 queries named q0, q1, q7 etc.

the evaluator:

Evaluate('q' & dayspan & '.totalorders')

???



- Original Message - 
From: "Aaron Rouse" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Wednesday, August 30, 2006 9:51 AM
Subject: Re: Must I Use Evaluate() Here?


>I think it gets forgotten about as an option more times than not.
>
> On 8/30/06, Teddy Payne <[EMAIL PROTECTED]> wrote:
>>
>> Regardless of the speed factor, why not use the loop structure that was
>> made
>> to handle structures? *rhetorical question*
>>
>> Teddy
>>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:251505
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Must I Use Evaluate() Here?

2006-08-30 Thread Josh Nathanson
There was a huge thread a few weeks ago on this topic...there is a 
persistent myth that Evaluate is slower than the structure methods for 
evaluating dynamic variables...however I and some others did some testing 
and found the difference is negligible.  Possibly older versions of CF had 
performance issues with Evaluate which is why it has a bad rep.

-- Josh


- Original Message - 
From: "Charlie Griefer" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Wednesday, August 30, 2006 9:12 AM
Subject: Re: Must I Use Evaluate() Here?


> not saying we didn't...but i don't recall that particular agreement
> (but then again, my mind's old and feeble)
>
> On 8/30/06, Russ <[EMAIL PROTECTED]> wrote:
>> Did we not agree that there is no speed benefit in not using evaluate?
>>
>> > -Original Message-
>> > From: Mingo Hagen [mailto:[EMAIL PROTECTED]
>> > Sent: Wednesday, August 30, 2006 12:01 PM
>> > To: CF-Talk
>> > Subject: Re: Must I Use Evaluate() Here?
>> >
>> > stcFilters['filter_#i#'] works
>> >
>> >
>> >
>> > Sung Woo wrote:
>> > > I have a structure called stcFilters.  In this structure, I have the
>> > following values:
>> > >
>> > > stcFilters.filter_1 = 100
>> > > stcFilters.filter_2 = 200
>> > >
>> > > I want to show the value of these filters through a cfloop:
>> > >
>> > > 
>> > >  
>> > >  #temp#
>> > > 
>> > >
>> > > I can't seem to get around using the evil Evaluate -- can anyone 
>> > > help?
>> > Much thanks.
>> > >
>> > >
>> >
>> >
>>
>>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:251493
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Cold Fusion growth

2006-08-24 Thread Josh Nathanson
I think Adobe is trying to hire folks to work on CF as well.  That's got to 
mean something positive.

-- Josh


- Original Message - 
From: "Michael Dinowitz" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Thursday, August 24, 2006 2:21 PM
Subject: Re: Cold Fusion growth


> I'm seeing a broad increase in searches on ColdFusion terms and visits 
> from people looking for ColdFusion content. If you look in the statistics 
> section of the site you'll see the numbers for June with a graph showing 
> site usage. Note the nice spike in usage around mid May. This is not exact 
> stats on ColdFusion's acceptance, but it is an indicator of interest from 
> the search engine using population.
>
> Oh, and I'm getting like 6 calls a week for CF programmers. There's 
> definitly a need and that means growth, or at least implies it.
>
>>Anyone have info on if Cold Fusion is seeing any growth of usage and if
>>Cold Fusion programmers are increasing or decreasing in general?
>>
>>Thanks...Rob
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:250970
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Encrypted data insert

2006-08-21 Thread Josh Nathanson
Thanks Ben and Doug, I'll give that a shot.

-- Josh


- Original Message - 
From: "Doug Boude (rhymes with 'loud')" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Monday, August 21, 2006 3:25 PM
Subject: Re: Encrypted data insert


>I had issues with non printable characters within my encoded strings, so 
>yes, I concur that you should urlencode the encrypted string before storing 
>it. Just remember to urldecode it before attempting to decrypt the string.
>
>>Hey all,
>>
>>I am trying to insert an encrypted string into a MySQL database.  When
>>inserted, the db seems to add extra characters on the end of the encrypted
>>string, which makes it so that the string cannot be decrypted 
>>successfully.
>>It seems to add a couple of spaces plus the dreaded box character.  Is 
>>there
>>some sort of encoding issue perhaps?  Anyone run into this before?  If I 
>>use
>>some combination of the encoding and algorithm attributes will it take 
>>care
>>of this issue?
>>
>>Yes it's a cc number, and yes I know you're not supposed to store cc
>>numbers, even encrypted, but unfortunately in the real world it must be 
>>done
>>sometimes.
>>
>>-- Josh
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:250530
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Encrypted data insert

2006-08-21 Thread Josh Nathanson
Hey all,

I am trying to insert an encrypted string into a MySQL database.  When 
inserted, the db seems to add extra characters on the end of the encrypted 
string, which makes it so that the string cannot be decrypted successfully. 
It seems to add a couple of spaces plus the dreaded box character.  Is there 
some sort of encoding issue perhaps?  Anyone run into this before?  If I use 
some combination of the encoding and algorithm attributes will it take care 
of this issue?

Yes it's a cc number, and yes I know you're not supposed to store cc 
numbers, even encrypted, but unfortunately in the real world it must be done 
sometimes.

-- Josh



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:250514
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Performance problem

2006-08-17 Thread Josh Adams
Back in June there was a thread called "CFFILE Performance" about this on
the BlueDragon Interest mailing list that might be helpful to you, Rick.  I
know you're a subscriber and that you probably have those emails handy.  But
for those who don't, you can search the archives of the list here:

http://www.newatlanta.com/c/products/bluedragon/self_help/archiveSearch/show
Search

Josh 

-Original Message-
From: Rick Root [mailto:[EMAIL PROTECTED] 
Sent: Thursday, August 17, 2006 11:03 AM
To: CF-Talk
Subject: Performance problem

I have some code that dynamically generates CSV, TAB, and EXCEL (HTML
tables) from a query, and it is running pretty slowly.  A lot slower than
I'd like it to.  Essentially, I set a bunch of variables like START_PAGE,
END_PAGE, START_ROW, END_ROW, START_FIELD, and END_FIELD that allow me to
loop through the query and loop through the list of fields and output the
data in the appropriate format.

I added some debugging code and generating 124 rows took 19 seconds. 
Generating 1416 rows took 309 seconds.  Which means if someone wants to
generate a drop with 5,000 rows, it's gonna take a long freakin' time!

It seems like it shouldn't be that slow.  It's only writing every 100 rows
to disk (the 124 record file was 445KB).  And a couple of cflog statements
indicate that the file write takes less than a second.

Here's the query loop that outputs the rows of data.






















I suspect that it's the Evaluate() that's running slowly.

Any ideas on how to speed this code up?

Thanks!

Rick



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:250178
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Printing issues

2006-08-16 Thread Josh Nathanson
You can do a page break with css:



Put that where you want a page break to go.  I think that will work across 
browsers.  Of course, if the page is dynamically generated you'll need to 
take that into account.

-- Josh


- Original Message - 
From: "Rick Root" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Wednesday, August 16, 2006 1:14 PM
Subject: OT: Printing issues


> Okay, another off topic.
>
> I'm not one for printing out HTML documents, so I don't know if this is
> normal or not.
>
> This page:
>
> https://www.cfr.duke.edu/DukeFacultyandStaffSeekingFoundationFunding.cfm
>
> (I didn't make that file name, don't blame me!)
>
> When I print it (and it shows up in print preview too), a line at the
> bottm of the second page actually gets cut off and the rest of it prints
> on the third page.  I don't mean some of the words, I mean the top half
> of each letter appears at the end of page 2, and the bottom half of each
> letter appears on the bottom of page 3.
>
> I thought browsers were smart enough to *NOT* do this kind of thing.
>
> It's even worse in Firefox.  Firefox doesn't even have the sense to
> print multiple pages.  It just trails off the bottom and doesn't bother
> printing the second or third pages.
>
> Rick
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:250054
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: OT: Anyone else affected by the hostmysite outage?

2006-08-16 Thread Josh Nathanson
Fact is those construction guys are supposed to know about where gas lines, 
electrical, cables etc. are located before they start digging.  Out here in 
Cali a couple of years ago, a few guys died when they hit a gas line and 
caused a huge explosion.  The construction company undoubtedly has insurance 
so if I were HMS I'd nail them to the wall, they could probably get a 
settlement without even going to court.

If the cables weren't marked though, then that's somebody else's fault, not 
the construction company's.  Not sure who'd be responsible for that.

-- Josh

- Original Message - 
From: "Bryan Stevenson" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Wednesday, August 16, 2006 1:01 PM
Subject: Re: OT: Anyone else affected by the hostmysite outage?


> Same damn thing happend in Vancouver, BC last year.  The ISP that supplies 
> one
> of our federal government clients was next to a sky scraper building site. 
> The
> big pit they dug caved in due to a sink hole and took the sidewalk and 
> most of
> the street with it...along with the various pipes feeding the ISP.
>
> .and they said they'd never be down for more than 4 hours...try a 
> week!!
>
> If Mother Nature wants to get you...she will ;-)
>
> Cheers
>
> Bryan Stevenson B.Comm.
> VP & Director of E-Commerce Development
> Electric Edge Systems Group Inc.
> phone: 250.480.0642
> fax: 250.480.1264
> cell: 250.920.8830
> e-mail: [EMAIL PROTECTED]
> web: www.electricedgesystems.com
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:250053
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: OT: Anyone else affected by the hostmysite outage?

2006-08-16 Thread Josh Adams
I assume you're speaking of pipe redundancy to the affected datacenter,
aren't you?  I imagine that they have bought pipe from multiple providers
but at some point those probably just about have to come in and out of the
building in the same place.  Anyone know that not to be true?

In terms of data center redundancy, they do offer that, but naturally you
have to pay for it.

Josh 

-Original Message-
From: Ray Champagne [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 16, 2006 10:55 AM
To: CF-Talk
Subject: Re: Anyone else affected by the hostmysite outage?

What, no redundancy?


- Original Message -
From: "Neil Middleton" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Wednesday, August 16, 2006 10:20 AM
Subject: OT: Anyone else affected by the hostmysite outage?


> One of their datacenters has been chopped from the net buy a "construction
> accident".
>
> Anyone else affected?  Feed-Squirrel's gone for the time being...
>
> -- 
> Neil Middleton
>
> Visit feed-squirrel.com
>
>
> 



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:250007
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: BlueDragon no seeing IIS on W2K3

2006-08-16 Thread Josh Adams
Yep, some of us New Atlantans are indeed here, Eric.  Posting here certainly
works.  That said, Jim is correct that posting on the BlueDragon Interest
list is apt to get you the quickest response to such a question.

So anyway--are you saying you're squared away now?  Still need that web
service?  I don't know that I have anything for you but I'm also not sure I
completely follow what you need it to do.

Josh 

-Original Message-
From: Eric Dawson [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 16, 2006 10:57 AM
To: CF-Talk
Subject: RE: BlueDragon no seeing IIS on W2K3

Yeah I thought I would try here first. I just unsubscribed from the New
Atlanta list, ironically.

But I did find a post from Charlie stating, paraphrased with artistic
license, "Who Cares". BD works fine from IIS without BD seeing IIS.

I did a test that failed, which made me think the connection wasn't working.
my bad. It really was working.

I think some of the New Atlanta techs are here also, but I could be wrong.

thanks for the advice.

Take Care,
Eric

-Original Message-
From: Jim Wright [mailto:[EMAIL PROTECTED]
Sent: August 16, 2006 9:50 AM
To: CF-Talk
Subject: Re: BlueDragon no seeing IIS on W2K3

On 8/16/06, Eric Dawson <[EMAIL PROTECTED]> wrote:
> installing BlueDragon 6.21/302 on W2K3 and for some reason it isn't 
> seeing IIS to install the adapter. Oddly enough this is a reinstall, 
> where it recognized IIS originally. Thoughts?
>
> There was an issue previously where you needed to create a scripts 
> folder, but I thought that was resolved.
>
> Also looking for a good sample CFC/Web Service for BlueDragon - WDDX 
> API
to
> access some functionality on third party sites. If there are any good 
> examples out there let me know.
>
> Eric
>

Eric,

While you may get a good answer to your question here, it would be more
appropriate for  the BlueDragon list run by New Atlanta.  You'll see a lot
of the same faces over there, with the addition of some of the New Atlanta
techs.

http://www.newatlanta.com/products/bluedragon/self_help/archive_search/index
cfm

-jim
--
Jim Wright
Wright Business Solutions
[EMAIL PROTECTED]
919-417-2257




~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:249994
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: announce: cfportal

2006-08-14 Thread Josh Nathanson
I get that text overlap too, on FireFox 1.5.0.6.  Looks fine on IE.

-- Josh



- Original Message - 
From: "Raymond Camden" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Monday, August 14, 2006 2:42 PM
Subject: Re: announce: cfportal


> Odd. I can't reproduce it here. Don't you love browser compat issues?
>
> I'm adding CF blogs later tonight.
>
> On 8/14/06, Munson, Jacob <[EMAIL PROTECTED]> wrote:
>> Looks great, Ray!  And a good idea as well.
>>
>> The only comment I have is that on my machine, the top right pod labeled
>> "Adobe ColdFusion Product Notifications",  'Notifications' is line
>> wrapped and is half on the red and half on the gray.  Other than that,
>> looks great!
>>
>> > -Original Message-
>> > From: Raymond Camden [mailto:[EMAIL PROTECTED]
>> > Sent: Monday, August 14, 2006 1:38 PM
>> >
>> > This morning I launched a page much like flex.org. The basic idea is
>> > to give folks a one page quick ref to important CF links:
>> >
>> > http://ray.camdenfamily.com/demos/cfportal
>> >
>> > Suggestions are welcome. I plan on adding a snazzy short URL sometime
>> > in the future, although I figured by now most folks know how to
>> > bookmark. ;)
>>
>> This transmission may contain information that is privileged, 
>> confidential and/or exempt from disclosure under applicable law. If you 
>> are not the intended recipient, you are hereby notified that any 
>> disclosure, copying, distribution, or use of the information contained 
>> herein (including any reliance thereon) is STRICTLY PROHIBITED. If you 
>> received this transmission in error, please immediately contact the 
>> sender and destroy the material in its entirety, whether in electronic or 
>> hard copy format. Thank you. A1.
>>
>>
>>
>>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:249766
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: announce: cfportal

2006-08-14 Thread Josh Nathanson
Thanks Ray, already got it bookmarked!

-- Josh


- Original Message - 
From: "Raymond Camden" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Monday, August 14, 2006 12:38 PM
Subject: announce: cfportal


> This morning I launched a page much like flex.org. The basic idea is
> to give folks a one page quick ref to important CF links:
>
> http://ray.camdenfamily.com/demos/cfportal
>
> Suggestions are welcome. I plan on adding a snazzy short URL sometime
> in the future, although I figured by now most folks know how to
> bookmark. ;)
>
> -- 
> ===
> Raymond Camden, Vice President of Technology for roundpeg
>
> Email: [EMAIL PROTECTED]
> Blog : ray.camdenfamily.com
> AOL IM   : cfjedimaster
>
> "My ally is the Force, and a powerful ally it is." - Yoda
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:249753
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: what if the next CF...

2006-08-08 Thread Josh Adams
I can't speak to the capabilities of Coral Web Builder but I can tell you
that here at New Atlanta we have a program for standalone CFML web
applications deployed on BlueDragon.  Given the proper business case, we
will negotiate significant reductions in licensing costs and/or arrange
other compensation schemes such as monthly royalties.  If this is of
interest to you, check out the ISV segment of our BlueDragon TrueBlue
Partner Program here:

http://www.newatlanta.com/products/bluedragon/partners/isv.cfm

If you're ready to take it to the next step and discuss how we can work
together, shoot me an email off-list and I'll put you in touch with the
right people here at New Atlanta.

Josh 

-Original Message-
From: Rick Faircloth [mailto:[EMAIL PROTECTED] 
Sent: Saturday, August 05, 2006 8:42 AM
To: CF-Talk
Subject: RE: what if the next CF...

I've been reading about Coral Web Builder (again) after your email.

It sounds intriguing...question...does Coral Web Builder take the place of
Cold Fusion Server in development, too?

I'm trying to understand if by buying this script engine, I can avoid buying
Cold Fusion Server altogether.  I'm still (happily) using CF 4.5, but Coral
Web Builder would give me most of the latest functionality for only $89 with
the special they're running.

Just not quite sure where Coral Web Builder fits into the process.

Rick



-Original Message-
From: Casey Dougall [mailto:[EMAIL PROTECTED]
Sent: Friday, August 04, 2006 6:56 PM
To: CF-Talk
Subject: Re: what if the next CF...

It would be cool if you could deploy apps on cd.

Anyone on here use Coral Web Builder? You can build coldfusion applications
and deploy them on a auto run cd as one of the choices...

http://www.pcaonline.com/prod/index.cfm?loc=coral






~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:249241
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: cfquery - single quotes become doubled

2006-08-08 Thread Josh Adams
Make sure that you understand the security implications of using queries
with .   defends you against SQL injection
attacks and should always be used with untrusted data such as user input.
If you're dynamically building your query, you can't use  with
CF.  In that case you need to make sure that you sanitize any user input to
remove characters that are potential SQL injection hazards.  Note that using
a whitelist approach is greatly preferred to using a blacklist approach.
Note also that just because you build some of your query dynamically doesn't
mean you have to build all of it dynamically--you can mix your dynamic part
in with a static part that uses .  Then so long as the dynamic
part is not built from untrusted data you won't have to do any additional
work to sanitize your data to remove characters that are potential SQL
injection hazards.

Note that with BlueDragon you CAN build a dynamic query string that contains
.  Then when you pass it to , you use the render()
function just as you're currently using the preserveSingleQuotes() function:


#render(Variables.myQueryString)#


But note that using the render() function with untrusted data opens you up
to CFML injection attacks so you'll need to sanitize for those.

Josh 

-Original Message-
From: David Carter [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 07, 2006 4:34 PM
To: CF-Talk
Subject: Re: cfquery - single quotes become doubled

Thanks all, PreserveSingleQuotes() solved the problem. 


>That's by design. ColdFusion is escaping your single quotes.
>
>You need to either wrap your string in the PreserveSingleQuotes() 
>function or, better, use 
>



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:249242
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: what if the next CF...

2006-08-08 Thread Josh Adams
Tanguy and any others who might be using CFML on WebLogic--

Take a look at BlueDragon, BEA WebLogic Edition:

http://www.bea.com/framework.jsp?CNT=index.htm&FP=/content/products/weblogic
/bluedragon/

You should find that both the installation difficulty and size of required
CFML app server resources is significantly less when deploying BlueDragon
than you're finding them to be when deploying CFMX.

Josh 

-Original Message-
From: Tanguy Rademakers [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 07, 2006 11:59 AM
To: CF-Talk
Subject: Re: what if the next CF...

>You do realize this is possible now, right? If you install CFMX 7 using 
>the Multiserver installation option on, say, your laptop, you can write 
>your application, create an EAR/WAR which contains the entire CF 
>runtime, and give it to some J2EE app server admin and tell him to 
>deploy it. Of course, it's not free - you have to either include your 
>own license information (thus invalidating it on your own machine, 
>legally) or have that information added post-deployment.

We use the J2EE version of MX (equivalent to "Multiserver installation"?),
deploying in Weblogic, and i've got to say that, in my experience, it's a
little more hairy than that:

1) In Weblogic, CF has to be deployed as an exploded war / ear (as i recall,
this has something to do with needing read / write access to the
license.properties file). This means that the ear or war has to be uploaded
to each machine in the cluster, exploded, deployed from the weblogic
console, and then the license information needs to be updated separately in
each instance using the cf admin (although i think there are "cluster
friendly" serial numbers available). Contrast this with a "normal" java web
app, where you upload the war/jar/rar/ear using a web form on the weblogic
console and it is automatically deployed on all of the machines in the
cluster.

2) You have to deploy a full cf instance every time. Even if your app is a
simple five pager that doesn't need scheduled tasks,web services, or
whatever - you still need to deploy hundreds of megabytes of code, which
does affect memory usage and startup time for you app server. 

These are just our experiences in our environment, not enough to draw any
binding conclusions about the state of the product. But, here, small apps
that would be a natural for CF's feature set keep losing out to struts based
apps packaged as wars because the perception is that they are "easier to
setup and manage"... :(

/t



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:249240
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: what if the next CF...

2006-08-08 Thread Josh Adams
Yep, CFAnywhere was a project for running standalone CFML apps using
BlueDragon.  That project was before my time here at New Atlanta so I don't
know much about it.  A bit of web searching indicates that the guys behind
it were Steve Duys and Dick Applebaum (sorry if I'm missing someone) and
that it might have fallen off their radar screen because I can't find
anything about active development of that project nor can I even find an
active website for it.

Josh 

-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: Saturday, August 05, 2006 1:59 AM
To: CF-Talk
Subject: Re: what if the next CF...

You can - I am sure there is tool for this, I cannot remember the name
(cfanywhere?)


 




"This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions." 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Casey Dougall
To: CF-Talk
Sent: Fri Aug 04 23:56:06 2006
Subject: Re: what if the next CF...

It would be cool if you could deploy apps on cd.

Anyone on here use Coral Web Builder? You can build coldfusion applications
and deploy them on a auto run cd as one of the choices...

http://www.pcaonline.com/prod/index.cfm?loc=coral






~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:249239
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Authorize.net CFC

2006-08-04 Thread Josh Nathanson
If you Google "google" you can probably find out what it means.  :0)

Wait, I just spun myself into an infinite loop... 

-- Josh


- Original Message - 
From: "Emmet McGovern" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Friday, August 04, 2006 12:36 PM
Subject: RE: Authorize.net CFC


> O.  I'm so mad at you right now Ferg  I just forgot to mention
> that.
>
> -Original Message-
> From: Ken Ferguson [mailto:[EMAIL PROTECTED]
> Sent: Friday, August 04, 2006 3:42 PM
> To: CF-Talk
> Subject: RE: Authorize.net CFC
>
> I was hoping that's how you'd take that comment Emmet! Too many people
> would have been offended by my backhand slap.
>
> --Ferg
>
>
>
> -Original Message-
> From: Emmet McGovern [mailto:[EMAIL PROTECTED]
> Sent: Friday, August 04, 2006 2:01 PM
> To: CF-Talk
> Subject: RE: Authorize.net CFC
>
> What the hell is a google?
>
> -e
>
> -Original Message-
> From: Ken Ferguson [mailto:[EMAIL PROTECTED]
> Sent: Friday, August 04, 2006 2:44 PM
> To: CF-Talk
> Subject: RE: Authorize.net CFC
>
> Hey check that out. I Googled Authorize.net cfc and it was like the
> second listing. I guess some people just can't match my mad googling
> skills, huh?
>
> http://www.houseoffusion.com/groups/CF-Talk/thread.cfm/threadid:43531
>
> Thanks,
>
> Ken Ferguson
> 214.636.6126
>
>
>
> -Original Message-
> From: Emmet McGovern [mailto:[EMAIL PROTECTED]
> Sent: Friday, August 04, 2006 1:24 PM
> To: CF-Talk
> Subject: Authorize.net CFC
>
> Has anyone made a CFC yet for authorize.net?  Free or Paid.
>
> Emmet
>
>
>
>
>
>
>
>
>
>
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248839
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Query problem with lists of values

2006-08-03 Thread Josh Adams
Why don't you use a join table via which to associate your items and
categories?

Josh 

-Original Message-
From: Patrick Forsythe [mailto:[EMAIL PROTECTED] 
Sent: Thursday, August 03, 2006 1:47 PM
To: CF-Talk
Subject: Re: Query problem with lists of values

that is kind of what I thought, but is there any way around this?


>This is happening of course because two of your like clauses "catid LIKE
'#uid#' AND catid LIKE '#uid#,' means that the 2 will match the 2 in '52,'.
This is the difficulty with this kind of set up.
>


>--
>Patrick Forsythe
>Tech Support
>Smallville Communications
>http://www.toto.net
>
>"Guter Rat ist teuer."  --Unbekannt
>



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248742
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Hey, does anyone have any ideas regarding a "top 40" voting system?

2006-08-01 Thread Josh Nathanson
A big part of it will be to figure out how you want people to rate the 
songs:
1) Rate each song on a scale of 1 to 10 or the like; default to no vote
2) Enter a list ranking for each song, for example 1 for their favorite, 2 
for their 2nd favorite etc.

Probably the first would be easier to handle for the person voting, that way 
they don't have to scroll around figuring out whether they like song number 
10 better than song number 30 for example.  Also they don't have to vote for 
each song, you just tabulate the average rating per vote so it's scaled 
correctly, and those songs not getting votes won't be penalized.

-- Josh


- Original Message - 
From: "Greg Morphis" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Tuesday, August 01, 2006 1:51 PM
Subject: Re: Hey, does anyone have any ideas regarding a "top 40" voting 
system?


> Have a main songs table with song info, and a scores table with song
> IDs and a number say 1-10 score.
> Query the scores table to get an average, arrange query by that
> average and either use SQL to get the top 40 rows or through the use
> of CFLOOP output the 40 top scores..
://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=19154.14955.4 


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248574
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


OT: Security Cert, transferable?

2006-08-01 Thread Josh Nathanson
Hey all,

Is is possible to transfer a security cert issued by a certifying authority 
such as GeoTrust from one host to another?  From what I can gather, it's not 
possible because the CSR and private key are specific to the host they're 
generated by, and these are used by the certifying authority to generate the 
public cert.  But, I'm not sure I have a full grasp on how it all works. 
Here's my understanding:

- Generate CSR and private key at the host
- Send private key to certifying authority
- Purchase cert, certifying authority issues public certificate based on 
private key
- I install public certificate at my host, all three components must be 
there: CSR, Private Key, Public cert

Do I have this correct or am I missing something there.

-- Josh



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248522
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Sharing Sessions between a .Net machine and a CF machine

2006-07-31 Thread Josh Adams
I'm going to write Ian directly again everyone but a point I'll make here
for all:

If you use BlueDragon and a bug in the application server causes a problem
that kills a patient (or whatever else), we at New Atlanta will answer for
that under the terms of our SLA and license agreement with you, just as any
other software vendor would.  We are an accountable and customer-responsive
organization in our 10th year of business.  We're here, we stand behind our
products, and we have no plans to go anywhere.

Josh 

-Original Message-
From: Ian Skinner [mailto:[EMAIL PROTECTED] 
Sent: Monday, July 31, 2006 5:34 PM
To: Josh Adams
Cc: cf-talk@houseoffusion.com
Subject: RE: Sharing Sessions between a .Net machine and a CF machine

If so, then good--I'm here, man:  please tell me more about what you mean
when you say you can't get BlueDragon.

My company has shown no interest in the product.  We are a very restricted
environment.  Accountability is a big one that keeps us out of the open
source world.  This probably does not apply to New Atlanta and BlueDragon.
But, if a bug in the application server causes a problem that kills a
patient (ok worse case scenario, but we have had multi-million dollar blood
recalls due to human error), the company wants somebody to answer for that.


--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

-
| 1 |   |
-  Binary Soduko
|   |   |
-
 
"C code. C code run. Run code run. Please!"
- Cynthia Dunning

Confidentiality Notice:  This message including any attachments is for the
sole use of the intended
recipient(s) and may contain confidential and privileged information. Any
unauthorized review, use, disclosure or distribution is prohibited. If you
are not the intended recipient, please contact the sender and delete any
copies of this message. 





~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248355
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CFIDE not accessible - I think???

2006-07-31 Thread Josh Nathanson
What about some sort of client-side issue on your local box.  Flash version, 
ActiveX blocking, something like that.  Any way you could post a test page 
somewhere that list folks could run and see if it works?  Then if others can 
get it to run, you'd know it was something client-side on your box.

-- Josh




- Original Message - 
From: "Mingo Hagen" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Monday, July 31, 2006 12:59 PM
Subject: Re: CFIDE not accessible - I think???


> Ok, I'm at a loss... anyone? Could it be the amount of items in the
> query? Or some illegal characters?
>
> Steve LaBadie wrote:
>> If I format as HTML, or XML the cfselect will populate.
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248337
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: IIS 6.0

2006-07-31 Thread Josh Adams
IIS 6.0 has some great features like application pooling and process
recycling that can be really useful.  If you're just using it as a web
server and not as an application server you'll get more limited benefit from
those features.  But when running .NET applications (including but not
limited to BlueDragon.NET applications) some of those features can truly be
lifesavers.

Josh 

-Original Message-
From: Steve LaBadie [mailto:[EMAIL PROTECTED] 
Sent: Monday, July 31, 2006 12:14 PM
To: CF-Talk
Subject: IIS 6.0

We are putting up a brand new web server and want to know if anyone has an
opinion about upgrading to IIS 6.0.  I am currently using 5.1 on my
development box.

 

Steve LaBadie, Web Manager
East Stroudsburg University
200 Prospect St.
East Stroudsburg, Pa 18301
570-422-3999
[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> http://www.esu.edu
<http://www3.esu.edu> 

 





~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248264
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CF 8 feature survey

2006-07-29 Thread Josh Nathanson
Regards cfmail, I would imagine the lack of error checking has something to 
do with the balance between speed and usability.  The more error checking it 
has to do, the more it slows down.

If there was robust error checking in the context of a cfmail, people might 
be complaining that cfmail was too darn slow.  For years the knock on CF was 
"it's too heavy, too slow" (in some circles people still think that) so at 
some point I imagine the developers were leaning toward speed over 
usability, and so they sacrificed error checking in cfmail content.  Just a 
guess.

-- Josh







- Original Message - 
From: "Robertson-Ravo, Neil (RX)" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Saturday, July 29, 2006 10:11 AM
Subject: Re: CF 8 feature survey


> Indeed, and it makes you wonder why that, such a significant problem has 
> not
> been addressed in earlier editions. Must be a reason?
>
>
>
>
>
>
>
> "This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
> Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,
> Registered in England, Number 678540.  It contains information which is
> confidential and may also be privileged.  It is for the exclusive use of 
> the
> intended recipient(s).  If you are not the intended recipient(s) please 
> note
> that any form of distribution, copying or use of this communication or the
> information in it is strictly prohibited and may be unlawful.  If you have
> received this communication in error please return it to the sender or 
> call
> our switchboard on +44 (0) 20 89107910.  The opinions expressed within 
> this
> communication are not necessarily those expressed by Reed Exhibitions."
> Visit our website at http://www.reedexpo.com
>
> -Original Message-
> From: Rick Faircloth
> To: CF-Talk
> Sent: Sat Jul 29 18:07:14 2006
> Subject: RE: CF 8 feature survey
>
> From somewhat of an outsider's perspective on this "discussion"...
>
> Usually the problems for which workarounds have to be developed
> become features eventually.
>
> Yes, it's true there are workarounds for the email issue, but if it's a
> significant issue, as Mike is saying, then CF should be enhanced
> to handle it on its own and not with workarounds.
>
> Just some thoughts...
>
> Rick
>
>
> -Original Message-
> From: Mike Kear [mailto:[EMAIL PROTECTED]
> Sent: Saturday, July 29, 2006 12:14 PM
> To: CF-Talk
> Subject: Re: CF 8 feature survey
>
> Yep.  SIlly me.   I've been coding ColdFusion for only 9 years.
>
> I have more than 40 clients building web sites on my system. I build sites
> for other clients on their systems too.  In all, over the last 9 years 
> I've
> worked on self-hosted systems and shared hosting systems.
> In fact I think i've worked on sites on about 6 different hosting centres.
> Some mine, some were other hosting companies my clients have chosen.  My
> first learning experience all those years ago was with Shanje (SHUDDER!),
> and lately with HostMySite, and Netspeed and others in between.
>
> NOT ONE . .NONE have ever had any plan to allow users to get access to
> undelivered emails.
>
> As i said, i had this fantasy that last week alone I spent 6 hours trying 
> to
> track down CFMAIL problems that my clients were having in their code.
> Obviously i was mistaken and was reading the paper all
> that time instead.   The panic emails from my clients asking for help
> figuring out why their forms weren't working were figments of my
> imagination.
>
> CFMAIL is a tag that gives a lot of heartburn to some users.It was
> impertinent of me to suggest that perhaps we might make CFMAIL easier
> for users to code.   After all, ColdFusion had that reputation years
> ago that it was easy to use for neophytes,  but "REAL" SERVER PROGRAMS
> shed that notion really early on.   And if Coldfusion is to be a
> "REAL" SERVER app like .ASP or .PHP it has to be more difficult to use not
> easier.
>
> I dont know what i was thinking.  Easier to use.  Reduce the time
> taken to develop and debug.   Jeez.  That would only get in the way of
> the headlong rush to force ColdFusion into being a second-class imitation 
> of
> something else rather than the best in the world at what it does best -
> something that the java and dotnet and php programmers would envy and 
> whine
> about to their vendors.  NO! We wouldnt want that.  We have to continually
> compare CFMX to other solutions, instead of having THEM follow US.
>
> For many shared hosted users it isnt all there.  (not their - your
> spellcheck has led you astray).   You dont have experience of shared
>

Re: in CF Flash Form

2006-07-28 Thread Josh Nathanson
Maybe you already checked this but if you do a cfdump do you see data in 
your query?

- -Josh


- Original Message - 
From: "Steve LaBadie" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Friday, July 28, 2006 10:43 AM
Subject: RE:  in CF Flash Form


> Kelly,
>
> Thanks for the code, but still no go :-(
>


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248051
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: reading large text file

2006-07-28 Thread Josh Nathanson
Thanks Martyn, was hoping someone had a MySQL method to handle large text 
files.  Might be needing that.

-- Josh


- Original Message - 
From: "Martyn Bowis" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Friday, July 28, 2006 1:29 AM
Subject: Re: reading large text file


> Hi Martin,
>
> Try using a bulk import or bulk copy method with your SQL database.  MSSQL 
> has a DTS that can do this, and MYSQL has the following:
>
> 
> 
>LOAD DATA INFILE '#fabsolute_file_path#' INTO TABLE RAWDATA
>FIELDS TERMINATED BY ',' ENCLOSED BY '"'
>LINES TERMINATED BY '#newline#'
>IGNORE 1 LINES
> 
>
> Create your RAWDATA table first - can even do this dynamically if the 
> number and naming of your data columns varies with each file.
> Newline is a line break and carriage return ascii values.
> Ignore first line if it has column titles in it.
> Be sure that you use double backslashes in your file path for MYSQL (can 
> do with ReReplace function)
> Use DROP TABLE RAWDATA to quickly empty your database of that table's 
> content.  Then just CREATE it again.
>
> What could take many minutes with CFFile, etc. will only take seconds with 
> bulk import/copy.
>
> Once you have your data in your temporary table, then just use SQL 
> statements to put it into your other tables as required.
>
> Cheers,
> Martyn
>
>
>
> On 7/28/2006 7:48:40 PM, gert franz ([EMAIL PROTECTED]) wrote:
>> Hi Martin,
>>
>> you could use Railo instead, since Railo can loop through a large file
>> line by line without reading it completely. Just use the > file="..."> tag to process the file, just as explained here:
>>
>> http://www.railo.ch/en/index.cfm?treeID=144
>>
>> Regards Gert
>>
>> Greetings / Grüsse
>> Gert Franz
>> Customer Care
>> [EMAIL PROTECTED]
>> www.railo.ch
>>
>> Join our Mailing List / Treten Sie unserer Mailingliste bei:
>> deutsch: http://de.groups.yahoo.com/group/railo/
>> english: http://groups.yahoo.com/group/railo_talk/
>>
>>
>>
>> Martin Thorpe wrote:
>> > Hello all.
>> >
>> >
>> >
>> > I am uploading a 74 + MB tab delimited text file that I am then reading
>> > and inserting the values into a database. The problem is it always
>> > times out, or just takes too long (did not finish over night) to
>> > read the file. It is uploaded fine.
>> >
>> > Any suggestions about how I may approach this to make it work with such
>> > large files?
>> >
>> > I looked at a bit of Java code someone had posted here but it went no
>> > quicker really.
>> >
>> > I was thinking of maybe chopping the file into slices and then
>> > processing but
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248037
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: String Manipulation: get filename out of path

2006-07-26 Thread Josh Adams
Use the GetFileFromPath() function.

There are a very large number of helpful CFML functions built right into the
main CFML application servers--as soon as you can find the time, read
through them a bit.

Josh 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, July 26, 2006 3:16 PM
To: CF-Talk
Subject: String Manipulation: get filename out of path

I have this string, 

C:\CFusionMX7\wwwroot\Inherent\mich_state_bar\PDFS\userguide.pdf

I want to parse out the name of the pdf.  How do I do this?

D



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:247805
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Cool feature I didn't know about

2006-07-25 Thread Josh Nathanson
Yup, that's true, the db must be in good shape...can you elaborate on what 
you mean by a bad index?  How about if there is no index on the aggregated 
column, what are the consequences there?  Trying to learn more about dbs.

Also, forgot to mention that in MySQL at least, you'll need to use GROUP BY 
on a column if you are using an aggregate function such as SUM.

-- Josh






- Original Message - 
From: "Robertson-Ravo, Neil (RX)" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Tuesday, July 25, 2006 11:36 AM
Subject: Re: Cool feature I didn't know about


> Not true all the time, it can however have overhead in SQL, a SUM function
> at the DB, on a say a bad index can have huge consquences.
>
>
>
>
>
>
>
> "This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
> Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,
> Registered in England, Number 678540.  It contains information which is
> confidential and may also be privileged.  It is for the exclusive use of 
> the
> intended recipient(s).  If you are not the intended recipient(s) please 
> note
> that any form of distribution, copying or use of this communication or the
> information in it is strictly prohibited and may be unlawful.  If you have
> received this communication in error please return it to the sender or 
> call
> our switchboard on +44 (0) 20 89107910.  The opinions expressed within 
> this
> communication are not necessarily those expressed by Reed Exhibitions."
> Visit our website at http://www.reedexpo.com
>
> -Original Message-
> From: Josh Nathanson <[EMAIL PROTECTED]>
> To: CF-Talk 
> Sent: Tue Jul 25 19:53:23 2006
> Subject: Re: Cool feature I didn't know about
>
> Also, it's nifty to do this in your SQL query and avoid the overhead in CF
> entirely, so long as your query is returning the desired rows.  In MySQL 
> it
> would be something like
>
> 
> SELECT SUM(rev) AS revsum, MAX(rev) AS revmax, MIN(rev) AS revmin,
> othercolumns FROM table WHERE whereclause
> 
>
> Then on your cf page, #getData.revsum#, #getData.revmax#, #getData.revmin#
> will give you the desired output.
>
> -- Josh
>
>
>
>
> - Original Message - 
> From: "Peterson, Chris" <[EMAIL PROTECTED]>
> To: "CF-Talk" 
> Sent: Tuesday, July 25, 2006 11:34 AM
> Subject: Cool feature I didn't know about
>
>
>> Most of you probably know this, but I thought I would share because I
>> will use this all the time.
>>
>> How often do you need to output a total line at the bottom of a report?
>> You probably do one of 2 things:  1) Increment a variable while
>> outputting your query, or b) perform a query of queries.
>>
>> I found this trolling online and needed to share, lets say you have a
>> query called 'getData' and a column named 'rev' and you needed a total.
>> Just do this:   #arraySum(getData['rev'])#  You can use any array
>> functions (avg, max, min) against a query column referenced like this.
>> This seems a lot easier to read to me too!
>>
>> Chris Peterson
>>
>>
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:247667
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Cool feature I didn't know about

2006-07-25 Thread Josh Nathanson
Also, it's nifty to do this in your SQL query and avoid the overhead in CF 
entirely, so long as your query is returning the desired rows.  In MySQL it 
would be something like


SELECT SUM(rev) AS revsum, MAX(rev) AS revmax, MIN(rev) AS revmin, 
othercolumns FROM table WHERE whereclause


Then on your cf page, #getData.revsum#, #getData.revmax#, #getData.revmin# 
will give you the desired output.

-- Josh




- Original Message - 
From: "Peterson, Chris" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Tuesday, July 25, 2006 11:34 AM
Subject: Cool feature I didn't know about


> Most of you probably know this, but I thought I would share because I
> will use this all the time.
>
> How often do you need to output a total line at the bottom of a report?
> You probably do one of 2 things:  1) Increment a variable while
> outputting your query, or b) perform a query of queries.
>
> I found this trolling online and needed to share, lets say you have a
> query called 'getData' and a column named 'rev' and you needed a total.
> Just do this:   #arraySum(getData['rev'])#  You can use any array
> functions (avg, max, min) against a query column referenced like this.
> This seems a lot easier to read to me too!
>
> Chris Peterson
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:247655
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Problem with tag

2006-07-25 Thread Josh Adams
So does  still get processed (I'm not sure where it lives in 
your app architecture) for the page with ?  If not, adjust things so 
that it does and see what happens.  :)

Josh 

-Original Message-
From: Lewis Billingsley [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, July 25, 2006 12:40 PM
To: CF-Talk
Subject: Re: Problem with  tag

I’m not using .   I just link to a page outside of the 
directory protected by .   At the top of that page I have .  
And also, just for good measure, as a part of my testing, I put a  
tag at the sign-in form page, which is also outside of the protected directory. 
 None of it matters.  

I’m having another problem that may be not be related.  If I have a file 
in a directory that I’ve bringing up in my browser for testing, then 
move the file to a different directory, then point my browser to the address of 
the old location, it brings the file up, even though the file is no longer 
there.  I cleared my browser cache.  Another developer tried it from his 
machine and it came up in his browser too.  The server people told me that 
there was no server cache.   Huh?   Is that possible?  And could it be related 
to this problem? I had already tried session storage before, but that was when 
I used application.cfm instead of the componant.

>Wait, are you using a cflocation after your cflogout tag? If so, the 
>cfauthorization cookie probably isn't being set properly.
>
>Swap over to session storage as one of the other posters suggested and 
>you should be ok.
>



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:247631
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: send form elements with ajaxcfc

2006-07-24 Thread Josh Nathanson
What happens if you do document.form_name instead of 
document.form_name.elements?  That would send the form object as a structure 
I think, which you could reference in your CFC.   In your CFC you could work 
with the different kinds of form elements that would be sent.

-- Josh




- Original Message - 
From: "Brad Wood" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Monday, July 24, 2006 12:08 PM
Subject: SOT: send form elements with ajaxcfc


> Quick question...
>
>
>
> I am experimenting with AjaxCFC for the first time today.  What is the
> best way to grab all the form element in a form, wrap them up and send
> them with Ajax to my CFC?  Basically I would like to have the same
> struct I would end up with in "form" if I did a regular form submit, but
> instead it would come in as "arguments.my_form".
>
>
>
> I thought I could just send in document.form_name.elements as an object,
> but I was getting a JavaScript error.  That may just be a typo somewhere
> on my part, but then I was thinking that disabled fields, check boxes,
> and radio button might not submit the same way, so I figured I would
> just ask what other people have done.
>
>
>
> Thanks.
>
>
>
> ~Brad
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:247542
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Able Commerce

2006-07-24 Thread Josh Nathanson
Able Commerce CFMX version is basically a java app with some cfscript tags 
wrapped around it.  I think that was probably the easiest way for them to 
push out a CF version of their "product".  I took a look at it (luckily they 
had a trial version) and dumped it immediately.  It sounds like you may be 
stuck with it, but let the powers that be know you could probably have 
CFWebstore up and customized (it's $300) in less time that you will be able 
to untangle the mess you're in with Able Commerce.

-- Josh




- Original Message - 
From: "Snake" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Monday, July 24, 2006 7:15 AM
Subject: RE: Able Commerce


>I tend to agree. My brief look at it didn't give me a very good opinion
> either. I decided to steer well clear.
>
>
>
> -Original Message-
> From: Ken Ferguson [mailto:[EMAIL PROTECTED]
> Sent: 24 July 2006 15:02
> To: CF-Talk
> Subject: Re: Able Commerce
>
> My only advice for working with AC is to run away, terribly fast. It is a
> total piece. I know you're looking for advice, so I will give you some.
> Chalk up what you've spent on it as a loss and ditch it immediately. If 
> you
> really want a CF-based off-the-shelf packaged cart application, look into
> Cartweaver or CFWebstore... Getting out of bed with AC now is going to 
> save
> you more money and frustration in the long run than it's going to cost you
> to write it off and go with something worth using.
>
> This is that one product that was SO BAD that I promised not only never to
> work with it again, but to make sure that every time I heard someone talk
> about it I would make absolutely sure that they knew how low my opinions 
> of
> the software and the company actually are. The single year-long project I
> was on working with AC was a complete nightmare filled with hours of 
> talking
> to the least helpful and least professional support personnel with whom 
> I've
> ever had the bad fortune to speak.
>
> Of course, that's just my opinion...
>
> *
> Ken Ferguson
> 214.636.6126
> *
>
>
>
>
>
>
> Eric Roberts wrote:
>> Anyone here ever customize an Able Commerce shopping cart?  I am
>> installing this so that it can be inserted within the context of the
>> existing site (using the headers and left side navigation features
>> already present on the site, with that cart being the body of the
>> store section of the site)  This site uses another package as a
>> content manager(not a very good one at that), but, unfortunately, we
>> need to work with what we have as they are not allowing us to do a
>> complete redo on the site.  Any help on this would be appreciated...or at
> least if someone could point me to a good resource.
>> Able Commerce's tech support system sucks.  Once you have it installed
>> (regardless if you have installed in the context of you site or not),
>> you are on your own, unless you want to pay 150/hr for customization
> support.
>> Needless to say, we won't be purchasing this ever again.  When I
>> complained about this to their customer service, all I got was
>> attitude and how that is how their model is and that they are not
>> changing it.  I have also had this same question on their forums for
>> the past 2-3 days and have not received a response from anyone.  Thanks 
>> in
> advance!
>>
>> Eric
>>
>>
>>
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:247520
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: iif: am I understanding correctly?

2006-07-21 Thread Josh Nathanson
This part of the app is not going to take heavy traffic, so the performance 
hit would be negligible.  However going forward I will always take into 
consideration the possible performance implications of iif/evaluate/DE.

Ben -- I guess I like messing around with stuff like this (iif, evaluate 
etc.) because I feel like I don't fully understand it, and if I can get it 
to work as desired, maybe I can come to a better understanding of how 
certain things in CF work in a more general sense.

-- Josh


- Original Message - 
From: "Munson, Jacob" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Friday, July 21, 2006 2:52 PM
Subject: RE: iif: am I understanding correctly?


>> OK, I ran cftimer on both examples, iif and the if/else way,
>> and both came
>> back 0 ms.  So I think in this case, since it's only looping
>> over 10 list
>> items or whatever, I'll stick with the leaner code.  Maybe if
>> you were
>> looping over thousands of list elements or query rows or
>> something, there'd
>> be a more noticeable performance hit.
>
> Interesting.  However, if your app ever need's to scale, it /could/ end
> up being thousands of list elements, if hundreds of people are firing
> that code simultaneously.  That's why I usually try to simulate some
> traffic by putting the pieces of code I want to test in a loop that runs
> thousands of times.  It's not the best way to test (a load tester would
> be better), but it gives you a better idea.  Of course, none of this is
> relevant if you know your app will never have that much traffic.  :)
>
>
> -
>
> This transmission may contain information that is privileged, confidential 
> and/or exempt from disclosure under applicable law. If you are not the 
> intended recipient, you are hereby notified that any disclosure, copying, 
> distribution, or use of the information contained herein (including any 
> reliance thereon) is STRICTLY PROHIBITED. If you received this 
> transmission in error, please immediately contact the sender and destroy 
> the material in its entirety, whether in electronic or hard copy format. 
> Thank you. A1.
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247390
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: iif: am I understanding correctly?

2006-07-21 Thread Josh Nathanson
OK, I ran cftimer on both examples, iif and the if/else way, and both came 
back 0 ms.  So I think in this case, since it's only looping over 10 list 
items or whatever, I'll stick with the leaner code.  Maybe if you were 
looping over thousands of list elements or query rows or something, there'd 
be a more noticeable performance hit.

-- Josh






- Original Message - 
From: "Munson, Jacob" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Friday, July 21, 2006 2:05 PM
Subject: RE: iif: am I understanding correctly?


> Yeah, it should.  But the question is, is that faster or not?  Without
> running some tests with cftimer, I'm not sure.  But I'm always a fan of
> using less code, as long as it doesn't kill the server.  :)
>
>> -Original Message-
>> From: loathe [mailto:[EMAIL PROTECTED]
>> Sent: Friday, July 21, 2006 3:00 PM
>>
>> 
>>  
>> 
>>  
>> 
>>
>> Does the same thing right?
>>
>> > -Original Message-
>> > From: Munson, Jacob [mailto:[EMAIL PROTECTED]
>> > Sent: Friday, July 21, 2006 4:43 PM
>> > To: CF-Talk
>> > Subject: RE: iif: am I understanding correctly?
>> >
>> > Does it?  I'm assuming you're referring to dynamic variables (from
>> > reading your other reply), but my cfif example has a
>> dynamic variable as
>> > well.
>> >
>> > > -Original Message-
>> > > From: loathe [mailto:[EMAIL PROTECTED]
>> > > Sent: Friday, July 21, 2006 2:37 PM
>> > >
>> > > But it executes much faster.
>
> This transmission may contain information that is privileged, confidential 
> and/or exempt from disclosure under applicable law. If you are not the 
> intended recipient, you are hereby notified that any disclosure, copying, 
> distribution, or use of the information contained herein (including any 
> reliance thereon) is STRICTLY PROHIBITED. If you received this 
> transmission in error, please immediately contact the sender and destroy 
> the material in its entirety, whether in electronic or hard copy format. 
> Thank you. A1.
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247380
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: am I understanding correctly?

2006-07-21 Thread Josh Nathanson
Hi Jacob,

Yup, I get the part about condition true, return 2nd parameter, else return 
3rd parameter, but in this:


It seems to me that iif actually does something like this:


But it only "DE's" if the pound signs are there, so that the #i# doesn't get 
evaluated when the page is first compiled -- it "waits" until the cfloop 
starts looping.  If there are no pound signs, you have to explicitly put 
DE("") for example, otherwise you get a string index error.

Loathe -- what sort of performance hit are we talking about?  I like the 
cleanliness of doing it in one line, but if it's a big performance hit I 
guess it's not worth it.

-- Josh



- Original Message - 
From: "Munson, Jacob" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Friday, July 21, 2006 1:22 PM
Subject: RE: am I understanding correctly?


> Here's how I understand iif:  If the condition is true, return the 2nd
> parameter, otherwise return the 3rd.
>
> So in your example, if (didquery and didfind) returns true, the code
> will evaluate getCust.#i#.  Otherwise it will evaluate DE("").
>
> iif is basically just a shorter cfif statement, using your example iif,
> this would do the same thing:
> 
> 
> 
> 
> 
>
> But that takes a lot more code.
>
>> -Original Message-
>> From: Josh Nathanson [mailto:[EMAIL PROTECTED]
>> Sent: Friday, July 21, 2006 1:41 PM
>>
>> I have some code that loops over a list of fields to cfparam some
>> attributes.  The idea is, if the query (getCust) returns a
>> record, set the
>> attribute to the query.column value;  if no record, set the
>> attribute to
>> null.  After some hacking around I got it to work as desired,
>> but I don't
>> quite understand how.
>>
>> > "Customer_ID,FirstName,LastName,Email,Address1,Address2,City,S
>> tate,State2,Zip,Country,Phone">
>> 
>>  
>>  
>> 
>>
>> What I don't get is how iif works.  It seems to do the following:
>> - Doesn't evaluate "getCust.#i#" when the page is compiled
>> - Assuming the iif conditional evaluates true, when the list
>> is looped,
>> first evaluates just the "#i#" in "getCust.#i#" to return the
>> proper field
>> name, then evaluates the variable "getCust.FirstName" (for
>> example) to
>> return the correct value.  So there is sort of a double
>> evaluation going on.
>>
>> Am I understanding iif correctly or does someone have a
>> better explanation
>> as to how it works.  The docs are kind of hard to fathom.
>
> This transmission may contain information that is privileged, confidential 
> and/or exempt from disclosure under applicable law. If you are not the 
> intended recipient, you are hereby notified that any disclosure, copying, 
> distribution, or use of the information contained herein (including any 
> reliance thereon) is STRICTLY PROHIBITED. If you received this 
> transmission in error, please immediately contact the sender and destroy 
> the material in its entirety, whether in electronic or hard copy format. 
> Thank you. A1.
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247362
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


iif: am I understanding correctly?

2006-07-21 Thread Josh Nathanson
I have some code that loops over a list of fields to cfparam some 
attributes.  The idea is, if the query (getCust) returns a record, set the 
attribute to the query.column value;  if no record, set the attribute to 
null.  After some hacking around I got it to work as desired, but I don't 
quite understand how.



 
 


What I don't get is how iif works.  It seems to do the following:
- Doesn't evaluate "getCust.#i#" when the page is compiled
- Assuming the iif conditional evaluates true, when the list is looped, 
first evaluates just the "#i#" in "getCust.#i#" to return the proper field 
name, then evaluates the variable "getCust.FirstName" (for example) to 
return the correct value.  So there is sort of a double evaluation going on.

Am I understanding iif correctly or does someone have a better explanation 
as to how it works.  The docs are kind of hard to fathom.

-- Josh



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247345
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: One-to-many application on one screen

2006-07-19 Thread Josh Nathanson
Just so happens I've been tasked with creating a "web 2.0" ordering system 
at my work, that is similar to what Andy is describing -- I've got the 
basics up and running -- check it out (not tested on Safari)

http://70.87.150.164/liveorder/main.cfm

Type a single letter in the first field (anything but x or q I think), it 
will give you a list of products, select one then click "Add Product" - 
enter some quantities and you'll see the order total is calculated as you 
go.

This uses AjaxCFC, and because it's all on one page, it makes it easier to 
do the instant total calculation -- at least you don't have to worry about 
keeping track of your frames and trying to do JS across pages.

Matt I think once you got into it a bit you could figure out AJAX stuff...if 
I can do it anyone can...it's just taking that first leap...

-- Josh



- Original Message - 
From: "James Holmes" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Wednesday, July 19, 2006 5:00 PM
Subject: Re: One-to-many application on one screen


> In a month you could write your own AJAX framework. It takes a few
> hours to make really useful inroads with the popular toolsets - it's
> really not that hard.
>
> On 7/20/06, Matt Robertson <[EMAIL PROTECTED]> wrote:
>> And AJAX... forget it.  If I could just get
>> a month off I could pick it up and learn that cool framework stuff
>> I've been wanting to get into.
>>
>> On the plus side, a frame is dirt simple for a student to implement.
>
> -- 
> CFAJAX docs and other useful articles:
> http://www.bifrost.com.au/blog/
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247147
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Form.fieldnames doesn't contains all form field names?

2006-07-19 Thread Josh Nathanson
OK, so that could cause the problem he's having.  He said there seem to be 
field names missing from the "form.fieldnames" list.  If he has three fields 
with the same name, there will seem to be two less names in 
"form.fieldnames" than there are fields on the submitted form.  Although, 
that would be pretty easy to diagnose, so that's probably not the issue.

-- Josh



- Original Message - 
From: "loathe" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Wednesday, July 19, 2006 2:42 PM
Subject: RE: Form.fieldnames doesn't contains all form field names?


> The name shows up just the one time.
>
>> -Original Message-
>> From: Josh Nathanson [mailto:[EMAIL PROTECTED]
>> Sent: Wednesday, July 19, 2006 5:35 PM
>> To: CF-Talk
>> Subject: Re: Form.fieldnames doesn't contains all form field names?
>>
>> The values of the duplicate fields would show up as a comma delimited
>> list,
>> but the fieldnames themselves?  How would that work -- "field1, field1,
>> field1, field2, field3 etc."?
>>
>>
>> - Original Message -
>> From: "loathe" <[EMAIL PROTECTED]>
>> To: "CF-Talk" 
>> Sent: Wednesday, July 19, 2006 2:27 PM
>> Subject: RE: Form.fieldnames doesn't contains all form field names?
>>
>>
>> > Those show up as a comma delimited list.
>> >
>> >> -Original Message-
>> >> From: Josh Nathanson [mailto:[EMAIL PROTECTED]
>> >> Sent: Wednesday, July 19, 2006 5:21 PM
>> >> To: CF-Talk
>> >> Subject: Re: Form.fieldnames doesn't contains all form field names?
>> >>
>> >> Any fields with duplicate names?  That might mess things up.
>> >>
>> >> -- Josh
>> >>
>> >>
>> >> - Original Message -
>> >> From: "Andy Matthews" <[EMAIL PROTECTED]>
>> >> To: "CF-Talk" 
>> >> Sent: Wednesday, July 19, 2006 1:49 PM
>> >> Subject: Form.fieldnames doesn't contains all form field names?
>> >>
>> >>
>> >> > MX 6.1 here
>> >> >
>> >> > I've got a page with a lengthy form (40+ fields). On submit, some of
>> >> > the
>> >> > fields aren't getting saved to the db. So I start testing:
>> >> >
>> >> > 1) I dump the form structure, fields are there.
>> >> > 2) I dump Form.fieldnames, fields are NOT there.
>> >> > 3) I loop over Form.fieldnames to test and indeed, the fields are 
>> >> > not
>> >> > there.
>> >> >
>> >> > Does anyone know what might be going on? I'm doing a simple cfloop
>> over
>> >> > Form.fieldnames:
>> >> >
>> >> > 
>> >> > #field#
>> >> > 
>> >> > 
>> >> >
>> >> > Any ideas?
>> >> >
>> >> > > >> > andy matthews
>> >> > web developer
>> >> > certified advanced coldfusion programmer
>> >> > ICGLink, Inc.
>> >> > [EMAIL PROTECTED]
>> >> > 615.370.1530 x737
>> >> > --//->
>> >> >
>> >> >
>> >> >
>> >>
>> >>
>> >
>> >
>>
>>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247112
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Form.fieldnames doesn't contains all form field names?

2006-07-19 Thread Josh Nathanson
The values of the duplicate fields would show up as a comma delimited list, 
but the fieldnames themselves?  How would that work -- "field1, field1, 
field1, field2, field3 etc."?


- Original Message - 
From: "loathe" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Wednesday, July 19, 2006 2:27 PM
Subject: RE: Form.fieldnames doesn't contains all form field names?


> Those show up as a comma delimited list.
>
>> -Original Message-
>> From: Josh Nathanson [mailto:[EMAIL PROTECTED]
>> Sent: Wednesday, July 19, 2006 5:21 PM
>> To: CF-Talk
>> Subject: Re: Form.fieldnames doesn't contains all form field names?
>>
>> Any fields with duplicate names?  That might mess things up.
>>
>> -- Josh
>>
>>
>> - Original Message -
>> From: "Andy Matthews" <[EMAIL PROTECTED]>
>> To: "CF-Talk" 
>> Sent: Wednesday, July 19, 2006 1:49 PM
>> Subject: Form.fieldnames doesn't contains all form field names?
>>
>>
>> > MX 6.1 here
>> >
>> > I've got a page with a lengthy form (40+ fields). On submit, some of 
>> > the
>> > fields aren't getting saved to the db. So I start testing:
>> >
>> > 1) I dump the form structure, fields are there.
>> > 2) I dump Form.fieldnames, fields are NOT there.
>> > 3) I loop over Form.fieldnames to test and indeed, the fields are not
>> > there.
>> >
>> > Does anyone know what might be going on? I'm doing a simple cfloop over
>> > Form.fieldnames:
>> >
>> > 
>> > #field#
>> > 
>> > 
>> >
>> > Any ideas?
>> >
>> > > > andy matthews
>> > web developer
>> > certified advanced coldfusion programmer
>> > ICGLink, Inc.
>> > [EMAIL PROTECTED]
>> > 615.370.1530 x737
>> > --//->
>> >
>> >
>> >
>>
>>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247107
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Form.fieldnames doesn't contains all form field names?

2006-07-19 Thread Josh Nathanson
Any fields with duplicate names?  That might mess things up.

-- Josh


- Original Message - 
From: "Andy Matthews" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Wednesday, July 19, 2006 1:49 PM
Subject: Form.fieldnames doesn't contains all form field names?


> MX 6.1 here
>
> I've got a page with a lengthy form (40+ fields). On submit, some of the
> fields aren't getting saved to the db. So I start testing:
>
> 1) I dump the form structure, fields are there.
> 2) I dump Form.fieldnames, fields are NOT there.
> 3) I loop over Form.fieldnames to test and indeed, the fields are not 
> there.
>
> Does anyone know what might be going on? I'm doing a simple cfloop over
> Form.fieldnames:
>
> 
> #field#
> 
> 
>
> Any ideas?
>
>  andy matthews
> web developer
> certified advanced coldfusion programmer
> ICGLink, Inc.
> [EMAIL PROTECTED]
> 615.370.1530 x737
> --//->
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247103
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: sms msg and euent gateways

2006-07-12 Thread Josh Nathanson
Thanks for that John.  Maybe someone on this list with Nextel could do a 
test, send themselves a text message to that address and see if it works. 
That would be awesome.

-- Josh



- Original Message - 
From: "Burns, John D" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Wednesday, July 12, 2006 9:48 AM
Subject: RE: sms msg and euent gateways


> Sprint: [EMAIL PROTECTED]
>
> At least that's what it has been to this point. I came over as legacy
> sprint so I'm not sure if Nextel is something different or if they're
> going to move everything to one domain or what in the future.
>
> John Burns
>
> -Original Message-
> From: Josh Nathanson [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, July 12, 2006 12:43 PM
> To: CF-Talk
> Subject: Re: sms msg and euent gateways
>
> I've been compiling a list of the various US telecom providers' email to
> sms
> addresses, here it is, this will save you some time.  If anyone has more
> to
> add (especially Sprint) please post.
>
> Qwest: [EMAIL PROTECTED]
> Verizon: [EMAIL PROTECTED]
> Virgin Mobile: [EMAIL PROTECTED]
> Cingular: [EMAIL PROTECTED]
> Alltel: [EMAIL PROTECTED]
> TMobile: [EMAIL PROTECTED]
> Sprint: 
>
> -- Josh
>
>
>
>
> - Original Message - 
> From: <[EMAIL PROTECTED]>
> To: "CF-Talk" 
> Sent: Wednesday, July 12, 2006 9:29 AM
> Subject: RE: sms msg and euent gateways
>
>
>> If you don't know where to start, make it simple.
>>
>> Almost every SMS provider provides email to SMS conversion. I think
> sprint
>> is (phone number)@sprint.net (I think).
>>
>> Just send an email to whatever address and that will work fine.
>>
>> If you want to process INCOMMING SMS messages, that's a bit more
> difficult
>> and I don't know how to do that.
>>
>> Original Message:
>> -
>> From: B V [EMAIL PROTECTED]
>> Date: Wed, 12 Jul 2006 11:23:24 -0500
>> To: cf-talk@houseoffusion.com
>> Subject: sms msg and euent gateways
>>
>>
>> can anyone point me to a good tutorial on sms text messages from
>> configuring to sending the actual messages, because i am having so
>> many issues i don't even know where to start. thanks;
>>
>>
>>
>>
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246300
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: sms msg and euent gateways

2006-07-12 Thread Josh Nathanson
I've been compiling a list of the various US telecom providers' email to sms 
addresses, here it is, this will save you some time.  If anyone has more to 
add (especially Sprint) please post.

Qwest: [EMAIL PROTECTED]
Verizon: [EMAIL PROTECTED]
Virgin Mobile: [EMAIL PROTECTED]
Cingular: [EMAIL PROTECTED]
Alltel: [EMAIL PROTECTED]
TMobile: [EMAIL PROTECTED]
Sprint: ????

-- Josh




- Original Message - 
From: <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Wednesday, July 12, 2006 9:29 AM
Subject: RE: sms msg and euent gateways


> If you don't know where to start, make it simple.
>
> Almost every SMS provider provides email to SMS conversion. I think sprint
> is (phone number)@sprint.net (I think).
>
> Just send an email to whatever address and that will work fine.
>
> If you want to process INCOMMING SMS messages, that's a bit more difficult
> and I don't know how to do that.
>
> Original Message:
> -
> From: B V [EMAIL PROTECTED]
> Date: Wed, 12 Jul 2006 11:23:24 -0500
> To: cf-talk@houseoffusion.com
> Subject: sms msg and euent gateways
>
>
> can anyone point me to a good tutorial on sms text messages from
> configuring to sending the actual messages, because i am having so
> many issues i don't even know where to start. thanks;
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246288
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: calling one function inside another

2006-07-06 Thread Josh Nathanson
Also the cfinvoke tag will work if you like that better -- from within your 
addUser function:


-- any arguments, use cfinvokeargument --


-- Josh


- Original Message - 
From: "Cutter (CFRelated)" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Thursday, July 06, 2006 10:47 AM
Subject: Re: calling one function inside another


> Yes, you may call function of other cfc's. But, like working with class
> files in java or C++, if the file has no reference to instantiate that
> object (conferences) then it won't find the function. You will need to
> create an object instance [variables.conferences =
> createobject("component","conferences").init(dsn)] prior to calling any
> functions of the object [user.arrConferences =
> variables.conferences.GetConferences(userID)].
>
> Cutter
> __
> http://blog.cutterscrossing.com
>
> Crow T. Robot wrote:
>> Using Ray Camden's Galleon software, and I need to modify it a little.
>>
>> I've got a user.cfc file that takes care of all user functions.  I have
>> another, conferences.cfc, that takes care of all conferences.  Now,
>> after a user is inserted using the addUser method inside users.cfc, I
>> have the need to call the GetConferences method that exists inside
>> conferences.cfc inside the addUser function so that I can subscribe the
>> user to all the conferences when they sign up.  However, before I can
>> get into that, I need to know why it seems like I am not able to call
>> the GetConferences() function from with the users.cfc.  I keep getting
>> undefined errors unless I copy the GetConferences function into the
>> users.cfc file.  After that, it works fine.
>>
>> I'm quite new to the cfc thing, so any help in the underlying logic and
>> the "whys" of the above behavior would be great.
>>
>> Thanks
>>
>>
>
> 

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


Re: iframe scrolling

2006-07-06 Thread Josh Nathanson
Hi Brad,

You may want to try creating a css class and applying it to your iframe, if 
you haven't already done so.  Just a simple class will do, something like:

..padder {padding: 0px;}

then do



I found this helped me when I had a similar situation.  You can play around 
with the class and see what results you get.

-- Josh




- Original Message - 
From: "Brad Wood" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Thursday, July 06, 2006 10:03 AM
Subject: RE: iframe scrolling


> It actually scrolls about a quarter of an inch.  It is NOT one of the
> "disabled" scrolls bars which are grey and don't actually move.  I can't
> figure out what it is scrolling though, because there is nothing but
> white space over there.
>
> It is like IE is making up a div or something which isn't really there.
>
>
> ~Brad: http://www.houseoffusion.com/tiny.cfm/54 


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


Re: ajaxcfc and Call back

2006-06-30 Thread Josh Nathanson
Going back to the original post, I think he was asking how to reference a 
row in the returned query using a dynamically passed variable.  James H. 
mentioned setting a global variable, which should work fine.  So:

var glob = MyFirstArg // this is the row number you want to pass to the 
returned query

DWREngine._execute(_ajaxConfig._cfscriptLocation, null, 'doQuery', id, 
MyFirstArg, doQueryResults);

doQueryResults(result) {
theDesiredRow = result[glob];
}

-- Josh





- Original Message - 
From: "Adkins, Randy" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Friday, June 30, 2006 12:50 PM
Subject: RE: ajaxcfc and Call back


> "R" is the structure of the query that is returned from the CFC.
> For sake of the naming convention, lets say I want to pass the value of 
> "PassThisValue"
> To the doQueryResults call.  Both of these are different values.
>
> R is a query structure and PassThisValue would be a simple numeric 
> variable.
>
>
>
> -Original Message-
> From: Andy Matthews [mailto:[EMAIL PROTECTED]
> Sent: Friday, June 30, 2006 3:42 PM
> To: CF-Talk
> Subject: RE: ajaxcfc and Call back
>
> r
>
> myFirstArg is the name of the value passed into doQueryResults. But inside 
> doQueryResults, the value is called r.
>
> So you should be able to use "r".
>
>  andy matthews
> web developer
> certified advanced coldfusion programmer ICGLink, Inc.
> [EMAIL PROTECTED]
> 615.370.1530 x737
> --//->
>
> -Original Message-
> From: Adkins, Randy [mailto:[EMAIL PROTECTED]
> Sent: Friday, June 30, 2006 2:25 PM
> To: CF-Talk
> Subject: RE: ajaxcfc and Call back
>
>
> From what I gather using the following  you can pass the variable as an 
> argument.
>
> DWREngine._execute(_ajaxConfig._cfscriptLocation, null, 'doQuery', id, 
> myfirstArg, doQueryResults);
>
> But the question is in the CallBack routine (doQueryResults), how do I 
> reference myfirstArg?
> R = the query results from the cfc. Is it as simple as (r,firstArg) ?
>
> Function doQueryResults(r){
> 
> }
>
> -
>
>
>
> 

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


Re: JS Pop-up Window problems...

2006-06-30 Thread Josh Nathanson
If you are trying to work with them to resolve the problem, and they are not 
responsive, then that's the best you can do.

Formerly disruptor dave has mentioned problems with Norton creating havoc 
with Javascript, although I'm not sure if he has any specifics as to what 
exactly is blocked by Norton.

Maybe you could let your clients know in the nicest way possible that along 
with the security that Norton provides, it has a downside of disabling or 
altering some website functionality, and that they could configure their AV 
software to enable greater functionality while only minimally increasing any 
virus risk.  At least that would get them off your back for a while, and put 
the onus on them to address the issue on the client side.

-- Josh





- Original Message - 
From: "Dan G. Switzer, II" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Friday, June 30, 2006 11:30 AM
Subject: RE: JS Pop-up Window problems...


> >Why don't you use windows remote assistance to connect to your clients
>>machine and view the problem for yourself.
>
> Easier said than done. They like to keep e-mailing us about complaining
> about the problem, but they don't like answering our questions or calls.
>
> Ce la vie...
>
> -Dan
>
>
> 

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


Re: If the structure exists, otherwise ... consistency needed

2006-06-29 Thread Josh Nathanson
I think you may want:

if(structKeyExists(AmazonXML.ItemLookupResponse.Items.Item.ItemAttributes, 
"Author"))

{
Book.Author 
=AmazonXML.ItemLookupResponse.Items.Item.ItemAttributes.Author.XmlText;
}

How about giving that a try...

-- Josh





- Original Message - 
From: "Howard Owens" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Thursday, June 29, 2006 8:44 PM
Subject: RE: If the structure exists, otherwise ... consistency needed


> Here's my scratch page, where I'm doing my testing:
>
> http://www.howardowens.com/amazon.cfm
>
> For the current query, look at the "author" field in the CFDUMP (top) of 
> the
> entire XML, and the CFDUMP (bottom) of my "book" structure.  You'll see in
> the top dump, "author" is there, but in the parsed structure, it is not.
>
>
> Here is the relevant portion of the script:
>
>
> 
> AmazonXML = XmlParse(cfhttp.filecontent);
> Book = StructNew();
>
>
>
> // check for author and set value if exists
> if(structKeyExists(AmazonXML.ItemLookupResponse.Items.Item,"ItemAttributes.A
> uthor")) {
> Book.Author =
> AmazonXML.ItemLookupResponse.Items.Item.ItemAttributes.Author.XmlText;
> }
>
> else {
> Book.Author = '';
> }
>
>
> 
>
> Thanks.
>
> H.
>
>
> -Original Message-
> From: Ian Skinner [mailto:[EMAIL PROTECTED]
> Sent: Thursday, June 29, 2006 1:36 PM
> To: CF-Talk
> Subject: RE: If the structure exists, otherwise ... consistency needed
>
> Can you provide a small but complete example of a true and false condition
> of the xml you are working with?
>
>
> --
> Ian Skinner
> Web Programmer
> BloodSource
> www.BloodSource.org
> Sacramento, CA
>
> -
> | 1 |   |
> -  Binary Soduko
> |   |   |
> -
>
> "C code. C code run. Run code run. Please!"
> - Cynthia Dunning
>
> Confidentiality Notice:  This message including any
> attachments is for the sole use of the intended
> recipient(s) and may contain confidential and privileged
> information. Any unauthorized review, use, disclosure or
> distribution is prohibited. If you are not the
> intended recipient, please contact the sender and
> delete any copies of this message.
>
>
>
>
>
>
> 

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


Re: FJAX - discuss amongst yourselves

2006-06-23 Thread Josh Nathanson
My understanding is that the cfajax/ajaxcfc engine will return whatever you 
return from CF, but converted into JS.  So if your CF function returns a 
string, it will be converted into a JS string.  If your CF returns a query, 
it converts that into JS array of objects which mimics a recordset.  So 
recordset[0].column in your returned JS is equivalent to the first row, 
fieldname "column" of your returned cf query.

Here's a very quick and straightforward explanation of the return types, I 
think this would apply to ajaxCFC as well since the js engine is essentially 
the same.

http://www.indiankey.com/cfajax/wiki/ow.asp?CFAjaxReturnTypes

-- Josh






- Original Message - 
From: "Bryan Stevenson" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Friday, June 23, 2006 9:46 AM
Subject: Re: FJAX - discuss amongst yourselves


> geesh...guess I missed some parts of CFAJAXal we use it for is 
> returning
> strings
>
> Of course this project I'm not writing the code...my staff is...normally 
> I'm in
> the trenches and have a cleaer picture of what's going on ;-)
>
> Cheers
>
> Bryan Stevenson B.Comm.
> VP & Director of E-Commerce Development
> Electric Edge Systems Group Inc.
> phone: 250.480.0642
> fax: 250.480.1264
> cell: 250.920.8830
> e-mail: [EMAIL PROTECTED]
> web: www.electricedgesystems.com
>
>
> 

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


Re: appending two queries

2006-06-22 Thread Josh Nathanson
You haven't mentioned the average size of the CSV file you're importing.  If 
it's not too big, and you run your CF scheduled task at 2 in the morning or 
thereabouts, it should be fine to just output your query and do the db 
inserts one row at a time.

If it's such a huge file that it will chew up resources for a while, you 
might have to use one of the alternate routes others have mentioned.

-- Josh




- Original Message - 
From: "Crow T. Robot" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Thursday, June 22, 2006 1:19 PM
Subject: Re: appending two queries


> Well, this script will be running on a scheduled task, but it'll be a CF
> scheduled task.  That solution might work with some modifications.
>
> Let me bring a little more background in to the equation.  The data that
> is being read in via CSV has a date attached to each record, if any of
> the dates in the database matches those dates, I need to delete any and
> all data from that day, then do the group import, if possible.  So, I
> don't see any way to do this without CF getting involved.
>
> Sorry, this is getting more complicated, but it is the problem that was
> put in front of me.  :)
>
> Andy Matthews wrote:
>> What about saving the file to the server then running a scheduled task 
>> and
>> let the database do the import. It'll be WAY faster and won't involve CF 
>> at
>> all. I recently had our sysadmin setup something like that for me. It ran 
>> in
>> 10 or 15 seconds what was taking CF about 2 or 3 minutes to perform.
>>
>> > andy matthews
>> web developer
>> certified advanced coldfusion programmer
>> ICGLink, Inc.
>> [EMAIL PROTECTED]
>> 615.370.1530 x737
>> --//->
>>
>> -Original Message-
>> From: Crow T. Robot [mailto:[EMAIL PROTECTED]
>> Sent: Thursday, June 22, 2006 2:49 PM
>> To: CF-Talk
>> Subject: Re: appending two queries
>>
>>
>> This will happen once a day, every day.  Same data structure, yes, same
>> database table, yes.  Same data, no.
>>
>> Ben Nadel wrote:
>>> Is this a one-time deal? Or is this something you need to do on a 
>>> regular
>>> basis (same DB, same table).
>>>
>>> ...
>>> Ben Nadel
>>> Web Developer
>>> Nylon Technology
>>> 350 7th Avenue
>>> Floor 10
>>> New York, NY 10001
>>> 212.691.1134 x 14
>>> 212.691.3477 fax
>>> www.nylontechnology.com
>>>
>>> "Some people call me the space cowboy. Some people call me the gangster 
>>> of
>>> love."
>>>
>>> -Original Message-
>>> From: Crow T. Robot [mailto:[EMAIL PROTECTED]
>>> Sent: Thursday, June 22, 2006 3:36 PM
>>> To: CF-Talk
>>> Subject: appending two queries
>>>
>>> Let's say that I have a CSV file that I am reading into a page, and I
>>> convert it to a query.  I have a database table that it set up exactly
>> like
>>> the converted query, I want to basically insert the CSV data into the
>>> database.  Is there an easier, more efficient way to do this that 
>>> looping
>>> over the CSV query and doing an insert for each record?
>>>
>>> SQL Server 2K, CFMX6.1
>>>
>>>
>>>
>>>
>>
>>
>>
>>
>
> 

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


Re: appending two queries

2006-06-22 Thread Josh Nathanson
Off the top of my head I'd say no, because inserting more than one row at a 
time would mess up any auto-incrementing...however maybe someone has some 
fancy way to do it if you don't have an auto-increment field set up.

-- Josh


- Original Message - 
From: "Crow T. Robot" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Thursday, June 22, 2006 12:35 PM
Subject: appending two queries


> Let's say that I have a CSV file that I am reading into a page, and I
> convert it to a query.  I have a database table that it set up exactly
> like the converted query, I want to basically insert the CSV data into
> the database.  Is there an easier, more efficient way to do this that
> looping over the CSV query and doing an insert for each record?
>
> SQL Server 2K, CFMX6.1
>
> 

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


Re: Resistance is futile, you have been assimilated.

2006-06-22 Thread Josh Nathanson
That's good, solid customer service right there.

I'm sure before this story broke, that rep was one of the most prized 
employees over there.  They are probably trained to resist cancellations to 
the death.

-- Josh





- Original Message - 
From: "Ian Skinner" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Thursday, June 22, 2006 10:56 AM
Subject: AOL: Resistance is futile, you have been assimilated.


> http://www.nbc10.com/news/9406462/detail.html
>
> Has this made it to this group yet?
>
>
> --
> Ian Skinner
> Web Programmer
> BloodSource
> www.BloodSource.org
> Sacramento, CA
>
> -
> | 1 |   |
> -  Binary Soduko
> |   |   |
> -
>
> "C code. C code run. Run code run. Please!"
> - Cynthia Dunning
>
> Confidentiality Notice:  This message including any
> attachments is for the sole use of the intended
> recipient(s) and may contain confidential and privileged
> information. Any unauthorized review, use, disclosure or
> distribution is prohibited. If you are not the
> intended recipient, please contact the sender and
> delete any copies of this message.
>
>
>
> 

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


Re: Can't open CF7 Administrator

2006-06-19 Thread Josh Nathanson
Congrats Rick on movin' on up in the world!  You'll be loving CF7.

Re DW - it still does some annoying things, it's not perfect, but I think 
it's a nice balance between design and coding features.  The design view 
nowadays is quite accurate, much improved over the earlier versions.  It is 
well worth the cost if you do a lot of design work.

One great feature in CF7 that's worth checking out is the 
cfchart/cfchartseries combo.  Talk about knocking out your clients...on the 
fly graphical chart generation?  Fuggedaboutit.

The downside of all this is that soon you'll find yourself wanting to 
rewrite all your old apps using CFCs.

-- Josh





- Original Message - 
From: "Rick Faircloth" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Monday, June 19, 2006 8:53 PM
Subject: RE: Can't open CF7 Administrator


> You're right...design needs to be as good as the code or it doesn't
> get past first base with most clients...and there's no reason it should.
>
> I'm strong on design, less strong of CF coding, but I get done what
> I need to.  I mostly work on sites that require adding, updating, and
> deleting
> content...text, photos, etc.  Some of the more complex work has been
> design business "webware" to run businesses processes where they wanted a
> custom
> application to take the place of many pieces of traditional software that
> were getting a little unwieldy.
>
> So a tool has got to function with CF without hindering my design work.
>
> I can always smell a FrontPage site in about 2 seconds after the browser
> opens.
> It's not that it was such a terrible tool...but it was free and many 
> people
> who used
> it generally had no talent for any part of web design and 
> development...and
> it gave
> FrontPage a very bad name.  I tried it when I first started and that's 
> when
> you had
> to use it like a word processor...yuck...
>
>
> Rick
>
>
>
> -Original Message-
> From: dave [mailto:[EMAIL PROTECTED]
> Sent: Monday, June 19, 2006 10:40 PM
> To: CF-Talk
> Subject: RE: Can't open CF7 Administrator
>
> lol, yeah right
> one is a 1 or 2 page site. The other is about a week long project
>
> Filthy.. yes, rich.. lol
>
> 3 clients a yr?, hell gotta do that a week.
>
> I can live a good lifestyle cause I dont sit around wasting my time on
> making projects that i'll spend a year on and never finish.
>
> Im like u Rick, mostly a one man band, call in help when i need it but the
> reality is that if you want people to use u and you dont have awhole team 
> to
> work with then you gotta have a a few skills and the one most ppl need to
> improve on is design because if the site looks like it was made in 
> frontpage
> (no matter how good the cfm code is) you wont get much business. So why
> waste time making something you cant use cause u dont have any clients.
>
> ~Dave - formerly known as "the disruptor"~
>
> 
> From: "Rick Faircloth" <[EMAIL PROTECTED]>
> Sent: Monday, June 19, 2006 10:15 PM
> To: CF-Talk 
> Subject: RE: Can't open CF7 Administrator
>
> I guess that's the genius of it...he only has two take care of two clients
> and he's "agonizingly busy" and probably getting filthy rich while the 
> rest
> of us CF coders have to take at least 3 clients every two years to 
> maintain
> a level of lifestyle such as Dave enjoys...
>
> Right Dave? ;o)
>
> Rick
>
> -Original Message-
> From: dave [mailto:[EMAIL PROTECTED]
> Sent: Monday, June 19, 2006 9:41 PM
> To: CF-Talk
> Subject: Re: Can't open CF7 Administrator
>
> And this comes from the resident genius, so how did u come up with time to
> come up with that since your 2 clients in the last 2 years must keep ya
> agonizingly busy.
>
> ~Dave - formerly known as "the disruptor"~
>
> 
> From: Will Tomlinson
> Sent: Monday, June 19, 2006 6:28 AM
> To: CF-Talk
> Subject: Re: Can't open CF7 Administrator
>
>> hell, I dunno
>
> dave "the worm" lyons
>
> And there's the quote of the week! :)
>
> Will
>
>
>
>
>
> 

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


Re: Can't open CF7 Administrator

2006-06-19 Thread Josh Nathanson
Just found the below text at the Apache site, on the page "Upgrading from 
2.0 to 2.2".  Note that it says "many modules will work", not all...so it's 
possible that mod_jrun doesn't work right with Apache 2.2.  I think if you 
go with Apache 2.0 you will be able to get CF to work fine.

-
Third Party Modules
Many third-party modules designed for version 2.0 will work unchanged with 
the the Apache HTTP Server version 2.2. But all modules must be recompiled 
before being loaded.
---

-- Josh





- Original Message - 
From: "Munson, Jacob" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Monday, June 19, 2006 3:59 PM
Subject: RE: Can't open CF7 Administrator


> Something you said jogged a memory...I'm not sure if CF works with
> Apache 2.2 yet.  I saw this blog entry on Ben Forta's site talking about
> a CF update to get Apache 2.2 to work in Linux/Unix, but at the time 2.2
> wasn't released for Windows yet.  Maybe Apache 2.2 on Windows doesn't
> work with CF?  Locally I'm running Apache 2.0 without problems.
>
> http://www.forta.com/blog/index.cfm/2006/5/18/ColdFusion-Now-Supports-Ap
> ache-22
>
>> -Original Message-
>> From: Rick Faircloth [mailto:[EMAIL PROTECTED]
>> Sent: Monday, June 19, 2006 4:53 PM
>>
>> Don't worry...I'm a big boy and I don't think I'm dumb just
>> because I'm
>> having problems with this.
>>
>> I think one of the issues is that there's no documentation
>> that I've found
>> that is comprehensive
>> *and* up-to-date with the latest version of CFMX7 and Apache 2.2.  The
>> documentation I've dealt
>> with, including ACME has referenced previous version of
>> Apache and others
>> have reference previous
>> version of CF.  So I think it's just a matter of getting just enough
>> out-of-date info and my lack of
>> knowledge that makes a bad combination.
>>
>> Others might see right through my problems...and I have an idea what's
>> wrong, I just don't know enough
>> about how to correct things or set everything up properly.
>>
>> I don't think Apache will be bad to administer, it's just
>> frustrating to not
>> be able to understand what's
>> happening and, apparently, no one else can either...at least
>> not through the
>> info I can send through email.
>>
>> I can get .htm and .html files to process through the
>> webroot, but when the
>> ..cfm files are run through the
>> browser from the webroot, I just get code...at least it's not
>> asking me if I
>> want to save the file any longer!
>> (To get this I had to unzip a GettingStarted folder and copy it to the
>> document root...but it still just shows
>> the code of CF...
>>
>> I think I'll just uninstall and reinstall with the little
>> knowledge I've
>> gained and see if I can set things up
>> in a way that makes them work...
>>
>> And I think it's not a matter of Apache being ready for
>> me...I think I may
>> not quite be ready for Apache...
>
> This transmission may contain information that is privileged, confidential 
> and/or exempt from disclosure under applicable law. If you are not the 
> intended recipient, you are hereby notified that any disclosure, copying, 
> distribution, or use of the information contained herein (including any 
> reliance thereon) is STRICTLY PROHIBITED. If you received this 
> transmission in error, please immediately contact the sender and destroy 
> the material in its entirety, whether in electronic or hard copy format. 
> Thank you. A1.
>
>
>
> 

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


Re: Can't open CF7 Administrator

2006-06-19 Thread Josh Nathanson
Rick, can you run:

Start -> All Programs -> Adobe -> CFMX7 -> Web Server Config Tool

And report back to the list what it returns.  On my box it points to the 
directory that contains the Apache httpd.conf file.

-- Josh


- Original Message - 
From: "Rick Faircloth" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Monday, June 19, 2006 3:13 PM
Subject: RE: Can't open CF7 Administrator


> Now that I've figure out what the webroot is, I put a "Current_Time.cfm"
> file
> in the folder.
>
> When run in the browser as "http://localhost/current_time.cfm";,
> I get "The current time is #TimeFormat(Now(), "h:mm tt")#" (without 
> quotes).
>
> The code in the file is #TimeFormat(Now(), "h:mm 
> tt")#
>
>
> So CF is not processing the document...
>


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


Re: Can't open CF7 Administrator

2006-06-19 Thread Josh Nathanson
Rick, one last thing to check before you give up:

Again in the httpd.conf file, look for below:


# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
#
# The index.html.var file (a type-map) is used to deliver content-
# negotiated documents.  The MultiViews Option can be used for the
# same purpose, but it is much slower.
#
DirectoryIndex index.html index.html.var index.cfm


You must have that "index.cfm" on the end there after DirectoryIndex.  I 
seem to recall that doing install/uninstall can remove that, and without 
that, Apache won't look for index.cfm if you go to /CFIDE/administrator/ 
(without the filename at the end of the path).

-- Josh





- Original Message - 
From: "Rick Faircloth" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Monday, June 19, 2006 2:02 PM
Subject: RE: Can't open CF7 Administrator


> Yep, yep, yep...
>
> Can't see anything wrong with the path and have restarted Apache...
>
> Rick
>
> -Original Message-
> From: Josh Nathanson [mailto:[EMAIL PROTECTED]
> Sent: Monday, June 19, 2006 4:39 PM
> To: CF-Talk
> Subject: Re: Can't open CF7 Administrator
>
> OK, and in the line
>
> LoadModule jrun_module 
> "C:/CFusionMX7/runtime/lib/wsconfig/1/mod_jrun20.so"
>
> The path is correct on your box, and the mod_jrun20.so module is in the
> correct place?
>
> Also, have you restarted Apache since your last CF install?
>
> -- Josh
>
>
>
>
>
>
>
>
>
> 

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


Re: Can't open CF7 Administrator

2006-06-19 Thread Josh Nathanson
OK, and in the line

LoadModule jrun_module "C:/CFusionMX7/runtime/lib/wsconfig/1/mod_jrun20.so"

The path is correct on your box, and the mod_jrun20.so module is in the 
correct place?

Also, have you restarted Apache since your last CF install?

-- Josh




- Original Message - 
From: "Rick Faircloth" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Monday, June 19, 2006 1:29 PM
Subject: RE: Can't open CF7 Administrator


> Yep...what you have below is *exactly* what I have in my httpd.conf 
> file...
>
>
> -Original Message-
> From: Josh Nathanson [mailto:[EMAIL PROTECTED]
> Sent: Monday, June 19, 2006 4:22 PM
> To: CF-Talk
> Subject: Re: Can't open CF7 Administrator
..houseoffusion.com/tiny.cfm/54 


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


Re: AJAX

2006-06-19 Thread Josh Nathanson



- Original Message - 
From: "Bryan Stevenson" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Monday, June 19, 2006 1:23 PM
Subject: Re: AJAX


> Being that CFAJAX is setup to have your CFC methods return strings.
>
> What we use is a cftry/cfcatch block (in the method you are calling) and 
> in the
> CFCATCH block we have wrapped CFSAVECONTENT around a CFDUMP of the CFCATCH
> struct and return the resulting variable.  This results in an HTML string 
> being
> returned containing a dump of the error details as reported by CFCATCH.
>
> Like so:
>
> 
>  
>
>  
>  
> 
>
> HTH
>
> Cheers
>
> Bryan Stevenson B.Comm.
> VP & Director of E-Commerce Development
> Electric Edge Systems Group Inc.
> phone: 250.480.0642
> fax: 250.480.1264
> cell: 250.920.8830
> e-mail: [EMAIL PROTECTED]
> web: www.electricedgesystems.com
> - Original Message - 
> From: "Adkins, Randy" <[EMAIL PROTECTED]>
> To: "CF-Talk" 
> Sent: Monday, June 19, 2006 1:15 PM
> Subject: AJAX
>
>
>> Is there a way to debug CFAJAX? I am calling the function and it seems
>> to be working (yes, I did get the examples to work), but my fields are
>> not being populated.
>> I tested the query to insure there were results and there are. It will
>> run the loading message and then nothing. I can not get it to populate
>> any fields. Just wondering if there is something I am missing?
>>
>>
>> MAIN FILE:
>> 
>> 
>> 
>> 
>> 
>>
>> 
>> function getMfgDetails(vSelectBox) {
>> alert("Run Script 1 - "+vSelectBox.value);
>>
>> DWREngine._execute(_cfscriptLocation, null, 'assetData',
>> vSelectBox.value, DisplayMfgData);
>> }
>> function DisplayMfgData(qData) {
>> DWRUtil.setValue("txt2Row1", qData[0].MNAME);
>> DWRUtil.setValue("txt3Row1", qData[0].MNUM);
>> DWRUtil.setValue("txt4Row1", qData[0].SNUM);
>> return;
>> }
>>
>> 
>>
>>
>> On this file I do have the OnChange event being triggered by calling:
>> getMfgDetails(this);
>>
>>
>>
>> FUNCTIONS.CFM
>> 
>> --
>> 
>> 
>>
>> 
>>
>> 
>> 
>>
>> 
>>  SELECT serial_num, manf, model_num FROM assets
>>  WHERE ID = > cfsqltype="cf_sql_integer">
>> 
>>
>> 
>>  // Create the query to return
>>  qReturn = QueryNew("mName,mNum,sNum");
>>  QueryAddRow(qReturn, 1);
>>  QuerySetCell(qReturn, "mName", qMfgData2.manf);
>>  QuerySetCell(qReturn, "mNum", qMfgData2.model_num);
>>  QuerySetCell(qReturn, "sNum", qMfgData2.serial_num);
>> 
>>
>> 
>> 
>>
>>
>>
>
> 

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


<    2   3   4   5   6   7   8   9   10   11   >