Blackstone Beta

2004-12-10 Thread Michael Dinowitz
For those not in the blackstone beta, I implore you to get in on it NOW! 

http://www.macromedia.com/support/programs/beta.html

~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186950
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: help with some form validation

2004-12-10 Thread Pascal Peters
Missing $

^\d{3}-\d{4}$

Pascal

 -Original Message-
 From: Umer Farooq [mailto:[EMAIL PROTECTED]
 Sent: 10 December 2004 05:55
 To: CF-Talk
 Subject: Re: help with some form validation
 
 ^([0-9]{3})-([0-9]{4})
 
 dave wrote:
  i need a field to be like 123-1234 only
  anyone got anything good off hand?
 
  tia
 
 
 
 

~|
Special thanks to the CF Community Suite Silver Sponsor - New Atlanta
http://www.newatlanta.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186951
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: odd.. cfoutput group and cfloop over query

2004-12-10 Thread Pascal Peters
This has always been like this (and must have been discussed a 100x on
this list). When you have nested loops over queries (it doesn't matter
if you are using cfoutput or cfloop), coldfusion looses the reference to
the first query when looping the second. This means that you can't drop
the prefix (which you shouldn't in the first place) and that
q1.currentRow will always return 1 (and q1.column will always return the
value from the first record. You have already found the solution for
that problem: set the value to a variable before the second loop.

If you have a lot of fields from the first query to access in the second
loop, just save the currentRow in a variable and use array notation for
the first query.

cfloop query=q1
  cfset i = q1.currentRow
  cfloop query=q2
cfif q2.c1 IS q1.c1[i]
  do something
/cfif
  /cfloop
/cfloop

Pascal

 -Original Message-
 From: Umer Farooq [mailto:[EMAIL PROTECTED]
 Sent: 10 December 2004 02:54
 To: CF-Talk
 Subject: odd.. cfoutput group and cfloop over query
 
 Hi,
 
 I'm getting this odd.. problem.. when doing..
 
 cfouput query=QUERYONE group=SOMECOLUMN
cfloop query=QUERYTWO
  cfif QUERYONE.XID eq QUERYTWO.YID
   SOMETHING
  /cfif
/cfloop
 /cfoutput
 
 in the loop QUERYONE.XID will keep the first row value.
 
 if I remove the prefix from XID.. it gives me an error saying its
 not defined. Which is odd by itself.
 
 I can get away from the error by setting a variable.. before the
 loop and then compare on it..
 
 Any thoughts on this..

~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186952
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: Blackstone Beta

2004-12-10 Thread Martin Parry
Done it ! Let's hope it lives up to the promise :S

Martin Parry
Macromedia Certified Developer
http://www.BeetrootStreet.co.uk

-Original Message-
From: Michael Dinowitz [mailto:[EMAIL PROTECTED] 
Sent: 10 December 2004 08:58
To: CF-Talk
Subject: Blackstone Beta

For those not in the blackstone beta, I implore you to get in on it NOW!


http://www.macromedia.com/support/programs/beta.html



~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186953
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: Strange DSN BLACKOUT problem w/ Access

2004-12-10 Thread Martin Parry
I don't know if this is relevant but I used to have a problem where the
Macromedia Java Certificate had expired and the applet wouldn't load..
It wouldn't display the certificate error and would do nothing.

Are you using the most recent version of CF (including updater) ?

Martin Parry
Macromedia Certified Developer
http://www.BeetrootStreet.co.uk


-Original Message-
From: Will Tomlinson [mailto:[EMAIL PROTECTED] 
Sent: 10 December 2004 01:24
To: CF-Talk
Subject: Strange DSN BLACKOUT problem w/ Access

In CF Administrator, when you create an Access DSN, then browse for the
file, the window has gone to black on me, and you can't browse for
anything. It's worked fine for over a year now. 

I have downloaded some newer Msoft data components and jet drivers in
recent days, but that wouldn't affect this would it? Anyone have any
ideas?

Thanks,
Will



~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186954
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: CFFM almost finished

2004-12-10 Thread Marco Antonio C. Santos
Thanks Rick for that very nice CF application. Integration with FCK
will be very good.

Best regards

Marco


On Thu, 9 Dec 2004 16:59:48 -0700, Paul [EMAIL PROTECTED] wrote:
 So Rick were you going to elaborate on integrating your CFFM with FCKEditor?
 I think several of us would be interested in how to do that...
 
 
 
 -Original Message-
 From: Rick Root [mailto:[EMAIL PROTECTED]
 Sent: Thursday, December 09, 2004 4:51 PM
 To: CF-Talk
 Subject: Re: CFFM almost finished
 
 Marco Antonio C. Santos wrote:
 
  your page(http://www.webworksllc.com/cffm) give us 500 Error. It's
  possible to download CFFM once more?
 
 Bluedragon didn't come up automatically when I had my server rebooted
 this afternoon, and I didn't notice right away.  It's all good now.
 
  - Rick
 
 

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186956
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: cf blog apps?

2004-12-10 Thread Scott Stroz
Jake,

Nice... but the editor does not work in FireFox in the demo.


On Thu, 09 Dec 2004 16:44:56 -0400, Jake. [EMAIL PROTECTED] wrote:
 What coldfusion blog software is everyone using?  I'm feeling the need to
 jump on the bandwagon finally.
 
 I'll kick in a plug for my robust blogging app, BlogFusion 
 (www.countersinkdg.com). I also have a photoblog app, but am currently 
 working to integrate it into the blogging app. (I'm also working on a 
 significant upgrade of the blog code, due out end of year).
 
 Anyway, let me know if you're intersted or have questions.
 
 Jake
 
 

~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186957
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: Strange DSN BLACKOUT problem w/ Access

2004-12-10 Thread Will Tomlinson
Thanks guys! 

I'm not using the most recent CF and updater. Everything has been working great 
and I don't want to break it. I WILL make the move to Blackstone though!

I downloaded the latest Java software thinking thatmight be it. Still doesn't 
work. 

You're correct about typing the path, did that and it added the DSN. 

One other weird thing is, I added a DSN through Windows DB admin, and it was 
THERE, but CF ADMIN didn't recognize it. I restarted the server and it started 
working. There's a bug I've noticed before like this where CF loses   it's 
connections to my datasources, they won't verify, but if I restart the server, 
voila they work! 

Anyway, thanks for helping! It all seems to be working fine now. (Except the CF 
ADMIN BLACK WINDOW OF DEATH!)

Will


~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186958
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: ColdFusion security framework

2004-12-10 Thread The Wolf
On 12/10/04 3:26 AM, Jim Davis wrote:
 If you're interested tweaking I've got one that I've not yet made public
 (but it is in use on Public sites).
 
 It's CFC-based and (I think) has quite a few interesting features - but it
 might need some work (especially in the admin area which I've yet to do).
 
 Let me know if you want to see it.

Hi,
that sounds very interesting.

It would be great if you can mail me it or post it to the list.

Thanks a lot.

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186959
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: ColdFusion security framework

2004-12-10 Thread The Wolf
On 12/9/04 9:34 PM, dave wrote:
 www.communitymx.com has a couple, 1 cfc based and 1 not

I cannot seem to find them, do you have the direct links?

Thanks.

~|
Special thanks to the CF Community Suite Silver Sponsor - New Atlanta
http://www.newatlanta.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186960
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: ColdFusion security framework

2004-12-10 Thread The Wolf
On 12/10/04 12:06 AM, Matt Robertson wrote:
 And I sell one for US$29.95.  Has roles, groups and tiers.  I noted
 your comment about the easycfm code only having roles.  The way I
 implemented them in AMPro, roles are code-level, item-by-item elements
 if you want them to be.  There are faq's that explain what each type
 is meant to accomplish.
 
 http://mysecretbase.com/ampro_home.cfm

I am going to give a try to the Lite version before considering 
purcashing the Pro version.

Or is there a demo of the Pro version?

What are the main differences between the Lite and Pro version?

Thanks.

~|
Special thanks to the CF Community Suite Silver Sponsor - CFDynamics
http://www.cfdynamics.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186961
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


CFEclipse / SpikeFTP

2004-12-10 Thread Katz, Dov B (IT)
The FTP module is great, however, all my files/folders come in
Read-only with a green circle. I'm connected to a WS_FTP server on a
windows 2k machine, and I use the ftp acct all the time with full write
priveleges.  Any advice?
 
Thanks,
dbk 

 
NOTICE: If received in error, please destroy and notify sender.  Sender does 
not waive confidentiality or privilege, and use is prohibited. 
 


~|
Special thanks to the CF Community Suite Silver Sponsor - New Atlanta
http://www.newatlanta.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186962
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: CFFM almost finished

2004-12-10 Thread Rick Root
Paul wrote:
 So Rick were you going to elaborate on integrating your CFFM with FCKEditor?
 I think several of us would be interested in how to do that...

I did share it with people who emailed me asking for the code, like I 
said in my first post :)

You can download my modified version of CFFM here:

 http://www.webworksllc.com/cffm/cffm4fck-0.96b.zip

It contains:

editor_fm/
editor_fm/cffm.cfm
editor_fm/cffm_image.cfm
editor_fm/cffmConfig.cfm
editor_fm/cffmUDF.cfm
editor_fm/above.cfm
editor_fm/below.cfm
editor_fm/cffmIcons/images

Put this into the FCKeditor 2.0 installion directory.

In the fckconfig.js file, change the ImageBrowserURL and LinkBrowserURL to:

FCKConfig.ImageBrowserURL =
 FCKConfig.BasePath + editor_fm/cffm_image.cfm;
FCKConfig.LinkBrowserURL =
 FCKConfig.BasePath + editor_fm/cffm.cfm;

Note that the other configuration options in this file are NOT applied 
to my file manager.

If you don't have an application.cfm that is already protecting your 
editor directory (like I do), you'll need to add some code to deny 
access to people who aren't logged into your system.

  - Rick


~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186964
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: Blackstone Beta

2004-12-10 Thread Mark Drew
that is nice to children and animals and the logo looks nice on t-shirts

MD


On Fri, 10 Dec 2004 08:13:22 -0500, Anders Green [EMAIL PROTECTED] wrote:
 At 04:18 AM 12/10/2004, Martin Parry wrote:
 Done it ! Let's hope it lives up to the promise :S
 
 What was that promise, exactly?
 
 I haven't been watching any media releases or paying
 attention... just writing code.
 
 Anders
 
 +===+
 |Anders GreenEmail: [EMAIL PROTECTED]|
 | Home: 919.303.0218|
 |   Off Road Rally Racing Team: http://LinaRacing.com/  |
 |Do you like Evite? This is better: http://RSVPtracker.com/ |
 +===+
 
 
 

~|
Special thanks to the CF Community Suite Silver Sponsor - CFDynamics
http://www.cfdynamics.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186965
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


Moving records up or down.

2004-12-10 Thread Stuart Kidd
Hi guys,

On my website i have 23 articles on the front page, i'd like to be able to 
position them.  Say the article which pulls out the database in position 18, 
i'd like to move up a notch to 17, what is the cleanest way to do this.

I have all my articles on this front page (http://www.020.com/).

I have a CMS i created.  I have thought of ideas of having a field called 
Position or something but can't find an easy solution.

Thanks,

Saturday 

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186966
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: Moving records up or down.

2004-12-10 Thread Mark Drew
You are on the right track, create something like orderid field (int
4) and then make a select box using one of the scripts here:
http://www.mattkruse.com/javascript/selectbox/
you can select the order in the box

then, on submit, you select all the items in the selectbox and submit
them (the values should be the id) and the field that you get back is
(or should be!) an ordered list of the items that you can loop through
and update the orderid in the database

hope that helps!

regards 

Mark Drew



On Fri, 10 Dec 2004 09:06:21 -0500, Stuart Kidd [EMAIL PROTECTED] wrote:
 Hi guys,
 
 On my website i have 23 articles on the front page, i'd like to be able to 
 position them.  Say the article which pulls out the database in position 18, 
 i'd like to move up a notch to 17, what is the cleanest way to do this.
 
 I have all my articles on this front page (http://www.020.com/).
 
 I have a CMS i created.  I have thought of ideas of having a field called 
 Position or something but can't find an easy solution.
 
 Thanks,
 
 Saturday
 
 

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186967
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: Moving records up or down.

2004-12-10 Thread Rick Root
Stuart Kidd wrote:
 
 On my website i have 23 articles on the front page, i'd like to be able to 
 position them.  Say the article which pulls out the database in position 18, 
 i'd like to move up a notch to 17, what is the cleanest way to do this.
 
 I have all my articles on this front page (http://www.020.com/).
 
 I have a CMS i created.  I have thought of ideas of having a field called 
 Position or something but can't find an easy solution.

Stuart, in my community publishing software, each page is made of 
multiple postings, which appear vertically on the page.

In order to accomplish the ability to control the order in which they 
appear, I added a POSTING_ORDER numeric field... this allows me to move 
things up and down on the page, and also allows me to insert new 
postings at the top, bottom, or in between existing postings.

The tricky part was figuring out the math!

In pseudo code

get posting order of current posting
get posting order of the bottom post
if action = up and posting order  1
   moveto = posting order - 1
   swap two postings by running the queries:
   query: set posting_order += 1 where posting_order = moveto
   query: set posting_order = moveto where posting_order=original
posting_order
if action = down and posting order  bottom
   moveto = posting order + 1
   swap two postings by running the queries:
   query: set posting_order -= 1 where posting_order = moveto
   query: set posting_order = moveto where posting_order=original
posting_order


It gets a little more complicated if you also want move to top and 
move to bottom

  - Rick

~|
Special thanks to the CF Community Suite Silver Sponsor - CFDynamics
http://www.cfdynamics.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186968
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: fck editor 2.0 RC

2004-12-10 Thread Deanna Schneider
Okay. Thanks!
-d

- Original Message - 
From: Matt Robertson [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Thursday, December 09, 2004 7:14 PM
Subject: Re: fck editor 2.0 RC


 As for using the simpler toolbar options - look at fckconfig.js or
 something.

 Thats it all right.  its that .js file that controls the look of the
 tool.  Just add or remove toolbar items to one of the two existing
 ones, or better yet build your own new toolbar type and specify it in
 your editor call.

 -- 
 --Matt Robertson--
 President, Janitor
 MSB Designs, Inc.
 mysecretbase.com

 

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186969
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: Moving records up or down.

2004-12-10 Thread Mark Drew
As I mentioned in my previous post. the solution is to reorder all the
items in a set at once. By using the select box you dont need that
kind of math. :)
Also (I think) the javascript toolbox that I posted allows you to drag
items up (I think!) and its a bit more intuitive.

As part of the display I would also put the original order and the
ordering box side buy side so that the user can see what the change
would be

Old Order   New Order
-
Item 1  |Item 1 |
Item 2  |Item 2 |  ^
Item 3  |Item 3 |  v
Item 4  |Item 4 |
-

hope that helps!

Regards

Mark Drew


On Fri, 10 Dec 2004 09:21:00 -0500, Rick Root [EMAIL PROTECTED] wrote:
 Stuart Kidd wrote:
 
  On my website i have 23 articles on the front page, i'd like to be able to 
  position them.  Say the article which pulls out the database in position 
  18, i'd like to move up a notch to 17, what is the cleanest way to do this.
 
  I have all my articles on this front page (http://www.020.com/).
 
  I have a CMS i created.  I have thought of ideas of having a field called 
  Position or something but can't find an easy solution.
 
 Stuart, in my community publishing software, each page is made of
 multiple postings, which appear vertically on the page.
 
 In order to accomplish the ability to control the order in which they
 appear, I added a POSTING_ORDER numeric field... this allows me to move
 things up and down on the page, and also allows me to insert new
 postings at the top, bottom, or in between existing postings.
 
 The tricky part was figuring out the math!
 
 In pseudo code
 
 get posting order of current posting
 get posting order of the bottom post
 if action = up and posting order  1
moveto = posting order - 1
swap two postings by running the queries:
query: set posting_order += 1 where posting_order = moveto
query: set posting_order = moveto where posting_order=original
 posting_order
 if action = down and posting order  bottom
moveto = posting order + 1
swap two postings by running the queries:
query: set posting_order -= 1 where posting_order = moveto
query: set posting_order = moveto where posting_order=original
 posting_order
 
 It gets a little more complicated if you also want move to top and
 move to bottom
 
   - Rick
 
 

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186970
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: Moving records up or down.

2004-12-10 Thread Aaron Rouse
This is the process I have been using for years, not that exact
JavaScript but still the same idea.  I tend to have a SortOrder column
in my tables with a default value of 0. As I add new records I put in
the max sortorder + 1 and then my admin tool via a select box allows
me to reset the ordering if I ever desired to.


On Fri, 10 Dec 2004 15:39:31 +0100, Mark Drew [EMAIL PROTECTED] wrote:
 As I mentioned in my previous post. the solution is to reorder all the
 items in a set at once. By using the select box you dont need that
 kind of math. :)
 Also (I think) the javascript toolbox that I posted allows you to drag
 items up (I think!) and its a bit more intuitive.
 
 As part of the display I would also put the original order and the
 ordering box side buy side so that the user can see what the change
 would be
 
 Old Order   New Order
-
 Item 1  |Item 1 |
 Item 2  |Item 2 |  ^
 Item 3  |Item 3 |  v
 Item 4  |Item 4 |
-
 
 hope that helps!
 
 Regards
 
 
 
 Mark Drew
 
 On Fri, 10 Dec 2004 09:21:00 -0500, Rick Root [EMAIL PROTECTED] wrote:
  Stuart Kidd wrote:
  
   On my website i have 23 articles on the front page, i'd like to be able 
   to position them.  Say the article which pulls out the database in 
   position 18, i'd like to move up a notch to 17, what is the cleanest way 
   to do this.
  
   I have all my articles on this front page (http://www.020.com/).
  
   I have a CMS i created.  I have thought of ideas of having a field called 
   Position or something but can't find an easy solution.
 
  Stuart, in my community publishing software, each page is made of
  multiple postings, which appear vertically on the page.
 
  In order to accomplish the ability to control the order in which they
  appear, I added a POSTING_ORDER numeric field... this allows me to move
  things up and down on the page, and also allows me to insert new
  postings at the top, bottom, or in between existing postings.
 
  The tricky part was figuring out the math!
 
  In pseudo code
 
  get posting order of current posting
  get posting order of the bottom post
  if action = up and posting order  1
 moveto = posting order - 1
 swap two postings by running the queries:
 query: set posting_order += 1 where posting_order = moveto
 query: set posting_order = moveto where posting_order=original
  posting_order
  if action = down and posting order  bottom
 moveto = posting order + 1
 swap two postings by running the queries:
 query: set posting_order -= 1 where posting_order = moveto
 query: set posting_order = moveto where posting_order=original
  posting_order
 
  It gets a little more complicated if you also want move to top and
  move to bottom
 
- Rick
 
 
 
 

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186972
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: Blackstone Beta

2004-12-10 Thread Michael Dinowitz
I think the promise is that it's fast, stable and has new, cool features. 
Fusion Authority is running 100% on Blackstone and House of Fusion has back end 
components on Blackstone as well. I'm hoping to be 100% Blackstone for 
everything next week.
It's fast, it's stable, and I've got some code tricks that people will just 
love based on my work with Blackstone. 

At 04:18 AM 12/10/2004, Martin Parry wrote:
Done it ! Let's hope it lives up to the promise :S

What was that promise, exactly?

I haven't been watching any media releases or paying
attention... just writing code.

Anders



+===+
|Anders GreenEmail: [EMAIL PROTECTED]|
| Home: 919.303.0218|
|   Off Road Rally Racing Team: http://LinaRacing.com/  |
|Do you like Evite? This is better: http://RSVPtracker.com/ |
+===+

~|
Special thanks to the CF Community Suite Silver Sponsor - CFDynamics
http://www.cfdynamics.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186973
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: Blackstone Beta

2004-12-10 Thread Aaron Rouse
Wasn't some of the promise for MX that it was fast and stable?  If so
does that mean they did not live up to the promise and we get our
money back?  ;)  After all if already stable, not like you can make it
more stable :)


On Fri, 10 Dec 2004 09:57:42 -0400, Michael Dinowitz
[EMAIL PROTECTED] wrote:
 I think the promise is that it's fast, stable and has new, cool features. 
 Fusion Authority is running 100% on Blackstone and House of Fusion has back 
 end components on Blackstone as well. I'm hoping to be 100% Blackstone for 
 everything next week.
 It's fast, it's stable, and I've got some code tricks that people will just 
 love based on my work with Blackstone.
 
 
 
 At 04:18 AM 12/10/2004, Martin Parry wrote:
 Done it ! Let's hope it lives up to the promise :S
 
 What was that promise, exactly?
 
 I haven't been watching any media releases or paying
 attention... just writing code.
 
 Anders
 
 
 
 +===+
 |Anders GreenEmail: [EMAIL PROTECTED]|
 | Home: 919.303.0218|
 |   Off Road Rally Racing Team: http://LinaRacing.com/  |
 |Do you like Evite? This is better: http://RSVPtracker.com/ |
 +===+
 
 

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186974
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: Blackstone Beta

2004-12-10 Thread Jerry Johnson
Michael,

I went to the link you sent, and filled out the questionnaire for the Cold 
Fusion option, but did not see anything about Blackstone except a description 
page on the CFMX 6.1 fact sheet.

Did I miss something?

Jerry

Jerry Johnson
Web Developer
Dolan Media Company

 [EMAIL PROTECTED] 12/10/04 08:57AM 
I think the promise is that it's fast, stable and has new, cool features. 
Fusion Authority is running 100% on Blackstone and House of Fusion has back end 
components on Blackstone as well. I'm hoping to be 100% Blackstone for 
everything next week.
It's fast, it's stable, and I've got some code tricks that people will just 
love based on my work with Blackstone. 



~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186975
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: Moving records up or down.

2004-12-10 Thread Rick Root
Mark Drew wrote:
 As I mentioned in my previous post. the solution is to reorder all the
 items in a set at once. By using the select box you dont need that
 kind of math. :)
 Also (I think) the javascript toolbox that I posted allows you to drag
 items up (I think!) and its a bit more intuitive.

To each his own, eh?  I've seen it done both ways... phpbb, one of the 
worlds most popular message board system, uses my method for 
re-ordering forums.

  - Rick


~|
Special thanks to the CF Community Suite Silver Sponsor - New Atlanta
http://www.newatlanta.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186976
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: fck editor 2.0 RC

2004-12-10 Thread Rick Root
Irvin Gomez wrote:
Use TinyMCE. It's much simpler. 

http://tinymce.moxiecode.com/
 
 Looks nice, but regular (non-technical) users would have problems inserting 
 images. 

That was always my beef with a lot of the editors that don't include 
such functionality it's hard to ask users to type in the URL of an 
image on their server.  htmlArea was the same way - I ended up adding a 
second image button to the toolbar that launched my own image browser. 
That's why I switched to FCKeditor... it had the browse and upload built 
into the main image dialog.

tinymce might be nice for a message board utility or something where you 
only want users to enter basic html, but as a full-featured editor, it 
is definately lacking in the ease of use department if you ask me.

  - Rick



~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186977
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: Picky delete statement?

2004-12-10 Thread Ryan Duckworth
You can remove a column, not just set it to NULL.

Use the ALTER TABLE statement. Syntax:

ALTER TABLE [table]
DROP COLUMN [columnlist]

INSERT, DELETE, UPDATE are all built to change specific records.  ALTER
TABLE changes the structure of your table.

Good luck.

Ryan Duckworth 
Macromedia ColdFusion Certified Professional 
Uhlig Communications 
10983 Granada Lane 
Overland Park, KS 66211 
(913) 754-4272


-Original Message-
From: Mark Drew [mailto:[EMAIL PROTECTED] 
Sent: Thursday, December 09, 2004 6:30 PM
To: CF-Talk
Subject: Re: Picky delete statement?

Thats right. if you want to delete the columns of a record you have to
update the record and set the columns to null or to whatever the
default defined by the database

e.g.
Update mytable
Set col1 = null
, col2 = null 
Where id = insert id

Hope that helps

Regards
Mark Drew



On Thu, 9 Dec 2004 18:44:53 -0500, Phillip Perry
[EMAIL PROTECTED] wrote:
 Hi,
 
 I've read my sql book but I cant find what i'm looking for. According
to the
 book (as far as my understanding is) you cant specify which columns to
 delete, you can only delete the whole record. Is this true?
 
 Phil
 
 



~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

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


Re: OT: base href and in-page anchor links

2004-12-10 Thread Thomas Chiverton
On Friday 10 Dec 2004 15:04 pm, Hugo Ahlenius wrote:
 How do I then create a link to a local anchor, when I am not on the root
 page? If I am not on the root page of the site, and there is a link a

Give the path to the file to the left of the #.

-- 
Tom Chiverton 
Advanced ColdFusion Programmer
Tel: +44 (0)1749 834900
email: [EMAIL PROTECTED]
BlueFinger Limited
Underwood Business Park
Wookey Hole Road, WELLS. BA5 1AF
Tel: +44 (0)1749 834900
Fax: +44 (0)1749 834XXX
web: www.bluefinger.com
Company Reg No: 4209395 Registered Office: 2 Temple Back East, Temple Quay, 
BRISTOL. BS1 6EG
*** This E-mail contains confidential information for the addressee only. If 
you are not the intended recipient,
please notify us immediately. You should not use, disclose, distribute or copy 
this communication if received
in error. No binding contract will result from this e-mail until such time as 
a written document is signed on
behalf of the company. BlueFinger Limited cannot accept responsibility for the 
completeness or accuracy of
this message as it has been transmitted over public networks.***

~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186985
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: CFEclipse / SpikeFTP

2004-12-10 Thread Rob
Hi Dov,
You might want to direct cfeclipse specific questions to the cfeclipse
mailing list. http://www.cfeclipse.org on the left is mailing list.

I remember spike saying something about if the directories were not
using the unix format the ftp view acted odd, but he'll have to answer
for himself (plus that view is in the the unstable build too :-D)

You can file bugs on that site too, and we often take bugs off the cfe
mailing list.

Cheers, 
Rob

On Fri, 10 Dec 2004 07:45:23 -0500, Katz, Dov B (IT)
[EMAIL PROTECTED] wrote:
 The FTP module is great, however, all my files/folders come in
 Read-only with a green circle. I'm connected to a WS_FTP server on a
 windows 2k machine, and I use the ftp acct all the time with full write
 priveleges.  Any advice?
 
 Thanks,
 dbk
 

-- 
~The cfml plug-in for eclipse~
http://cfeclipse.tigris.org
~open source xslt IDE~
http://treebeard.sourceforge.net
~open source XML database~
http://ashpool.sourceforge.net

~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186988
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: passing many variables between pages

2004-12-10 Thread Keith Gaughan
Tim Laureska wrote:

 I have a typical form where there are 10 - 15 form variables that must
 be passed through multiple templates...
 
 I have always used the hidden input method 
 input type=hidden name=whatever value=#whatever#
 
 Is there a way to take all those hidden input lines and put them into
 one variable and just pass that one variable from template to template
 rather than having 15 - 20 hidden input lines in each template?
 
 Or is there some other good technique for this?

You might want to try my CF_WriteHiddenVariables tag:

 http://free.cftagstore.com/?page=viewtagtagId=43

You just specify the names of the variables you want to pass from page 
to page, and it generates all the hidden variable tags needed, properly
escaping any dodgy characters.

K.

-- 
Keith Gaughan, Developer
Digital Crew Ltd., Pembroke House, Pembroke Street, Cork, Ireland
http://digital-crew.com/

~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186989
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: Help w/using CFLDAP tag?

2004-12-10 Thread Dawson, Michael
I'm not sure if this is applicable since this related to Contribute,
but...

http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_19576

This appears to be a user-related issue.  If this is a domain, use the
format: USERNAME=[EMAIL PROTECTED], or whatever the domain name is.

Also, usually, your START attribute contains a domain context such as:

START=cn=users, dc=htcinc, dc=net

Mike

-Original Message-
From: Bosky, Dave [mailto:[EMAIL PROTECTED] 
Sent: Friday, December 10, 2004 9:22 AM
To: CF-Talk
Subject: Help w/using CFLDAP tag?

Does anyone have an idea of what may be causing this error each time I
execute the CFLDAP tag?

This is my first experience using the CFLDAP tag. 

Running Active Directory/CFMX 6.1

--- 

LDAP: error code 1 - 20D6: SvcErr: DSID-031006C5, problem 5012
(DIR_ERROR), data 0

 

Here's the tag:

cfldap action=query

name=results

attributes=cn

start=cn=users

server=ldapserver.ldap.com

username=username

password=password

 

Thanks.

Dave

 



HTC Disclaimer:  The information contained in this message may be
privileged and confidential and protected from disclosure. If the reader
of this message is not the intended recipient, or an employee or agent
responsible for delivering this message to the intended recipient, you
are hereby notified that any dissemination, distribution or copying of
this communication is strictly prohibited.  If you have received this
communication in error, please notify us immediately by replying to the
message and deleting it from your computer.  Thank you.




~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186992
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: base href and in-page anchor links

2004-12-10 Thread Hugo Ahlenius
Fixed it, with some CF code -- create a UDF to try to get the relative
path from the cgi vars and display that. (This is an old app, all newer
stuff is mach-ii -- and then you don't have this prob!)



--
Hugo Ahlenius

-
Hugo Ahlenius  E-Mail: [EMAIL PROTECTED]
Project OfficerPhone:+46 8 230460
UNEP GRID-Arendal  Fax:  +46 8 230441
Stockholm Office   Mobile: +46 733 467111
   WWW:   http://www.grida.no
- 



|-Original Message-
|From: Hugo Ahlenius
|Sent: Friday, December 10, 2004 16:04
|To: CF-Talk
|Subject: OT: base href and in-page anchor links
|
|Hi,
|
|I have a little HTML dilemma. I am working on a site which
|uses some links to leads to anchors on the same page. I have
|been using base href.../ tags to set the base, so that all
|links are relative.
|
|How do I then create a link to a local anchor, when I am not
|on the root page? If I am not on the root page of the site,
|and there is a link a href=#anchorlink/ (and the
|anchor/id is of course defined), this is then interpreted by
|the browser (firefox, IE6) as a link to http://[base]/#anchor.
|Note that this is not a problem with presenting pound-signs
|when in cfoutput tags -- it is strictly a client/html problem.
|
|You can see it in action here:
|http://www.povertymap.net/publications/
|(the links on the top, On this page)
|
|
|
|--
|Hugo Ahlenius
|
|-
|Hugo Ahlenius  E-Mail: [EMAIL PROTECTED]
|Project OfficerPhone:+46 8 230460
|UNEP GRID-Arendal  Fax:  +46 8 230441
|Stockholm Office   Mobile: +46 733 467111
|   WWW:   http://www.grida.no
|- 
|
|
|###
|
|This message has been scanned by F-Secure Anti-Virus for
|Microsoft Exchange.
|For more information, connect to http://www.F-Secure.com/
|
|
|

~|
Special thanks to the CF Community Suite Silver Sponsor - CFDynamics
http://www.cfdynamics.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186993
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: passing many variables between pages

2004-12-10 Thread Mark Drew
Serialise it into wddx, encode it to base 64, put it in hidden var

cfwddx action=CFML2WDDX input=#FORM# output=theform
cfset hiddenValue = ToBase64(theform)
input type=hidden name=passthroughvals value=#hiddenValue#



On Fri, 10 Dec 2004 10:29:05 -0500, Tim Laureska [EMAIL PROTECTED] wrote:
 I have a typical form where there are 10 - 15 form variables that must
 be passed through multiple templates...
 
 I have always used the hidden input method
 input type=hidden name=whatever value=#whatever#
 
 Is there a way to take all those hidden input lines and put them into
 one variable and just pass that one variable from template to template
 rather than having 15 - 20 hidden input lines in each template?
 
 Or is there some other good technique for this?
 
 TIA
 Tim
 
 

~|
Special thanks to the CF Community Suite Silver Sponsor - CFDynamics
http://www.cfdynamics.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186994
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


cfinclude not working in firefox

2004-12-10 Thread Tim Laureska
Has anyone run upon this?

Tim 


~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186995
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: cfinclude not working in firefox

2004-12-10 Thread John Beynon
definitely not - it's performed at the server nothing to do with the client...

jb.


On Fri, 10 Dec 2004 10:54:01 -0500, Tim Laureska [EMAIL PROTECTED] wrote:
 Has anyone run upon this?
 
 Tim
 
 

~|
Special thanks to the CF Community Suite Silver Sponsor - New Atlanta
http://www.newatlanta.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186996
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: cfinclude not working in firefox

2004-12-10 Thread Rob
I don't think thats possible. cfinclude is executed on the server and
has nothing to do with the browser (unless you are cfif on
cgi.user_agent).

What exactly is happening?


On Fri, 10 Dec 2004 10:54:01 -0500, Tim Laureska [EMAIL PROTECTED] wrote:
 Has anyone run upon this?
 
 Tim
 
 

~|
Special thanks to the CF Community Suite Silver Sponsor - New Atlanta
http://www.newatlanta.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186997
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: cfinclude not working in firefox

2004-12-10 Thread Troy Murray
Tim,

Not sure how that's possible since the CFINCLUDE action takes place on
the server BEFORE the browser gets the HTML page.  Must be something
else on the page.  Are you using SESSION or CLIENT variables on the
page?

-t



On Fri, 10 Dec 2004 10:54:01 -0500, Tim Laureska [EMAIL PROTECTED] wrote:
 Has anyone run upon this?
 
 Tim
 
 

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186998
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: cfinclude not working in firefox

2004-12-10 Thread Tim Laureska
When I use my local browsers to test view a page (ie. haven't put the
files up on the host web server - just viewing on local computer), the
page that has the cfinclude reference shows fine in IE, but the
cfincluded piece is missing when I view it in firefox

-Original Message-
From: John Beynon [mailto:[EMAIL PROTECTED] 
Sent: Friday, December 10, 2004 10:50 AM
To: CF-Talk
Subject: Re: cfinclude not working in firefox

definitely not - it's performed at the server nothing to do with the
client...

jb.


On Fri, 10 Dec 2004 10:54:01 -0500, Tim Laureska [EMAIL PROTECTED]
wrote:
 Has anyone run upon this?
 
 Tim
 
 



~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186999
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: cfinclude not working in firefox

2004-12-10 Thread Joe Rinehart
Tim,

It's not possible for cfinclude to work in one browser and not in
another.  ColdFusion is server-side, so cfinclude happens long before
the browser comes into play.

What're the specifics of the situation?  We may be able to help narrow
down what's going on.

-joe


On Fri, 10 Dec 2004 10:54:01 -0500, Tim Laureska [EMAIL PROTECTED] wrote:
 Has anyone run upon this?
 
 Tim
 
 

~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187000
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: cfinclude not working in firefox

2004-12-10 Thread Pascal Peters
cfinclude is server side and has nothing to do with the browser you use!

Pascal

 -Original Message-
 From: Tim Laureska [mailto:[EMAIL PROTECTED]
 Sent: 10 December 2004 16:54
 To: CF-Talk
 Subject: cfinclude not working in firefox
 
 Has anyone run upon this?
 
 Tim
 
 
 

~|
Special thanks to the CF Community Suite Silver Sponsor - CFDynamics
http://www.cfdynamics.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187001
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: cfinclude not working in firefox

2004-12-10 Thread Rob
Are you saying you are opening the file (the .cfm page) directly in
browser without running it through a coldfusion server?


On Fri, 10 Dec 2004 11:02:05 -0500, Tim Laureska [EMAIL PROTECTED] wrote:
 When I use my local browsers to test view a page (ie. haven't put the
 files up on the host web server - just viewing on local computer), the
 page that has the cfinclude reference shows fine in IE, but the
 cfincluded piece is missing when I view it in firefox
 
 
 
 -Original Message-
 From: John Beynon [mailto:[EMAIL PROTECTED]
 Sent: Friday, December 10, 2004 10:50 AM
 To: CF-Talk
 Subject: Re: cfinclude not working in firefox
 
 definitely not - it's performed at the server nothing to do with the
 client...
 
 jb.
 
 On Fri, 10 Dec 2004 10:54:01 -0500, Tim Laureska [EMAIL PROTECTED]
 wrote:
  Has anyone run upon this?
 
  Tim
 
 
 
 

~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187002
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: cfinclude not working in firefox

2004-12-10 Thread Anders Green
At 11:02 AM 12/10/2004, Tim Laureska wrote:
When I use my local browsers to test view a page (ie. haven't put the
files up on the host web server - just viewing on local computer)

Ahhh.

Ok, Tim, this will never work. Neither will
any other coldfusion you test this way. It
must be processed by the server.

Anders



+===+
|Anders GreenEmail: [EMAIL PROTECTED]|
| Home: 919.303.0218|
|   Off Road Rally Racing Team: http://LinaRacing.com/  |
|Do you like Evite? This is better: http://RSVPtracker.com/ |
+===+ 


~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187003
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: cfinclude not working in firefox

2004-12-10 Thread Murat Demirci
Did you look the page source? There may be a rendering issue with your HTML
output.

Murat. 

 -Original Message-
 From: Tim Laureska [mailto:[EMAIL PROTECTED] 
 Sent: Friday, December 10, 2004 6:02 PM
 To: CF-Talk
 Subject: RE: cfinclude not working in firefox
 
 When I use my local browsers to test view a page (ie. haven't put the
 files up on the host web server - just viewing on local computer), the
 page that has the cfinclude reference shows fine in IE, but the
 cfincluded piece is missing when I view it in firefox
 
 -Original Message-
 From: John Beynon [mailto:[EMAIL PROTECTED] 
 Sent: Friday, December 10, 2004 10:50 AM
 To: CF-Talk
 Subject: Re: cfinclude not working in firefox
 
 definitely not - it's performed at the server nothing to do with the
 client...
 
 jb.
 
 
 On Fri, 10 Dec 2004 10:54:01 -0500, Tim Laureska 
 [EMAIL PROTECTED]
 wrote:
  Has anyone run upon this?
  
  Tim
  
  
 
 
 
 

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187004
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: cfinclude not working in firefox

2004-12-10 Thread Tim Laureska
Darn Rob ... you hit on it right there... forgot to add it to the
browser list in CF studio... a big 'duh' for me
thanks

-Original Message-
From: Rob [mailto:[EMAIL PROTECTED] 
Sent: Friday, December 10, 2004 10:59 AM
To: CF-Talk
Subject: Re: cfinclude not working in firefox

Are you saying you are opening the file (the .cfm page) directly in
browser without running it through a coldfusion server?


On Fri, 10 Dec 2004 11:02:05 -0500, Tim Laureska [EMAIL PROTECTED]
wrote:
 When I use my local browsers to test view a page (ie. haven't put the
 files up on the host web server - just viewing on local computer), the
 page that has the cfinclude reference shows fine in IE, but the
 cfincluded piece is missing when I view it in firefox
 
 
 
 -Original Message-
 From: John Beynon [mailto:[EMAIL PROTECTED]
 Sent: Friday, December 10, 2004 10:50 AM
 To: CF-Talk
 Subject: Re: cfinclude not working in firefox
 
 definitely not - it's performed at the server nothing to do with the
 client...
 
 jb.
 
 On Fri, 10 Dec 2004 10:54:01 -0500, Tim Laureska
[EMAIL PROTECTED]
 wrote:
  Has anyone run upon this?
 
  Tim
 
 
 
 



~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187007
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: cfinclude not working in firefox

2004-12-10 Thread Bryan Stevenson
Ummmdon't jump the gun just yet folks...he hasn't said he's opening 
them in the browserjust testing them in the local browserI have 
CF and IIS on my local machine and test files all the time ;-)

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: Anders Green [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Friday, December 10, 2004 8:05 AM
Subject: RE: cfinclude not working in firefox


 At 11:02 AM 12/10/2004, Tim Laureska wrote:
When I use my local browsers to test view a page (ie. haven't put the
files up on the host web server - just viewing on local computer)

 Ahhh.

 Ok, Tim, this will never work. Neither will
 any other coldfusion you test this way. It
 must be processed by the server.

 Anders



 +===+
 |Anders GreenEmail: [EMAIL PROTECTED]|
 | Home: 919.303.0218|
 |   Off Road Rally Racing Team: http://LinaRacing.com/  |
 |Do you like Evite? This is better: http://RSVPtracker.com/ |
 +===+


 

~|
Special thanks to the CF Community Suite Silver Sponsor - New Atlanta
http://www.newatlanta.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187008
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: Blackstone Beta

2004-12-10 Thread Michael Dinowitz
Probably not. The survey is from a third party and might not be up to date.
If you get an email today about the 'beta' then all's good.
 
 Michael,
 
 I went to the link you sent, and filled out the questionnaire for the Cold
 Fusion option, but did not see anything about Blackstone except a
 description page on the CFMX 6.1 fact sheet.
 
 Did I miss something?
 
 Jerry
 
 Jerry Johnson
 Web Developer
 Dolan Media Company
 
  [EMAIL PROTECTED] 12/10/04 08:57AM 
 I think the promise is that it's fast, stable and has new, cool features.
 Fusion Authority is running 100% on Blackstone and House of Fusion has
 back end components on Blackstone as well. I'm hoping to be 100%
 Blackstone for everything next week.
 It's fast, it's stable, and I've got some code tricks that people will
 just love based on my work with Blackstone.
 
 
 
 

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187011
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: Blackstone Beta

2004-12-10 Thread Michael Dinowitz
I've never had problems with MX to begin with. I was just giving the
standard stuff rather than go into specifics. NDA and all. Actually, there
were events that caused me to make server changes last night and make the
original post that are also NDA covered. The only thing I could do was
remind people about the beta so they could learn on their own. 
Personally, as seen from FA, Blackstone is really fast. Faster than 6.1? I
can't really say but probably. More stable than 6.1? Again, I can't say but
probably as they've had time to look at things, listen to the insane
ramblings of people like me and look deeper into the hidden nooks and
crannies. All I can say is that even on the limited hardware HoF is on, it's
fast.

 Wasn't some of the promise for MX that it was fast and stable?  If so
 does that mean they did not live up to the promise and we get our
 money back?  ;)  After all if already stable, not like you can make it
 more stable :)
 
 
 On Fri, 10 Dec 2004 09:57:42 -0400, Michael Dinowitz
 [EMAIL PROTECTED] wrote:
  I think the promise is that it's fast, stable and has new, cool
 features. Fusion Authority is running 100% on Blackstone and House of
 Fusion has back end components on Blackstone as well. I'm hoping to be
 100% Blackstone for everything next week.
  It's fast, it's stable, and I've got some code tricks that people will
 just love based on my work with Blackstone.
 
 
 
  At 04:18 AM 12/10/2004, Martin Parry wrote:
  Done it ! Let's hope it lives up to the promise :S
  
  What was that promise, exactly?
  
  I haven't been watching any media releases or paying
  attention... just writing code.
  
  Anders
  
  
  
  +===+
  |Anders GreenEmail: [EMAIL PROTECTED]|
  | Home: 919.303.0218|
  |   Off Road Rally Racing Team: http://LinaRacing.com/  |
  |Do you like Evite? This is better: http://RSVPtracker.com/ |
  +===+
 
 
 
 

~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187009
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: Picky delete statement?

2004-12-10 Thread Mark Drew
I think it should be pointed out that this will remove that column
from the TABLE, not just for a row
(which I think the question was hinting at)

MD


On Fri, 10 Dec 2004 09:08:03 -0600, Ryan Duckworth [EMAIL PROTECTED] wrote:
 You can remove a column, not just set it to NULL.
 
 Use the ALTER TABLE statement. Syntax:
 
 ALTER TABLE [table]
 DROP COLUMN [columnlist]
 
 INSERT, DELETE, UPDATE are all built to change specific records.  ALTER
 TABLE changes the structure of your table.
 
 Good luck.
 
 Ryan Duckworth
 Macromedia ColdFusion Certified Professional
 Uhlig Communications
 10983 Granada Lane
 Overland Park, KS 66211
 (913) 754-4272
 
 
 
 
 -Original Message-
 From: Mark Drew [mailto:[EMAIL PROTECTED]
 Sent: Thursday, December 09, 2004 6:30 PM
 To: CF-Talk
 Subject: Re: Picky delete statement?
 
 Thats right. if you want to delete the columns of a record you have to
 update the record and set the columns to null or to whatever the
 default defined by the database
 
 e.g.
 Update mytable
 Set col1 = null
 , col2 = null
 Where id = insert id
 
 Hope that helps
 
 Regards
 Mark Drew
 
 On Thu, 9 Dec 2004 18:44:53 -0500, Phillip Perry
 [EMAIL PROTECTED] wrote:
  Hi,
 
  I've read my sql book but I cant find what i'm looking for. According
 to the
  book (as far as my understanding is) you cant specify which columns to
  delete, you can only delete the whole record. Is this true?
 
  Phil
 
 
 
 

~|
Special thanks to the CF Community Suite Silver Sponsor - New Atlanta
http://www.newatlanta.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186983
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: cfinclude not working in firefox

2004-12-10 Thread Rick Root
Man, I'll be fascinated to see the results of THIS conversation :)

~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187010
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: cfinclude not working in firefox

2004-12-10 Thread Tim Laureska
Nope... that didn't do it either.. still can't get cfincludes to
function on firefox locally... adding firefox to the cfstudio list of
browsers didn't help either

-Original Message-
From: Tim Laureska [mailto:[EMAIL PROTECTED] 
Sent: Friday, December 10, 2004 11:16 AM
To: CF-Talk
Subject: RE: cfinclude not working in firefox

Darn Rob ... you hit on it right there... forgot to add it to the
browser list in CF studio... a big 'duh' for me
thanks

-Original Message-
From: Rob [mailto:[EMAIL PROTECTED] 
Sent: Friday, December 10, 2004 10:59 AM
To: CF-Talk
Subject: Re: cfinclude not working in firefox

Are you saying you are opening the file (the .cfm page) directly in
browser without running it through a coldfusion server?


On Fri, 10 Dec 2004 11:02:05 -0500, Tim Laureska [EMAIL PROTECTED]
wrote:
 When I use my local browsers to test view a page (ie. haven't put the
 files up on the host web server - just viewing on local computer), the
 page that has the cfinclude reference shows fine in IE, but the
 cfincluded piece is missing when I view it in firefox
 
 
 
 -Original Message-
 From: John Beynon [mailto:[EMAIL PROTECTED]
 Sent: Friday, December 10, 2004 10:50 AM
 To: CF-Talk
 Subject: Re: cfinclude not working in firefox
 
 definitely not - it's performed at the server nothing to do with the
 client...
 
 jb.
 
 On Fri, 10 Dec 2004 10:54:01 -0500, Tim Laureska
[EMAIL PROTECTED]
 wrote:
  Has anyone run upon this?
 
  Tim
 
 
 
 





~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187013
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: cfinclude not working in firefox

2004-12-10 Thread Joe Rinehart
Tim,

Is your local machine running ColdFusion server?  Not Studio, but
server itself.


On Fri, 10 Dec 2004 11:22:39 -0500, Tim Laureska [EMAIL PROTECTED] wrote:
 Nope... that didn't do it either.. still can't get cfincludes to
 function on firefox locally... adding firefox to the cfstudio list of
 browsers didn't help either
 
 
 
 -Original Message-
 From: Tim Laureska [mailto:[EMAIL PROTECTED]
 Sent: Friday, December 10, 2004 11:16 AM
 To: CF-Talk
 Subject: RE: cfinclude not working in firefox
 
 Darn Rob ... you hit on it right there... forgot to add it to the
 browser list in CF studio... a big 'duh' for me
 thanks
 
 -Original Message-
 From: Rob [mailto:[EMAIL PROTECTED]
 Sent: Friday, December 10, 2004 10:59 AM
 To: CF-Talk
 Subject: Re: cfinclude not working in firefox
 
 Are you saying you are opening the file (the .cfm page) directly in
 browser without running it through a coldfusion server?
 
 On Fri, 10 Dec 2004 11:02:05 -0500, Tim Laureska [EMAIL PROTECTED]
 wrote:
  When I use my local browsers to test view a page (ie. haven't put the
  files up on the host web server - just viewing on local computer), the
  page that has the cfinclude reference shows fine in IE, but the
  cfincluded piece is missing when I view it in firefox
 
 
 
  -Original Message-
  From: John Beynon [mailto:[EMAIL PROTECTED]
  Sent: Friday, December 10, 2004 10:50 AM
  To: CF-Talk
  Subject: Re: cfinclude not working in firefox
 
  definitely not - it's performed at the server nothing to do with the
  client...
 
  jb.
 
  On Fri, 10 Dec 2004 10:54:01 -0500, Tim Laureska
 [EMAIL PROTECTED]
  wrote:
   Has anyone run upon this?
  
   Tim
  
  
 
 
 
 

~|
Special thanks to the CF Community Suite Silver Sponsor - New Atlanta
http://www.newatlanta.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187017
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: cfinclude not working in firefox

2004-12-10 Thread Joe Rinehart
Ok.  Can you paste what you see when you do view source in both IE and Firefox?


On Fri, 10 Dec 2004 11:25:37 -0500, Tim Laureska [EMAIL PROTECTED] wrote:
 What do you mean Joe... I've been viewing cfm pages locally with
 cfincludes in the IE browsers all the time and the pages show up ...
 I've got CF 5 server installed locally
 
 
 
 -Original Message-
 From: Joe Rinehart [mailto:[EMAIL PROTECTED]
 Sent: Friday, December 10, 2004 11:13 AM
 To: CF-Talk
 Subject: Re: cfinclude not working in firefox
 
 Tim,
 
 You need to put your .CFM files on a ColdFusion server to get anything
 to work.  Viewing them locally won't do anything.
 
 -Joe
 
 On Fri, 10 Dec 2004 11:13:58 -0500, Tim Laureska [EMAIL PROTECTED]
 wrote:
  Here's the cfinclude template in the one page within standard table
  tags:
 
  cfinclude template=menu_top.cfm
 
  And here's what's on the menu_top.cfm page:
 
  tr class=menu2
  td colspan=3 align=left
  TABLE class=menu2
  TR
  TD class=menu3A href=home.cfm class=menu2 Home/A/TD
 
  TD class=menu3A href=../ecomm/index_new.cfm
  class=menu2Register On-Line/A/TD
 
  TD class=menu3A href=class=menu2Directions/A/TD
 
  TD class=menu3A href=
  class=menu2Exhibitornbsp;Information/A/TD
 
  TD class=menu4A href=../ecomm/cart.cfm class=menu2Your
  Cart/A/TD
  /TR
  /TABLE
  /td
  /tr
 
 
  -Original Message-
  From: Joe Rinehart [mailto:[EMAIL PROTECTED]
  Sent: Friday, December 10, 2004 10:53 AM
  To: CF-Talk
  Subject: Re: cfinclude not working in firefox
 
  Tim,
 
  It's not possible for cfinclude to work in one browser and not in
  another.  ColdFusion is server-side, so cfinclude happens long before
  the browser comes into play.
 
  What're the specifics of the situation?  We may be able to help narrow
  down what's going on.
 
  -joe
 
 
  On Fri, 10 Dec 2004 10:54:01 -0500, Tim Laureska
 [EMAIL PROTECTED]
  wrote:
   Has anyone run upon this?
  
   Tim
  
  
 
 
 
 

~|
Special thanks to the CF Community Suite Silver Sponsor - New Atlanta
http://www.newatlanta.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187018
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


Help w/using CFLDAP tag?

2004-12-10 Thread Bosky, Dave
Does anyone have an idea of what may be causing this error each time I
execute the CFLDAP tag?

This is my first experience using the CFLDAP tag. 

Running Active Directory/CFMX 6.1

--- 

LDAP: error code 1 - 20D6: SvcErr: DSID-031006C5, problem 5012
(DIR_ERROR), data 0

 

Here's the tag:

cfldap action=query

name=results

attributes=cn

start=cn=users

server=ldapserver.ldap.com

username=username

password=password

 

Thanks.

Dave

 



HTC Disclaimer:  The information contained in this message may be privileged 
and confidential and protected from disclosure. If the reader of this message 
is not the intended recipient, or an employee or agent responsible for 
delivering this message to the intended recipient, you are hereby notified that 
any dissemination, distribution or copying of this communication is strictly 
prohibited.  If you have received this communication in error, please notify us 
immediately by replying to the message and deleting it from your computer.  
Thank you.


~|
Special thanks to the CF Community Suite Silver Sponsor - New Atlanta
http://www.newatlanta.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186987
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: cfinclude not working in firefox

2004-12-10 Thread Tim Laureska
Yes... CF 5 server and studio

-Original Message-
From: Joe Rinehart [mailto:[EMAIL PROTECTED] 
Sent: Friday, December 10, 2004 11:20 AM
To: CF-Talk
Subject: Re: cfinclude not working in firefox

Tim,

Is your local machine running ColdFusion server?  Not Studio, but
server itself.


On Fri, 10 Dec 2004 11:22:39 -0500, Tim Laureska [EMAIL PROTECTED]
wrote:
 Nope... that didn't do it either.. still can't get cfincludes to
 function on firefox locally... adding firefox to the cfstudio list of
 browsers didn't help either
 
 
 
 -Original Message-
 From: Tim Laureska [mailto:[EMAIL PROTECTED]
 Sent: Friday, December 10, 2004 11:16 AM
 To: CF-Talk
 Subject: RE: cfinclude not working in firefox
 
 Darn Rob ... you hit on it right there... forgot to add it to the
 browser list in CF studio... a big 'duh' for me
 thanks
 
 -Original Message-
 From: Rob [mailto:[EMAIL PROTECTED]
 Sent: Friday, December 10, 2004 10:59 AM
 To: CF-Talk
 Subject: Re: cfinclude not working in firefox
 
 Are you saying you are opening the file (the .cfm page) directly in
 browser without running it through a coldfusion server?
 
 On Fri, 10 Dec 2004 11:02:05 -0500, Tim Laureska
[EMAIL PROTECTED]
 wrote:
  When I use my local browsers to test view a page (ie. haven't put
the
  files up on the host web server - just viewing on local computer),
the
  page that has the cfinclude reference shows fine in IE, but the
  cfincluded piece is missing when I view it in firefox
 
 
 
  -Original Message-
  From: John Beynon [mailto:[EMAIL PROTECTED]
  Sent: Friday, December 10, 2004 10:50 AM
  To: CF-Talk
  Subject: Re: cfinclude not working in firefox
 
  definitely not - it's performed at the server nothing to do with the
  client...
 
  jb.
 
  On Fri, 10 Dec 2004 10:54:01 -0500, Tim Laureska
 [EMAIL PROTECTED]
  wrote:
   Has anyone run upon this?
  
   Tim
  
  
 
 
 
 



~|
Special thanks to the CF Community Suite Silver Sponsor - New Atlanta
http://www.newatlanta.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187019
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: passing many variables between pages

2004-12-10 Thread Keith Gaughan
Mark Drew wrote:

 Serialise it into wddx, encode it to base 64, put it in hidden var
 
 cfwddx action=CFML2WDDX input=#FORM# output=theform
 cfset hiddenValue = ToBase64(theform)
 input type=hidden name=passthroughvals value=#hiddenValue#

But then you have the awkward problem of deserialising it later on each
page.

-- 
Keith Gaughan, Developer
Digital Crew Ltd., Pembroke House, Pembroke Street, Cork, Ireland
http://digital-crew.com/

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187020
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: cfinclude not working in firefox

2004-12-10 Thread Anders Green
At 11:09 AM 12/10/2004, Rick Root wrote:
Man, I'll be fascinated to see the results of THIS conversation :)

Heehee!!!




+===+
|Anders GreenEmail: [EMAIL PROTECTED]|
| Home: 919.303.0218|
|   Off Road Rally Racing Team: http://LinaRacing.com/  |
|Do you like Evite? This is better: http://RSVPtracker.com/ |
+===+ 


~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187022
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: cfinclude not working in firefox

2004-12-10 Thread Bryan Stevenson
CF server processes thge CF code...hands it back to IIS (or whatever web 
server) and then back to the browser.

What everyone is on about today is

Are you opening the file in the browser (i.e. double clicking the file or 
using the file menu in the browser)?

OR

Are you navigating to a proper URL on your local machine so the file gets 
processed by CF Server (also running on your local machine).soemthing 
like http://127.0.0.1/mypage.cfm or http://localhost/mypage.cfm

Does that make sense??

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: Tim Laureska [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Friday, December 10, 2004 8:25 AM
Subject: RE: cfinclude not working in firefox


 What do you mean Joe... I've been viewing cfm pages locally with
 cfincludes in the IE browsers all the time and the pages show up ...
 I've got CF 5 server installed locally

 -Original Message-
 From: Joe Rinehart [mailto:[EMAIL PROTECTED]
 Sent: Friday, December 10, 2004 11:13 AM
 To: CF-Talk
 Subject: Re: cfinclude not working in firefox

 Tim,

 You need to put your .CFM files on a ColdFusion server to get anything
 to work.  Viewing them locally won't do anything.

 -Joe



 On Fri, 10 Dec 2004 11:13:58 -0500, Tim Laureska [EMAIL PROTECTED]
 wrote:
 Here's the cfinclude template in the one page within standard table
 tags:

 cfinclude template=menu_top.cfm

 And here's what's on the menu_top.cfm page:

 tr class=menu2
 td colspan=3 align=left
 TABLE class=menu2
 TR
 TD class=menu3A href=home.cfm class=menu2 Home/A/TD

 TD class=menu3A href=../ecomm/index_new.cfm
 class=menu2Register On-Line/A/TD

 TD class=menu3A href=class=menu2Directions/A/TD

 TD class=menu3A href=
 class=menu2Exhibitornbsp;Information/A/TD

 TD class=menu4A href=../ecomm/cart.cfm class=menu2Your
 Cart/A/TD
 /TR
 /TABLE
 /td
 /tr


 -Original Message-
 From: Joe Rinehart [mailto:[EMAIL PROTECTED]
 Sent: Friday, December 10, 2004 10:53 AM
 To: CF-Talk
 Subject: Re: cfinclude not working in firefox

 Tim,

 It's not possible for cfinclude to work in one browser and not in
 another.  ColdFusion is server-side, so cfinclude happens long before
 the browser comes into play.

 What're the specifics of the situation?  We may be able to help narrow
 down what's going on.

 -joe


 On Fri, 10 Dec 2004 10:54:01 -0500, Tim Laureska
 [EMAIL PROTECTED]
 wrote:
  Has anyone run upon this?
 
  Tim
 
 





 

~|
Special thanks to the CF Community Suite Silver Sponsor - CFDynamics
http://www.cfdynamics.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187023
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: cfinclude not working in firefox

2004-12-10 Thread Tim Laureska
Joe.. here's the view source stuff... also interestingly enough, the
page views fine once up on the host... its just a local thing apparently

Viewsource firefox:
/tr
cfinclude template=menu_top.cfm

tr

viewsource IE:

TR
TD class=menu3A href=home.cfm class=menu2
Home/A/TD
TD class=menu3A href=../ecomm/index_new.cfm
class=menu2Register On-Line/A/TD
TD class=menu3A
href=class=menu2Directions/A/TD
TD class=menu3A href=
class=menu2Exhibitornbsp;Information/A/TD
TD class=menu4A href=../ecomm/insertorder.cfm
class=menu2Your Cart/A/TD
/TR


-Original Message-
From: Joe Rinehart [mailto:[EMAIL PROTECTED] 
Sent: Friday, December 10, 2004 11:23 AM
To: CF-Talk
Subject: Re: cfinclude not working in firefox

Ok.  Can you paste what you see when you do view source in both IE and
Firefox?


On Fri, 10 Dec 2004 11:25:37 -0500, Tim Laureska [EMAIL PROTECTED]
wrote:
 What do you mean Joe... I've been viewing cfm pages locally with
 cfincludes in the IE browsers all the time and the pages show up ...
 I've got CF 5 server installed locally
 
 
 
 -Original Message-
 From: Joe Rinehart [mailto:[EMAIL PROTECTED]
 Sent: Friday, December 10, 2004 11:13 AM
 To: CF-Talk
 Subject: Re: cfinclude not working in firefox
 
 Tim,
 
 You need to put your .CFM files on a ColdFusion server to get anything
 to work.  Viewing them locally won't do anything.
 
 -Joe
 
 On Fri, 10 Dec 2004 11:13:58 -0500, Tim Laureska
[EMAIL PROTECTED]
 wrote:
  Here's the cfinclude template in the one page within standard table
  tags:
 
  cfinclude template=menu_top.cfm
 
  And here's what's on the menu_top.cfm page:
 
  tr class=menu2
  td colspan=3 align=left
  TABLE class=menu2
  TR
  TD class=menu3A href=home.cfm class=menu2 Home/A/TD
 
  TD class=menu3A href=../ecomm/index_new.cfm
  class=menu2Register On-Line/A/TD
 
  TD class=menu3A href=class=menu2Directions/A/TD
 
  TD class=menu3A href=
  class=menu2Exhibitornbsp;Information/A/TD
 
  TD class=menu4A href=../ecomm/cart.cfm class=menu2Your
  Cart/A/TD
  /TR
  /TABLE
  /td
  /tr
 
 
  -Original Message-
  From: Joe Rinehart [mailto:[EMAIL PROTECTED]
  Sent: Friday, December 10, 2004 10:53 AM
  To: CF-Talk
  Subject: Re: cfinclude not working in firefox
 
  Tim,
 
  It's not possible for cfinclude to work in one browser and not in
  another.  ColdFusion is server-side, so cfinclude happens long
before
  the browser comes into play.
 
  What're the specifics of the situation?  We may be able to help
narrow
  down what's going on.
 
  -joe
 
 
  On Fri, 10 Dec 2004 10:54:01 -0500, Tim Laureska
 [EMAIL PROTECTED]
  wrote:
   Has anyone run upon this?
  
   Tim
  
  
 
 
 
 



~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187024
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: cfinclude not working in firefox

2004-12-10 Thread Tim Laureska
1) I'm running some kind of CF server locally and having the pages
come through that local server.

YES

2) My nav bar starts with http:, not file:

well... hell there's the answer ... the address line was starting with
file versus http.  I couldn't get the firefox browser to launch the site
when I selected it in cfstudio so I tried just opening the file within
firefox similar to how I do in IE



+===+
|Anders GreenEmail: [EMAIL PROTECTED]|
| Home: 919.303.0218|
|   Off Road Rally Racing Team: http://LinaRacing.com/  |
|Do you like Evite? This is better: http://RSVPtracker.com/ |
+===+ 




~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187025
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: ColdFusion security framework

2004-12-10 Thread Matt Robertson
oops.  I said the pro ver just does encoded/expiring links and I meant lite.

-- 
--Matt Robertson--
President, Janitor
MSB Designs, Inc.
mysecretbase.com

~|
Special thanks to the CF Community Suite Silver Sponsor - New Atlanta
http://www.newatlanta.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187026
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


CFHEADER/CFCONTENT over SSL with IE

2004-12-10 Thread Cliff Meyers
I have a simple text file that I want to force-download for users of a web
application.  I've set up the following code:

cfheader
  name=Content-Disposition
  value=attachment; filename=#filename#

cfcontent
  type=text/plain
  file=#filepath#
  deletefile=no

When I run the code in IE, I get the File Download dialog box as you'd
expect.  When I either try to open or save the file, I get this error
message:

Internet Explorer cannot download act_download_key.cfm from www.anyhost.com.

Internet Explorer was not able to open this internet site... blah blah

This site is being served over HTTPS.  When I adjust the IIS configuration
to allow requests over HTTP, the code magically works without issues. 
Furthermore Firefox can open/save the file without problems over either
HTTP or HTTPS.  I'm assuming this is some idiosyncrasy with IE when using
CFCONTENT/CFHEADER over an SSL site.  Thanks for your help.


-Cliff Meyers

~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187029
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: cfinclude not working in firefox

2004-12-10 Thread Joe Rinehart
Tim,

You're not browsing the .cfm file through the server.  

Your url in firefox should look something like
http://localhost/myFile.cfm, _not_
file:///C:/jrun4/servers/cfusion-ear/cfusion-war/index.cfm (or
wherever your CF server root is).


-Joe


On Fri, 10 Dec 2004 11:42:00 -0500, Tim Laureska [EMAIL PROTECTED] wrote:
 Joe.. here's the view source stuff... also interestingly enough, the
 page views fine once up on the host... its just a local thing apparently
 
 Viewsource firefox:
 /tr
 cfinclude template=menu_top.cfm
 
 tr
 
 viewsource IE:
 
 
 
 TR
 TD class=menu3A href=home.cfm class=menu2
 Home/A/TD
 TD class=menu3A href=../ecomm/index_new.cfm
 class=menu2Register On-Line/A/TD
 TD class=menu3A
 href=class=menu2Directions/A/TD
 TD class=menu3A href=
 class=menu2Exhibitornbsp;Information/A/TD
 TD class=menu4A href=../ecomm/insertorder.cfm
 
 
 class=menu2Your Cart/A/TD
 /TR
 
 -Original Message-
 From: Joe Rinehart [mailto:[EMAIL PROTECTED]
 Sent: Friday, December 10, 2004 11:23 AM
 To: CF-Talk
 Subject: Re: cfinclude not working in firefox
 
 Ok.  Can you paste what you see when you do view source in both IE and
 Firefox?
 
 On Fri, 10 Dec 2004 11:25:37 -0500, Tim Laureska [EMAIL PROTECTED]
 wrote:
  What do you mean Joe... I've been viewing cfm pages locally with
  cfincludes in the IE browsers all the time and the pages show up ...
  I've got CF 5 server installed locally
 
 
 
  -Original Message-
  From: Joe Rinehart [mailto:[EMAIL PROTECTED]
  Sent: Friday, December 10, 2004 11:13 AM
  To: CF-Talk
  Subject: Re: cfinclude not working in firefox
 
  Tim,
 
  You need to put your .CFM files on a ColdFusion server to get anything
  to work.  Viewing them locally won't do anything.
 
  -Joe
 
  On Fri, 10 Dec 2004 11:13:58 -0500, Tim Laureska
 [EMAIL PROTECTED]
  wrote:
   Here's the cfinclude template in the one page within standard table
   tags:
  
   cfinclude template=menu_top.cfm
  
   And here's what's on the menu_top.cfm page:
  
   tr class=menu2
   td colspan=3 align=left
   TABLE class=menu2
   TR
   TD class=menu3A href=home.cfm class=menu2 Home/A/TD
  
   TD class=menu3A href=../ecomm/index_new.cfm
   class=menu2Register On-Line/A/TD
  
   TD class=menu3A href=class=menu2Directions/A/TD
  
   TD class=menu3A href=
   class=menu2Exhibitornbsp;Information/A/TD
  
   TD class=menu4A href=../ecomm/cart.cfm class=menu2Your
   Cart/A/TD
   /TR
   /TABLE
   /td
   /tr
  
  
   -Original Message-
   From: Joe Rinehart [mailto:[EMAIL PROTECTED]
   Sent: Friday, December 10, 2004 10:53 AM
   To: CF-Talk
   Subject: Re: cfinclude not working in firefox
  
   Tim,
  
   It's not possible for cfinclude to work in one browser and not in
   another.  ColdFusion is server-side, so cfinclude happens long
 before
   the browser comes into play.
  
   What're the specifics of the situation?  We may be able to help
 narrow
   down what's going on.
  
   -joe
  
  
   On Fri, 10 Dec 2004 10:54:01 -0500, Tim Laureska
  [EMAIL PROTECTED]
   wrote:
Has anyone run upon this?
   
Tim
   
   
  
  
 
 
 
 

~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187030
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: ColdFusion security framework

2004-12-10 Thread Matt Robertson
Lite just does tiers.  Access level 1, 2, 3 and so on Pro has roles
and groups, or at least what I call them.  I explain the
implementations in the faq on the site.

You can also pre-build default user profiles containing the roles and
groups you want to have for default types of users (admin, manager,
editor privileged visitor and so on) and then apply those default
profiles to individual users.  From there you can customize each
person's profile, adding and removing whatever individual permission
items you please.

AMPro also does hint/answer on the pwd reset authentication.  AMPro
just does the encoded links with expiry.  The former is about as good
as it gets and the latter could be jhijacked by someone who intercepts
the email.

Basically Lite is code that I wrote a couple of years ago and have
updated.  I sat down and wrote Pro afterwards as something that does
everything I could want, covers my butt as much as can be etc. etc.

-- 
--Matt Robertson--
President, Janitor
MSB Designs, Inc.
mysecretbase.com

~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187031
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: passing many variables between pages

2004-12-10 Thread Joe Rinehart
Backing the form with a session-scoped CFC could encapsulate it all nicely, too.

-joe


On Fri, 10 Dec 2004 14:45:57 -0200, Marco Antonio C. Santos
[EMAIL PROTECTED] wrote:
 Using SESSION structure could be the best answer for Tim questions...
 
 Best regards
 
 Marco
 
 On Fri, 10 Dec 2004 10:41:17 -0600, Aaron Rouse [EMAIL PROTECTED] wrote:
  One of our systems just creates a structure, with keys being the
  hidden field names and then they have their values.  That is assigned
  to a session variable and then referenced by the pages you are
  navigating through.
 
  On Fri, 10 Dec 2004 16:23:52 +, Keith Gaughan
 
 
  [EMAIL PROTECTED] wrote:
   Mark Drew wrote:
  
Serialise it into wddx, encode it to base 64, put it in hidden var
   
cfwddx action=CFML2WDDX input=#FORM# output=theform
cfset hiddenValue = ToBase64(theform)
input type=hidden name=passthroughvals value=#hiddenValue#
  
   But then you have the awkward problem of deserialising it later on each
   page.
  
   --
   Keith Gaughan, Developer
   Digital Crew Ltd., Pembroke House, Pembroke Street, Cork, Ireland
   http://digital-crew.com/
  
  
 
 
 
 

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187034
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: Blackstone Beta

2004-12-10 Thread Matt Robertson
As far as I can tell 6.1 cured most of 6.0's ills.  At least all of
them I had any concerns about.

Blackstone is evolutionary and not revolutionary, so the
pain/suffering/bloodshed we had going 5.0 to 6.0 ain't happening.  Its
got really neat new things but these are things hanging off the
existing core.  No putting up with a reinvented wheel this time.

And don't you want to stop writing all of those godawful cflocks
around everything? :D  I can't wait to drop CF5 support, although
realistically I'll have to keep it around for some time to come.

-- 
--Matt Robertson--
President, Janitor
MSB Designs, Inc.
mysecretbase.com

~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187035
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: fck editor 2.0 RC

2004-12-10 Thread Rick Root
Mark Drew wrote:
 You let users enter LOTS of HTML? :-O
 
 as for the images... inline in the content?!??! ye gads... your users
 must be drunk with power!!!

My users generally maintain their own content.  If they want an image in 
the content, then they put an image in.

My clients like not having to call me to make changes.

 but seriously.. how do you then strip out the content?

Strip it out of what?  They're not editing the template, they're just 
editing the content of the page.  Haven't you ever been to a web site 
that had an image in the content of the page?

 What I DO like about tinyMCE is the installation seems to be very easy

cd admin
unzip fck.zip
modify fckconfig.js if necessary
Add a few simple lines of code to the page on which your editor is to 
appear.

I found the installation process to be incredibly easy.

But I guess we've started an editor war.

COMMODORE 64 ROCKS!  ATARI SUX!

  - Rick


~|
Special thanks to the CF Community Suite Silver Sponsor - New Atlanta
http://www.newatlanta.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187006
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: base href and in-page anchor links

2004-12-10 Thread Jim Davis
You might want to just set your base href as your page.

For example something like this:

base href=http://www.mysite.com/index.cfm;

(Remember the Base HREF is the location from which you want relative URL's
to be created - not specifically a folder you want to create them from.)

This should solve your problem.

Jim Davis


 -Original Message-
 From: Hugo Ahlenius [mailto:[EMAIL PROTECTED]
 Sent: Friday, December 10, 2004 10:04 AM
 To: CF-Talk
 Subject: OT: base href and in-page anchor links
 
 Hi,
 
 I have a little HTML dilemma. I am working on a site which uses some
 links to leads to anchors on the same page. I have been using base
 href.../ tags to set the base, so that all links are relative.
 
 How do I then create a link to a local anchor, when I am not on the root
 page? If I am not on the root page of the site, and there is a link a
 href=#anchorlink/ (and the anchor/id is of course defined), this is
 then interpreted by the browser (firefox, IE6) as a link to
 http://[base]/#anchor. Note that this is not a problem with presenting
 pound-signs when in cfoutput tags -- it is strictly a client/html
 problem.
 
 You can see it in action here:
 http://www.povertymap.net/publications/
 (the links on the top, On this page)
 
 
 
 --
 Hugo Ahlenius
 
 -
 Hugo Ahlenius  E-Mail: [EMAIL PROTECTED]
 Project OfficerPhone:+46 8 230460
 UNEP GRID-Arendal  Fax:  +46 8 230441
 Stockholm Office   Mobile: +46 733 467111
WWW:   http://www.grida.no
 -
 
 
 ###
 
 This message has been scanned by F-Secure Anti-Virus for Microsoft
 Exchange.
 For more information, connect to http://www.F-Secure.com/
 
 
 

~|
Special thanks to the CF Community Suite Silver Sponsor - CFDynamics
http://www.cfdynamics.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187038
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: cfinclude not working in firefox

2004-12-10 Thread Tim Laureska
What do you mean Joe... I've been viewing cfm pages locally with
cfincludes in the IE browsers all the time and the pages show up ...
I've got CF 5 server installed locally

-Original Message-
From: Joe Rinehart [mailto:[EMAIL PROTECTED] 
Sent: Friday, December 10, 2004 11:13 AM
To: CF-Talk
Subject: Re: cfinclude not working in firefox

Tim,

You need to put your .CFM files on a ColdFusion server to get anything
to work.  Viewing them locally won't do anything.

-Joe



On Fri, 10 Dec 2004 11:13:58 -0500, Tim Laureska [EMAIL PROTECTED]
wrote:
 Here's the cfinclude template in the one page within standard table
 tags:
 
 cfinclude template=menu_top.cfm
 
 And here's what's on the menu_top.cfm page:
 
 tr class=menu2
 td colspan=3 align=left
 TABLE class=menu2
 TR
 TD class=menu3A href=home.cfm class=menu2 Home/A/TD
 
 TD class=menu3A href=../ecomm/index_new.cfm
 class=menu2Register On-Line/A/TD
 
 TD class=menu3A href=class=menu2Directions/A/TD
 
 TD class=menu3A href=
 class=menu2Exhibitornbsp;Information/A/TD
 
 TD class=menu4A href=../ecomm/cart.cfm class=menu2Your
 Cart/A/TD
 /TR
 /TABLE
 /td
 /tr
 
 
 -Original Message-
 From: Joe Rinehart [mailto:[EMAIL PROTECTED]
 Sent: Friday, December 10, 2004 10:53 AM
 To: CF-Talk
 Subject: Re: cfinclude not working in firefox
 
 Tim,
 
 It's not possible for cfinclude to work in one browser and not in
 another.  ColdFusion is server-side, so cfinclude happens long before
 the browser comes into play.
 
 What're the specifics of the situation?  We may be able to help narrow
 down what's going on.
 
 -joe
 
 
 On Fri, 10 Dec 2004 10:54:01 -0500, Tim Laureska
[EMAIL PROTECTED]
 wrote:
  Has anyone run upon this?
 
  Tim
 
 
 
 



~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187015
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: dynamic urls

2004-12-10 Thread Matt Robertson
I did this in my cms.  In  implementation the user either picks a page
name or it gets picked for them.  Thats why you see pages on my site
like

http://mysecretbase.com/ampro_home.cfm
and
http://mysecretbase.com/page_1078.cfm

Both are dynamic pages, but on the latter one I got lazy.

Basically CF strips the page name (sans the preceding folders and the
extension) and looks for it in the 'my page name' field, which is
indexed.  If it doesn't find that it does some more gymnastics to pull
out the ID number it finds embedded in the text.

There are a bunch of ways you could implement this for automated
generation.  Determine the org name from a session var, stick in a '-'
and then parse/camelcase the page title and make that the page name so
you get

http://mydomain.com/myorganization-wooHoo.cfm

-- 
--Matt Robertson--
President, Janitor
MSB Designs, Inc.
mysecretbase.com

~|
Special thanks to the CF Community Suite Silver Sponsor - New Atlanta
http://www.newatlanta.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187039
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: passing many variables between pages

2004-12-10 Thread Keith Gaughan
Aaron Rouse wrote:

 One of our systems just creates a structure, with keys being the
 hidden field names and then they have their values.  That is assigned
 to a session variable and then referenced by the pages you are
 navigating through.

That's assuming a lot, don't you think? Not to mention potentially a lot
of data floating around in the session scope.

-- 
Keith Gaughan, Developer
Digital Crew Ltd., Pembroke House, Pembroke Street, Cork, Ireland
http://digital-crew.com/

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187042
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: passing many variables between pages

2004-12-10 Thread Aaron Rouse
One of our systems just creates a structure, with keys being the
hidden field names and then they have their values.  That is assigned
to a session variable and then referenced by the pages you are
navigating through.


On Fri, 10 Dec 2004 16:23:52 +, Keith Gaughan
[EMAIL PROTECTED] wrote:
 Mark Drew wrote:
 
  Serialise it into wddx, encode it to base 64, put it in hidden var
 
  cfwddx action=CFML2WDDX input=#FORM# output=theform
  cfset hiddenValue = ToBase64(theform)
  input type=hidden name=passthroughvals value=#hiddenValue#
 
 But then you have the awkward problem of deserialising it later on each
 page.
 
 --
 Keith Gaughan, Developer
 Digital Crew Ltd., Pembroke House, Pembroke Street, Cork, Ireland
 http://digital-crew.com/
 
 

~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187027
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


firefox problem solved

2004-12-10 Thread Tim Laureska
Please, please !! don't make me stand in a corner wearing a dunce cap
today

Tim Laureska
1st-String Technologies



~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187028
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: fck editor 2.0 RC

2004-12-10 Thread Barney Boisvert
I can't speak for FCK editor (does anyone else read that in a profane
manner every time they see it?), but soEditor and HTMLArea both can
have their image insert easily augmented to either include a browser
for existing images uploaded to the system, or to have a full fledges
manager for adding, editing and deleting images, as well as selection
of one for insertion.  I usually use both, with the picker loading by
default, and a link to the full-on manager.

cheers,
barneyb

On Fri, 10 Dec 2004 10:04:48 -0500, Rick Root [EMAIL PROTECTED] wrote:
 Irvin Gomez wrote:
 Use TinyMCE. It's much simpler.
 
 http://tinymce.moxiecode.com/
 
  Looks nice, but regular (non-technical) users would have problems inserting 
  images.
 
 That was always my beef with a lot of the editors that don't include
 such functionality it's hard to ask users to type in the URL of an
 image on their server.  htmlArea was the same way - I ended up adding a
 second image button to the toolbar that launched my own image browser.
 That's why I switched to FCKeditor... it had the browse and upload built
 into the main image dialog.
 
 tinymce might be nice for a message board utility or something where you
 only want users to enter basic html, but as a full-featured editor, it
 is definately lacking in the ease of use department if you ask me.
 
  - Rick
 

-- 
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/blog/

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187044
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: ColdFusion security framework

2004-12-10 Thread Jim Davis
 -Original Message-
 From: The Wolf [mailto:[EMAIL PROTECTED]
 Sent: Friday, December 10, 2004 6:30 AM
 To: CF-Talk
 Subject: Re: ColdFusion security framework
 
 Hi,
 that sounds very interesting.
 
 It would be great if you can mail me it or post it to the list.
 
 Thanks a lot.

I've uploaded a zip of the CFCs involved to:

ftp://ftp.depressedpress.com/FTP/cfc_DepressedPress.zip

They should be unpacked into a folder called cfc_DepressedPress a mapping
made to it.  Te code should be consider as being under the FreeBSD license
(open source).

That's the core system - there's no interface or usage information there
(I've not documented it yet) but here's some information.

The core concept of the system is that it's decoupled from the application
using it.  The system doesn't make any assumptions about its host.  The host
simply passes whatever it's using for session management (some key) into the
security system and it returns information.

Because of this decoupling the system can be instantiated anyplace -
there're no application dependencies.  You can instantiate it on the fly
(which is resource intensive) or persist it to the application or server
scopes (which means you can use the system even without using CF's
application framework or having CF sessions enabled).

The system provides three basic abstractions for user information.  It
allows you to easily extend any or all of them with customized CFCs if the
packaged ones don't suit.  The three are:

+) Credential: This component contains all of the security-level
information about the user.  Password, logins, etc.
+) Profile: This component contains all of the personal-level
information about the user (name, address, phone, emails, etc).
+) Entitlement: This contains permission-level information about the
user.  Right now simple groups (nested or not) are supported, but more
complex sets of entitlements could be added easily by extending the
component.

Each of these abstractions is managed by intelligent mediator components.
Your admin and editing systems should also use these mediators.  Doing this
means that all changes are reflected instantly in the security system
(banning a user is done instantly, not next log on).

The system also supports n strikes and you're out style lockout lists (for
example three bad passwords and you're banned for a specified amount of
time).

Passwords can be forced to a minimum length and can be optionally
case-sensitive.  Password salt can be added to improve to quality of the
hash as well.  (Speaking of that - passwords aren't stored in the system -
only the hash)

The database code provided is for SQL Server, but the framework a simple
mechanism to create your own DB implementation (in fact you can have any
persistence mechanism you like and the same installed codebase can
instantiate multiple instances of the security system using multiple
persistence services at once).

To create the system you first create a persistence element using
CFC_DepressedPress.Utility.DP_PersistenceInfo_DSN (right now I've only got
DSNs defined - I plan to add XML as maybe LDAP as well) like this:

CreateObject(Component,
CFC_DepressedPress.Utility.DP_PersistenceInfo_DSN).init(SQLServer2000,
DSN_Name, Table_Prefix, Username (if any), Password (if any))

You would then call DP_SecurityConfiguration.cfc.  This CFC creates and
populates the data tables needed for the system and the options you've
elected.  It only needs to be called once.  This is the installer.

Later pass your Persistence Component into DP_Security.cfc to instatiate the
actual system.  For example:

cfset Application.DPSecurity = CreateObject(Component,
CFC_DepressedPress.Security.DP_Security).init(PersistenceInfo) /

That's that.  You can then protect a resource like this (abbreviated code):

cfset EntitlementList = Member,Adminstrator

!--- This code will return not entitled if the user is logged in
and not enititled or simply not logged in at all ---
cfif NOT Application.DPSecurity.isEntitled(SessionKey, EntitlementList)

!--- This line checks if the user is actually logged in at
all ---
cfif Application.DPSecurity.isAuthentication(SessionKey)
cfset AuthError = AuthNotInGroup
cfelse
cfset AuthError = AuthNotLoggedIn
/cfif
cflocation addtoken=No url=YourLogInPage?AuthError=#AuthError#
/
/cfif


Some other functions of note.

To create user use:

DPSecurity.Users.create(UserID, Handle, Password, true, true)

To get a new password:

DPSecurity.generatePassword()

To get information about a user:

DPSecurity.CredentialMediator.get(UserKey)
DPSecurity.ProfileMediator.get(UserKey)
DPSecurity.EntitlementMediator.get(UserKey)


I'm sorry - I know that my organization can seem a little insane, but I
assure you - it all makes sense to me.  ;^)

The CFCs DP_Users.cfc and DP_Groups.cfc are essentially management CFCs.
They're where to look for creating 

[OT] Fck... Profane? was fck editor 2.0 RC

2004-12-10 Thread Paul Vernon
 FCK editor ... does anyone else read that in a profane manner every time
they see it? 

Not quite as bad as fcuk :) French Connection United Kingdom put it on all
the clothing they sell... A lovely play on letters for their marketing
dept 

Paul


~|
Special thanks to the CF Community Suite Silver Sponsor - New Atlanta
http://www.newatlanta.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187047
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: Cannot Update Date/Time field

2004-12-10 Thread colman
yes, all the non-datetime fields update fine, with or without a null. Only
the date/time fields have this problem. I have tried putting
createodbcdate into the update, but does not make any difference.

 can you send your update query?

 - Original Message -
 From: Richard Colman [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Friday, December 10, 2004 11:44 AM
 Subject: Cannot Update Date/Time field


I cannot update a date/time field within ACCESS when the value of the
 field
 is null. The field is marked not required in ACCESS so it should
 accept
 nulls. I get a datatype mismatch.

 Does anyone have a solution for this problem??

 Richard Colman






 

~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187048
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: fck editor 2.0 RC

2004-12-10 Thread Lewis Sellers
Barney Boisvert wrote:
 I can't speak for FCK editor (does anyone else read that in a profane
 manner every time they see it?),

Yes. But until you mentioned it I hadn't noticed I was doing that in my 
mind. :)

-- 
--Lewis Sellers (AKA min)
Intrafoundation Software
http://www.intrafoundation.com

~|
Special thanks to the CF Community Suite Silver Sponsor - New Atlanta
http://www.newatlanta.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187049
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: Cannot Update Date/Time field

2004-12-10 Thread Pascal Peters
Use cfqueryparam and set the null attribute dynamically

Pascal



 -Original Message-
 From: Richard Colman [mailto:[EMAIL PROTECTED]
 Sent: 10 December 2004 18:45
 To: CF-Talk
 Subject: Cannot Update Date/Time field
 
 I cannot update a date/time field within ACCESS when the value of the
 field
 is null. The field is marked not required in ACCESS so it should
accept
 nulls. I get a datatype mismatch.
 
 Does anyone have a solution for this problem??
 
 Richard Colman
 
 
 
 
 

~|
Special thanks to the CF Community Suite Silver Sponsor - CFDynamics
http://www.cfdynamics.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187050
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: fck editor 2.0 RC

2004-12-10 Thread Matt Robertson
What Rick said.  Except the part about the Commodore.  Trash 80!

-- 
--Matt Robertson--
President, Janitor
MSB Designs, Inc.
mysecretbase.com

~|
Special thanks to the CF Community Suite Silver Sponsor - CFDynamics
http://www.cfdynamics.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187037
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: Cannot Update Date/Time field

2004-12-10 Thread Greg Morphis
You could also use a dummy date.. 1/1/ or something. I did that
when I ran into a similiar situation.


On Fri, 10 Dec 2004 19:06:53 +0100, Pascal Peters [EMAIL PROTECTED] wrote:
 Use cfqueryparam and set the null attribute dynamically
 
 Pascal
 
 
 
 
  -Original Message-
  From: Richard Colman [mailto:[EMAIL PROTECTED]
  Sent: 10 December 2004 18:45
  To: CF-Talk
  Subject: Cannot Update Date/Time field
 
  I cannot update a date/time field within ACCESS when the value of the
  field
  is null. The field is marked not required in ACCESS so it should
 accept
  nulls. I get a datatype mismatch.
 
  Does anyone have a solution for this problem??
 
  Richard Colman
 
 
 
 
 
 
 

~|
Special thanks to the CF Community Suite Silver Sponsor - New Atlanta
http://www.newatlanta.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187051
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: passing many variables between pages

2004-12-10 Thread Aaron Rouse
Most processes I have seen with similar needs do pretty much the exact
method.  It actually is an array of structures, if memory serves me
right since I do not have access to that code presently.  There are
always many ways to skin a cat, go with whatever way you feel meets
your spec the best and the way that you feel you understand and can
impliment the best.

On Fri, 10 Dec 2004 17:34:35 +, Keith Gaughan
[EMAIL PROTECTED] wrote:
 Aaron Rouse wrote:
 
  One of our systems just creates a structure, with keys being the
  hidden field names and then they have their values.  That is assigned
  to a session variable and then referenced by the pages you are
  navigating through.
 
 That's assuming a lot, don't you think? Not to mention potentially a lot
 of data floating around in the session scope.
 
 --
 Keith Gaughan, Developer
 Digital Crew Ltd., Pembroke House, Pembroke Street, Cork, Ireland
 http://digital-crew.com/
 
 

~|
Special thanks to the CF Community Suite Silver Sponsor - New Atlanta
http://www.newatlanta.com

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


OT- DBA question SQL2K

2004-12-10 Thread Eric Creese
When setting up backup strategies would you rather wrtie the commands and save 
them in a job and schedule them or use the Data Maintainence Plan Wizard?

I simply write the code and stick it in jobs and it works fine, however I got 
some people her telling me to use the Wizard because jobs are unreliable. But 
the Wizard simply creates a job that is scheduled the same way so I do. I do 
not see what the difference is at all.

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187040
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: Blackstone Beta

2004-12-10 Thread Martin Parry
Among the things I've been waiting for the most is the ability to
compile and protect code and deliver it in a redistributable format !!

Martin Parry
Macromedia Certified Developer
http://www.BeetrootStreet.co.uk


-Original Message-
From: Anders Green [mailto:[EMAIL PROTECTED] 
Sent: 10 December 2004 13:13
To: CF-Talk
Subject: RE: Blackstone Beta

At 04:18 AM 12/10/2004, Martin Parry wrote:
Done it ! Let's hope it lives up to the promise :S

What was that promise, exactly?

I haven't been watching any media releases or paying
attention... just writing code.

Anders



+===+
|Anders GreenEmail: [EMAIL PROTECTED]|
| Home: 919.303.0218|
|   Off Road Rally Racing Team: http://LinaRacing.com/  |
|Do you like Evite? This is better: http://RSVPtracker.com/ |
+===+ 




~|
Special thanks to the CF Community Suite Silver Sponsor - New Atlanta
http://www.newatlanta.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187041
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


form submission

2004-12-10 Thread Ken
Hi. I have a checkbox on a form. The code on the action page should be
executed only if the checkbox was selected on the form.
What CFIF statement can i use on the action page to achieve this.
Using CFIF #form.chkbox#  EQ  does not work.
Any suggestions please.

~|
Special thanks to the CF Community Suite Silver Sponsor - New Atlanta
http://www.newatlanta.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187053
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: Cannot Update Date/Time field

2004-12-10 Thread Richard Colman
Yes, I tried that, but it is ugly. When the user looks at the update, you
see a dummy listing that has to be explained (e.g. 1/1/ really means no
data ...) If they run a report, etc. with the data, then you end up with a
nonsensical date like 1/1/ in the report.

Is this an ACCESS thing? Would it happen in SQL-Server. It seems like this
is a common situation, and I can't seem to come up with a good solution? 

-Original Message-
From: Greg Morphis [mailto:[EMAIL PROTECTED] 
Sent: Friday, December 10, 2004 10:16 AM
To: CF-Talk
Subject: Re: Cannot Update Date/Time field

You could also use a dummy date.. 1/1/ or something. I did that when I
ran into a similiar situation.


On Fri, 10 Dec 2004 19:06:53 +0100, Pascal Peters [EMAIL PROTECTED] wrote:
 Use cfqueryparam and set the null attribute dynamically
 
 Pascal
 
 
 
 
  -Original Message-
  From: Richard Colman [mailto:[EMAIL PROTECTED]
  Sent: 10 December 2004 18:45
  To: CF-Talk
  Subject: Cannot Update Date/Time field
 
  I cannot update a date/time field within ACCESS when the value of 
  the field is null. The field is marked not required in ACCESS so 
  it should
 accept
  nulls. I get a datatype mismatch.
 
  Does anyone have a solution for this problem??
 
  Richard Colman
 
 
 
 
 
 
 



~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187056
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: Cannot Update Date/Time field

2004-12-10 Thread Jason Herbolsheimer
can you send your update query?

- Original Message - 
From: Richard Colman [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Friday, December 10, 2004 11:44 AM
Subject: Cannot Update Date/Time field


I cannot update a date/time field within ACCESS when the value of the field
 is null. The field is marked not required in ACCESS so it should accept
 nulls. I get a datatype mismatch.

 Does anyone have a solution for this problem??

 Richard Colman




 

~|
Special thanks to the CF Community Suite Silver Sponsor - CFDynamics
http://www.cfdynamics.com

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


RE: [OT] Fck... Profane? was fck editor 2.0 RC

2004-12-10 Thread Jim Davis
 On Fri, 10 Dec 2004 18:00:54 -, Paul Vernon
 [EMAIL PROTECTED] wrote:
   FCK editor ... does anyone else read that in a profane manner every
 time
  they see it?
 
  Not quite as bad as fcuk :) French Connection United Kingdom put it on
 all
  the clothing they sell... A lovely play on letters for their marketing
  dept

Well - that's more widespread that you might think:

Aoccdrnig to rscheearch at Cmabrigde Uinervtisy, it deosn't mttaer in waht
oredr the ltteers in a wrod are, the olny iprmoetnt tihng is taht the frist
and lsat ltteer be at the rghit pclae. The rset can be a tatol mses and you
can sitll raed it wouthit porbelm. Tihs is bcuseae the huamn mnid deos not
raed ervey lteter by istlef, but the wrod as a wlohe.

Someday I'm going to do a custom tag to do that to a whole site...

Jim Davis




~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187060
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: Cannot Update Date/Time field

2004-12-10 Thread Greg Morphis
If you're talking about CF output, use an if statement to check the
date for the dummy date.. if it is they display nbsp; or something.


On Fri, 10 Dec 2004 10:53:01 -0800, Richard Colman [EMAIL PROTECTED] wrote:
 Yes, I tried that, but it is ugly. When the user looks at the update, you
 see a dummy listing that has to be explained (e.g. 1/1/ really means no
 data ...) If they run a report, etc. with the data, then you end up with a
 nonsensical date like 1/1/ in the report.
 
 Is this an ACCESS thing? Would it happen in SQL-Server. It seems like this
 is a common situation, and I can't seem to come up with a good solution?
 
 
 
 -Original Message-
 From: Greg Morphis [mailto:[EMAIL PROTECTED]
 Sent: Friday, December 10, 2004 10:16 AM
 To: CF-Talk
 Subject: Re: Cannot Update Date/Time field
 
 You could also use a dummy date.. 1/1/ or something. I did that when I
 ran into a similiar situation.
 
 On Fri, 10 Dec 2004 19:06:53 +0100, Pascal Peters [EMAIL PROTECTED] wrote:
  Use cfqueryparam and set the null attribute dynamically
 
  Pascal
 
 
 
 
   -Original Message-
   From: Richard Colman [mailto:[EMAIL PROTECTED]
   Sent: 10 December 2004 18:45
   To: CF-Talk
   Subject: Cannot Update Date/Time field
  
   I cannot update a date/time field within ACCESS when the value of
   the field is null. The field is marked not required in ACCESS so
   it should
  accept
   nulls. I get a datatype mismatch.
  
   Does anyone have a solution for this problem??
  
   Richard Colman
  
  
  
  
  
 
 
 
 

~|
Special thanks to the CF Community Suite Silver Sponsor - New Atlanta
http://www.newatlanta.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187061
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: paypal API

2004-12-10 Thread Lewis Sellers
Mark A Kruger wrote:
 Lewis - thanks! you've been extremly hepful.  I look forward to hearing more
 about your cfx tag.
 
 -mark

Ok. Sometime later tonight it's finally in limited beta. There are 
three issues I have to massage a bit and test against, then it's just 
trying to clean up the documentation and jarring the little fellow.

BTW, I asked about the AddressVerify function of the WS API. Supposedly 
it will only properly work if you're an enterprise partner(?) of 
PayPal. Whatever that is supposed to mean.

The software itself does perform the function, it simply gives back an 
unauthorized message at the moment. FYI. I was seeing about convincing 
the PayPal people into letting me test against this in the sandbox to 
validate the software. PayPal. Ug. :)

-- 
--Lewis Sellers (AKA min)
Intrafoundation Software
http://www.intrafoundation.com


~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

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


Re: [OT] Fck... Profane? was fck editor 2.0 RC

2004-12-10 Thread Barney Boisvert
That's aewmsoe!  I think I'd heard something like that before, but
never as clearly demonstrated as that.  Course, now we're WAY OT, and
probably going to get yelled at soon.

cheers,
barneyb

On Fri, 10 Dec 2004 14:17:03 -0500, Jim Davis
[EMAIL PROTECTED] wrote:
 
 
  On Fri, 10 Dec 2004 18:00:54 -, Paul Vernon
  [EMAIL PROTECTED] wrote:
FCK editor ... does anyone else read that in a profane manner every
  time
   they see it?
  
   Not quite as bad as fcuk :) French Connection United Kingdom put it on
  all
   the clothing they sell... A lovely play on letters for their marketing
   dept
 
 Well - that's more widespread that you might think:
 
 Aoccdrnig to rscheearch at Cmabrigde Uinervtisy, it deosn't mttaer in waht
 oredr the ltteers in a wrod are, the olny iprmoetnt tihng is taht the frist
 and lsat ltteer be at the rghit pclae. The rset can be a tatol mses and you
 can sitll raed it wouthit porbelm. Tihs is bcuseae the huamn mnid deos not
 raed ervey lteter by istlef, but the wrod as a wlohe.
 
 Someday I'm going to do a custom tag to do that to a whole site...
 
 Jim Davis
 
-- 
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/blog/

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187064
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


Preventing users CFINSERTing duplicate records

2004-12-10 Thread Chris Kavanagh
Hello list!

Well, that's it really.  What's the best way to prevent a user from 
inserting duplicate records?

FYI in this case it's going into a MySQL table that has only two 
columns:

--
co_id   co_name
[PKey]
--

Thanks!
CK.


~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187065
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: Preventing users CFINSERTing duplicate records

2004-12-10 Thread Cliff Meyers
CK,


ALTER TABLE
  jobs
ADD CONSTRAINT
  myuniqueindex1
UNIQUE
  (co_id, co_name);

That should do it.  It creates a unique index across those two columns so
that no row can have identical values.  The database will throw an error
if you attempt to insert a non-unique row.

Alternatively, you could declare the PRIMARY KEY across both columns since
it implies unique values.


-Cliff



On Fri, December 10, 2004 2:35 pm, Chris Kavanagh said:
 Hello list!

 Well, that's it really.  What's the best way to prevent a user from
 inserting duplicate records?

 FYI in this case it's going into a MySQL table that has only two
 columns:

 --
 co_id co_name
 [PKey]
 --

 Thanks!
 CK.


 

~|
Special thanks to the CF Community Suite Silver Sponsor - New Atlanta
http://www.newatlanta.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187066
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: Cannot Update Date/Time field

2004-12-10 Thread Richard Colman
Does that work with ACCESS?? 

-Original Message-
From: Pascal Peters [mailto:[EMAIL PROTECTED] 
Sent: Friday, December 10, 2004 10:07 AM
To: CF-Talk
Subject: RE: Cannot Update Date/Time field

Use cfqueryparam and set the null attribute dynamically

Pascal



 -Original Message-
 From: Richard Colman [mailto:[EMAIL PROTECTED]
 Sent: 10 December 2004 18:45
 To: CF-Talk
 Subject: Cannot Update Date/Time field
 
 I cannot update a date/time field within ACCESS when the value of the 
 field is null. The field is marked not required in ACCESS so it 
 should
accept
 nulls. I get a datatype mismatch.
 
 Does anyone have a solution for this problem??
 
 Richard Colman
 
 
 
 
 



~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187054
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: form submission

2004-12-10 Thread Jerry Johnson
A checkbox will only be defined if checked on the form. Otherwise, it is not 
defined.

CFIF isdefined(form.chkbox) should do the trick.

Jerry

Jerry Johnson
Web Developer
Dolan Media Company

 [EMAIL PROTECTED] 12/10/04 01:45PM 
Hi. I have a checkbox on a form. The code on the action page should be
executed only if the checkbox was selected on the form.
What CFIF statement can i use on the action page to achieve this.
Using CFIF #form.chkbox#  EQ  does not work.
Any suggestions please.



~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

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


Re: [OT] Fck... Profane? was fck editor 2.0 RC

2004-12-10 Thread Lewis Sellers
Barney Boisvert wrote:
 That's aewmsoe!  I think I'd heard something like that before, but
 never as clearly demonstrated as that.  Course, now we're WAY OT, and
 probably going to get yelled at soon.

Doubt it. It's Friday. And night's approaching. /-)

 cheers,
 barneyb

-- 
--Lewis Sellers (AKA min)
Intrafoundation Software
http://www.intrafoundation.com

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187069
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


Return id after insert

2004-12-10 Thread Phill B
I cant remember how to return the id from an insert. I have searched
but I can't find what I'm looking for. Not to mention people keep
buggin me making my job harder than it should be. :-|


Anyway, it is some thing like @@identity but I cant remember. Little help?

-- 
Phillip B.

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

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


RE: [OT] Fck... Profane? was fck editor 2.0 RC

2004-12-10 Thread Ian Skinner
This only works with fairly simple content.

quote src=http://www.mrc-cbu.cam.ac.uk/personal/matt.davis/Cmabrigde/;
Update 2:

Graham has very kindly sent me a summary of his thesis work. 
http://www.mrc-cbu.cam.ac.uk/personal/matt.davis/Cmabrigde/rawlinson.html

it deosn't mttaer in waht oredr the ltteers in a wrod are, the olny iprmoetnt 
tihng is taht the frist and lsat ltteer be at the rghit pclae... it doesn't 
matter in what order the letters in a word are, the only important thing is 
that the first and last letter be at the right place

This is clearly wrong. For instance, compare the following three sentences:

1) A vheclie epxledod at a plocie cehckipont near the UN haduqertares in 
Bagahdd on Mnoday kilinlg the bmober and an Irqai polcie offceir

2) Big ccunoil tax ineesacrs tihs yaer hvae seezueqd the inmcoes of mnay 
pneosenirs

3) A dootcr has aimttded the magltheuansr of a tageene ceacnr pintaet who deid 
aetfr a hatospil durg blendur

All three sentences were randomized according to the rules described in the 
meme. The first and last letters have stayed in the same place and all the 
other letters have been moved. However, I suspect that your experience is the 
same as mine, which is that the texts get progressively more difficult to read. 
If you get stuck, the sentences are linked to the original unscrambled texts.


/quote

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

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. 



~|
Special thanks to the CF Community Suite Silver Sponsor - New Atlanta
http://www.newatlanta.com

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


Re: [OT] Fck... Profane? was fck editor 2.0 RC

2004-12-10 Thread Adrocknaphobia
Its def reffered to as the [EMAIL PROTECTED] Editor. We actually went ahead and
renamed the custom tag.

-Adam


On Fri, 10 Dec 2004 18:00:54 -, Paul Vernon
[EMAIL PROTECTED] wrote:
  FCK editor ... does anyone else read that in a profane manner every time
 they see it?
 
 Not quite as bad as fcuk :) French Connection United Kingdom put it on all
 the clothing they sell... A lovely play on letters for their marketing
 dept
 
 Paul
 
 

~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187057
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: Return id after insert

2004-12-10 Thread Ben Forta
Sounds like you are using SQL Server, so ...

SELECT @@IDENTITY AS newid

You can also put that in an INSERT trigger, so that the INSERT itself will
return that new id.

--- Ben


-Original Message-
From: Phill B [mailto:[EMAIL PROTECTED] 
Sent: Friday, December 10, 2004 2:59 PM
To: CF-Talk
Subject: Return id after insert

I cant remember how to return the id from an insert. I have searched but I
can't find what I'm looking for. Not to mention people keep buggin me making
my job harder than it should be. :-|


Anyway, it is some thing like @@identity but I cant remember. Little help?

--
Phillip B.



~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

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


RE: [OT] Fck... Profane? was fck editor 2.0 RC

2004-12-10 Thread Burns, John D
And no one can dcfeyer the srecet cdoe...

Oh wait, yes they can, that was kinda the point :-)


John Burns
Certified Advanced ColdFusion MX Developer
AI-ES Aeronautics, Web Developer

-Original Message-
From: Lewis Sellers [mailto:[EMAIL PROTECTED] 
Sent: Friday, December 10, 2004 2:52 PM
To: CF-Talk
Subject: Re: [OT] Fck... Profane? was fck editor 2.0 RC

Barney Boisvert wrote:
 That's aewmsoe!  I think I'd heard something like that before, but 
 never as clearly demonstrated as that.  Course, now we're WAY OT, and 
 probably going to get yelled at soon.

Doubt it. It's Friday. And night's approaching. /-)

 cheers,
 barneyb

--
--Lewis Sellers (AKA min)
Intrafoundation Software
http://www.intrafoundation.com



~|
Special thanks to the CF Community Suite Silver Sponsor - New Atlanta
http://www.newatlanta.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187074
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: Return id after insert

2004-12-10 Thread Ben Doom
cfquery
set nocount on;
insert stuff;
select @@identity as something;
set nocount off;
/cfquery

Just did this day before yesterday.  :-)

--Ben

Phill B wrote:
 I cant remember how to return the id from an insert. I have searched
 but I can't find what I'm looking for. Not to mention people keep
 buggin me making my job harder than it should be. :-|
 
 
 Anyway, it is some thing like @@identity but I cant remember. Little help?
 


~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187075
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


  1   2   3   >