Re: cf-based discussion board

2004-07-07 Thread dave
http://www.cfboards.com www.stickshitsolutions.com/openForums -- Original Message -- From: Rick Mason <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] Date:  Wed, 7 Jul 2004 23:12:33 -0400 >Rick, > >A really good CF clone of PHP BB is a great idea.  Might I

Re: cf-based discussion board

2004-07-07 Thread Rick Mason
Rick, A really good CF clone of PHP BB is a great idea.  Might I suggest in addition to your own website that you also list it on cfopen.org. If you're not familiar with it, CFOpen acts as a CF only community version of Sourceforge.  I think you're likely to find helpers there. Rick Mason -

Re: Mailing List / Archive App

2004-07-07 Thread Michael Dinowitz
> Thanks Michael. > >  ... grabbing the message before or after it is sent ... > >   What is the difference here?  It would seem like after would be much simpler.  Is there a benefit otherwise? Before means that the app will be dealing with sending the mail or in some way sit between the receiving

Re: Mailing List / Archive App

2004-07-07 Thread fbx-lists
Thanks Michael. ... grabbing the message before or after it is sent ...   What is the difference here?  It would seem like after would be much simpler.  Is there a benefit otherwise? ... different mail browsers use different headers ...   Is there anywhere that at least states what all of the

Re: cf-based discussion board

2004-07-07 Thread Michael Dinowitz
What features are you looking for? Honestly, a forums app is rather simple to build. CFPOP to read mail in, CFQUERY to store it, CFQUERY to get subscribers, CFMAIL to send it all out (I use something else, but the above it a pure CF solution). Everything else is commentary. > Hi all, > I know peop

Re: cf-based discussion board

2004-07-07 Thread Rick Root
btw, another problem I had with cfbb is that it only works with SQL Server... not exactly the lowest common denominator. I'm building cfmbb to work with MySQL - no stored procedures, no triggers, no nested selects.  Which should make it pretty portable to just about any database. Though believ

Re: Mailing List / Archive App

2004-07-07 Thread Michael Dinowitz
It'll take you all of 5 minutes to write a mail agent that reads list messages from a dedicated email address and puts them into a DB. From there it's just a matter of display code. This is what I did wy back in time for the HoF archives before I started using iMS. The questions are: Do you wan

Re: cf-based discussion board

2004-07-07 Thread Rick Root
George Abraham wrote: > Hi all, > I know people are going to hate the repeat of this question. However a > search of the lists did not get me any results. Are there any good > open-source cf-based forum apps out there? Else I have to use phpBB > which, other than the fact that it runs on PHP,

cfmodule and mappings

2004-07-07 Thread M . Casey
We've got a problem with a cfmodule not recognizing a ColdFusion mapping. We mapped /CFIDE/ to point to C:\INETPUB\WWWROOT\CFIDE\.  My site is on drive D on the same server.  When I call this tag:     I get the following error: Could not find the included template /CFIDE/Administrator/cffile_upl

Mailing List / Archive App

2004-07-07 Thread Jeff Chastain
I have an IPSwitch iMail server that has mailing list capabilities.  The server can handle all of the message broadcasts, the subscribe/unsubscribe, etc. stuff.   What I need now is a web based archive for these mailing lists that will display the messages (similar to HOF).  I have been searching f

Re: Screen and Print question.

2004-07-07 Thread Dick Applebaum
Totally within the browser -- no page request to the server. Some pages have  a button to format for printing -- this usually is a   request to the server for another page with the data formatted in plain   text, with no (or limited) html tags. You could also do this client side with _javascript_

Re: Looking for small images(icons) to replace folders in a tree menu

2004-07-07 Thread Kay Smoljak
> Ciliotta, Mario [mailto:[EMAIL PROTECTED] wrote: > I know this is way off the CF topic, but does anyone know where I can find > some very small icons (19X19) to replace the icons used in a tree menu.  I > would like to replace the folders and the document icon with icons that are > computer relat

RE: Find out table names and fields?

2004-07-07 Thread S . Isaac Dealey
The onTap framework contains much of the same server-agnostic meta data utilities. I had mentioned it to rob prior before I realized he's not working with MX yet, which is why I'd demured to talking about the db-specific methods in this thread. Incidentally, for anyone who might be interested, I h

RE: Find out table names and fields?

2004-07-07 Thread S . Isaac Dealey
The onTap framework contains much of the same server-agnostic meta data utilities. I had mentioned it to rob prior before I realized he's not working with MX yet, which is why I'd demured to talking about the db-specific methods in this thread. Incidentally, for anyone who might be interested, I h

Re: cfmail problem

2004-07-07 Thread Jordan Michaels
I concur. This is an email server problem, not a Cold Fusion problem. Make sure that your email server is spooling incoming messages and accepting them as fast as they come in. SMTP - port 25 - is incoming mail. If the server cannot take care of each mail as fast as they are coming in then you

RE: cfmail problem

2004-07-07 Thread Tim Do
Thx!  I'll try that next time.. don't want to spam them again =P -Original Message- From: Ryan Duckworth [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 07, 2004 3:05 PM To: CF-Talk Subject: RE: cfmail problem Another solution is to simply delay between each email to avoid a connection p

Query of a query inconsistancies

2004-07-07 Thread Todd
I have these 2 queries:     SELECT *, COUNT(*) AS totalcount, SUM(Cost) AS totalcost     FROM orders, orderitems     WHERE orders.OrderID = orderitems.OrderID     AND OrderDate >= '#DateFormat(StartTime, "-mm-dd")#'     GROUP BY UserID     HAVING totalcount > 1     SELECT SUM(totalcost) AS

RE: cfmail problem

2004-07-07 Thread Ryan Duckworth
Another solution is to simply delay between each email to avoid a connection problem. This code will delay for 1 second.  Put it in your loop and I'm sure it will work perfectly. It will take under a minute to send out your entire batch and not fail. It sounds like your mail server isn't spooling t

RE: cfmail problem

2004-07-07 Thread Tim Do
Yes. -Original Message- From: Jordan Michaels [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 07, 2004 2:50 PM To: CF-Talk Subject: Re: cfmail problem Curious, did you enable mail spooling? -- Warm regards, Jordan Michaels Vivio Technologies http://www.viviotech.net/ [EMAIL PROTECTED]

Re: cfmail problem

2004-07-07 Thread Jordan Michaels
Curious, did you enable mail spooling? -- Warm regards, Jordan Michaels Vivio Technologies http://www.viviotech.net/ [EMAIL PROTECTED] Tim Do wrote: > Hello all, > > > I'm looping through a list of bout 50 email addresses and doing a cfmail > inside each iteration.  It sends out successfully on

cfmail problem

2004-07-07 Thread Tim Do
Hello all, I'm looping through a list of bout 50 email addresses and doing a cfmail inside each iteration.  It sends out successfully on most of it, but there are few that don't make it out.  The mail log says " Could not connect to SMTP host: wnpx, port: 25 " Then I retry each of the email addr

Charting exponential numbers

2004-07-07 Thread George Gifford
I am trying to chart (bar) some exponential values (minimum of 9.156E-13, max of .00461935). The chart graphs out ok as far as the bars go; however, the values all appear as zero (0). Is it possible to chart values this low? Any ideas? Thanks, George - Do you

Re: cf-based discussion board

2004-07-07 Thread dana tierney
the only cf-based board *I* am aware of is cfbb and I was not impressed. Dana - Original Message - From: George Abraham <[EMAIL PROTECTED]> Date: Wed, 7 Jul 2004 17:25:08 -0400 Subject: cf-based discussion board To: CF-Talk <[EMAIL PROTECTED]> Hi all, I know people are going to hate the

Re: Screen and Print question.

2004-07-07 Thread Jerry Johnson
I think it might depend on which browser and what your browser cache settings are. I don't know what the rules are, though. Not any help, Jerry Johnson >>> [EMAIL PROTECTED] 07/07/04 05:19PM >>> Nope, no new request (afaik). The html is in memory and to the best of my knowledge from there it goe

RE: Find out table names and fields?

2004-07-07 Thread Stephen Milligan
You can also dig down to the java level and do this in a database independent way through the macromedia.jdbc.MacromediaDriver class if you need to support more than just MSSQL and MySQL. I have written a CFC that does this, but I haven't tested it on many systems. I'll try to get it tidied up an

cf-based discussion board

2004-07-07 Thread George Abraham
Hi all, I know people are going to hate the repeat of this question. However a search of the lists did not get me any results. Are there any good open-source cf-based forum apps out there? Else I have to use phpBB which, other than the fact that it runs on PHP, is pretty nice. TIA, George [Todays

Re: Screen and Print question.

2004-07-07 Thread S . Isaac Dealey
Nope, no new request (afaik). The html is in memory and to the best of my knowledge from there it goes straight to the print spool/buffer. Or should if the browser developers did their job correctly. > I have a bit of an off the wall question?  If you are > looking at a webpage, then print it from

Screen and Print question.

2004-07-07 Thread Ian Skinner
I have a bit of an off the wall question?  If you are looking at a webpage, then print it from the browser, does this create to new call to the page from the server or does it print the current screen in the browser? -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacr

Re: Find out table names and fields?

2004-07-07 Thread S . Isaac Dealey
Those are specific to MySQL - MS SQL uses standard tables, views and sql queries to expose its meta data. i.e. select * from information_schema.columns where table_name = 'mytablename' and the like s. isaac dealey   214.823.9345 new epoch : isn't it time for a change? add features without fixt

Re: Restricting Access

2004-07-07 Thread brobborb
No, do it on the actual template that is processing the code.  Because like you said, what if someone knows the URL to the page?  Then must protect the code on that page as well.  THat way if anyone accesses that page directly, but doesnt have the right credentials, they will not be allowed to do a

RE: Find out table names and fields?

2004-07-07 Thread Eric Creese
for MS SQL I use the following and dump to a table caled Dictionary SELECT o.name AS TableName,c.name AS FieldName,t.name AS FieldDataType,t.length AS FieldLength,NULLS = CASE c.isnullable   WHEN 1 THEN 'NULL'   ELSE 'NOT NULL'   END AS Nullable INTO Dictionary FROM sysobjects o, sys

Re: Find out table names and fields?

2004-07-07 Thread Jerry Johnson
It won't work in MS SQL (I think) I don't think MS SQL supports the show command. Instead, they have a set of stored procedures that can give you similar information. sp_tables sp_columns You would run a cfquery in either case (sp_ or show *), and it will return a query that you can step through

RE: Find out table names and fields?

2004-07-07 Thread Barney Boisvert
  show tables These are MySQL-specific commands.  They may or may not work on other database system.  I believe MS SQL has a stored procedure that you query for information about the schema, but I don't know for sure (don't use it). Cheers, barneyb > -Original Message- > From: brobbor

Re: Regular expressions

2004-07-07 Thread Joe Bernard
Thanks for the help. For anyone who is interested, here is the code I came up with to escape the hex sequences. urlDecode wasn't working right so I used a workaround (inputBaseN). [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support

Re: Restricting Access

2004-07-07 Thread Matt Robertson
You can structure it in a variety of ways,  Bottom line:  Don't just protect a link to a page with security.  Protect the page itself so, as you say, some clown who knows the url can't do anything with it. This by the way is the reason you don't want to store permission information in a cookie or

Re: Find out table names and fields?

2004-07-07 Thread brobborb
how do i dump the results to display on the page?  Will this only work for mySQL, or for MS SQL as well? thanks!   - Original Message -   From: Barney Boisvert   To: CF-Talk   Sent: Wednesday, July 07, 2004 3:42 PM   Subject: RE: Find out table names and fields?   Sure, run these queri

Re: Encrypting strings

2004-07-07 Thread Matt Robertson
A salted hash would be best if you can do it.  Depends on whether you need to get the numbers back out again, or if you are using it for something like a password. Otherwise, as Matt says all someone has to do is find your encryption key on your server and they own your data.  The only way to stop

Re: Restricting Access

2004-07-07 Thread Marco Antonio C. Santos
Inside SQL clauses? Or maybe using cfinclude files for example... Sorry Monkey user you don't have permission to enter Right? More suggestions? On Wed, 7 Jul 2004 15:35:49 -0500, brobborb <[EMAIL PROTECTED]> wrote: > You must protect that code at the root level, so in users.c

RE: Encrypting strings

2004-07-07 Thread Stephen Milligan
Actually, cfusion_encrypt() uses extremely weak encryption. It's more like encoding than encryption. >From memory, it loops over the string performing an XOR on each character in the string with the corresponding character in the key. When it reaches the end of the key it starts again. The resul

Re: Restricting Access

2004-07-07 Thread brobborb
You must protect that code at the root level, so in users.cfm, only allow the delete if the user role is DELETE   - Original Message -   From: Marco Antonio C. Santos   To: CF-Talk   Sent: Wednesday, July 07, 2004 3:36 PM   Subject: Re: Restricting Access   Thank you Matt. I'll be visit

RE: Encrypting strings

2004-07-07 Thread Matt Liotta
Are you sure you need to encrypt SSNs? Unless your setup is more sophisticated than most, encryption will only provide a placebo in terms of security. -Matt > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > On Behalf Of Austin Govella > Sent: Wednesday, July 07, 2

RE: Find out table names and fields?

2004-07-07 Thread Barney Boisvert
Sure, run these queries, and dump the result. `show databases` will list all databases you have access to via the DSN. `show tables` will list all tables in the database the DSN is connected to. `show tables in ` will list all tables in the named database. `explain ` will list the columns of the n

RE: Encrypting strings

2004-07-07 Thread Dawson, Michael
How about using CFusion_Encrypt() to encrypt your information?  I think it's a bit "stronger". Also, can't you Hash() the string and then compare it to another hashed value when needed?   _   From: Austin Govella [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 07, 2004 2:29 PM To: CF-Talk

Re: Learning Java for a CF Developer - a possible solution?

2004-07-07 Thread Matt Woodward
I did nothing but Java for a few years, so sometimes it's a bit hard for me to have a fresh perspective, but I got O'Reilly's book "Head First Java" a few weeks ago and from what I've seen it's an excellent way to get into Java.  It's actually fun to read (believe it or not) and I think will give C

Re: Restricting Access

2004-07-07 Thread Marco Antonio C. Santos
Thank you Matt. I'll be visiting your web site and getting MongerLite. but say... - CEO haves the God rights role(insert, change, delete, view, all) - Monkey haves only view users option. users.cfm menu page: Congratulations CEO... you can now del all users... H good code yea

RE: CFEclipse version 1.1.13 released

2004-07-07 Thread Stephen Milligan
*snip* > >All bug reports, support requests, etc. to this list. > That should read: All bug reports, support requests etc. to the cfeclipse users list. You need to be a tigris.org member to submit bug reports. Membership is free and you won't get spammed (I haven't had any at least). Spike -

Find out table names and fields?

2004-07-07 Thread brobborb
Hey guys, I have a host that has no web admin support for mySQL.  I mean, they have MySQL running, but no admin.  At least thats what I'm told by my client. I was wondering if there was a way to extract the table names and fields using coldfusion instead.  Would that be possible? [Todays Threads]

Re: cfopen.org

2004-07-07 Thread Damien McKenna
I just confirmed it looking at the site - cfopen uses GForge. -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Company - http://www.thelimucompany.com/ - 407-804-1014 "Nothing endures but change." - Heraclitus [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe]

Re: cfopen.org

2004-07-07 Thread Damien McKenna
On Jul 7, 2004, at 2:10 PM, Mark Drew wrote: > No really hard to believe, just that there are more community based > tools with php, and more intranet/extranet based projects with CF Its more the open-source philosophy at work - PHP is an open-source technology and many of its users believe in gi

CFEclipse version 1.1.13 released

2004-07-07 Thread Rob
7th July, 2004: CFEclipse version 1.1.13 released http://cfeclipse.tigris.org The next version of CFEclipse has been released and is available to the general CF coding public as of now. Version 1.1.13 is more of a user-focussed release and has the following new features: · Eclipse update is now o

Re: Blackstone Strong Typing? was Re: CFX_FileReadLn

2004-07-07 Thread Joe Eugene
> also have optional strong typing? I STRONGLY AGREE.. This would be a really nice feature. Joe - Original Message - From: "Dick Applebaum" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, July 07, 2004 12:32 PM Subject: Blackstone Strong Typing? was Re: CFX_FileR

RE: Learning Java for a CF Developer - a possible solution?

2004-07-07 Thread Sparrow-Hood, Walter
Dick, Check out 'Thinking in Java' it's a free online book:  - http://www.mindview.net/Books/TIJ/ Walt [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: Restricting Access

2004-07-07 Thread Matt Robertson
Dave, Yes you are exactly right.  I snipped this out of something else and fiddled with it.  It was originally looking for a "no" Marco, You can look at cf_AccessMonger Lite, free and linked at my site.  Its got a live example of page protection and individual code block protection in its index.

RE: Learning Java for a CF Developer - a possible solution?

2004-07-07 Thread Sparrow-Hood, Walter
Dick, Check out 'Thinking in Java' it's a free online book:  - http://www.mindview.net/Books/TIJ/ Walt -Original Message- From: Dick Applebaum [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 07, 2004 10:01 AM To: CF-Talk Subject: SOT:  Learning Java for a CF Developer - a possible sol

Encrypting strings

2004-07-07 Thread Austin Govella
I need to encrypt SSNs. I'm looking for something more powerful than encrypt(). Also, does the length of my encryption key affect the difficulty for people trying to decrypt? For example, is using "canine" for a key more secure than using "dog" just because it's longer? Thanks, -- Austin [To

Re: Server Errors - CPU spike swsoc.exe

2004-07-07 Thread Dave Powell
...i've had similar issues, and eventually narrowed it down to ODBC connections with Access databases (two in particular are connected with queries)... ...from what i can ascertain, the connection reset by peer error occurs when the access database doesn't respond in a timely fashion... ...and in

Re: WOT: Looking for small images(icons) to replace folders in a tree menu

2004-07-07 Thread Tony Weeg
i always use http://www.iconfactory.com/ On Wed, 7 Jul 2004 13:59:11 -0400, Pete Ruckelshaus <[EMAIL PROTECTED]> wrote: > My favorite source of spiffy, clean icons is those fine chaps at > http://www.glyfx.com/  I believe they have sets of 16x16, 24x24, and > 32x32 icons. > > Pete > > > - O

RE: Regular expressions

2004-07-07 Thread Barney Boisvert
Rereplace takes 4 strings, it doesn't take any expressions.  To put it another way, any expressions you place inside the function call are evaluated into strings, and then the strings are passed to the Rereplace call.  The only processing you can use inside the replace string is that which the RE e

Re: Regular expressions

2004-07-07 Thread Jerry Johnson
I am not 100% percent sure, but my mind tells me you can't run a CF function on the backreference value in a regular _expression_. Jerry Johnson >>> [EMAIL PROTECTED] 07/07/04 02:48PM >>> Can someone tell me why the following code will not work: I am trying to write a function that will take t

Regular expressions

2004-07-07 Thread Joe Bernard
Can someone tell me why the following code will not work: I am trying to write a function that will take the filecontent from a cfhttp request and "unescape" any hexidecimal sequences it finds (for example %20 for a space. I am trying to use backreferencing with a regular _expression_ to find t

RE: Project Management System in CF

2004-07-07 Thread Michael Wilson
Hi, This isn't CF or JSP, but I thought I would toss it in your queue just in case your open to alternatives. http://www.basecamphq.com/ It's a hosted service, but there is a single project freebie that comes in handy and it's very well thought out. Best regards, Michael Wilson ___

CFTREE Help

2004-07-07 Thread Aaron Perry
Does anyone know how I can allow multiple selects on a cftree?  Ideally, I'd like the user to be able to hold the control key or and select multiple values before submitting the cfform. Thanks! Aaron [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Dona

Re: cfopen.org

2004-07-07 Thread Matt Woodward
>hehehe. CFOpen.org is a collaborative software development environment >designed to facilitate the development of open source software for >ColdFusion site build with PHP tools it's hard to believe This is addressed on the cfopen.org site (and has been discussed here previously as wel

Re: cfopen.org

2004-07-07 Thread Mark Drew
No really hard to believe, just that there are more community based tools with php, and more intranet/extranet based projects with CF Not sure if it is SourceForge... I thought Sourceforge was perl ? MD On Wed, 7 Jul 2004 14:47:33 -0300, Marco Antonio C. Santos <[EMAIL PROTECTED]> wrote: > heheh

Re: Restricting Access

2004-07-07 Thread Dave Carabetta
On Wed, 7 Jul 2004 07:48:16 -0700, Matt Robertson <[EMAIL PROTECTED]> wrote: > There are a zillion ways to skin this cat.  I like to the > login-related vars in application.cfm, that way there is always a > value, and my security works off the assumption that the vars at least > exist, so no isdefi

Re: Finding a local CFUG

2004-07-07 Thread Greg Landers
Thanks to all! simeon wrote: > http://www.macromedia.com/cfusion/usergroups/index.cfm > > That should get you where you want to go. > sim > > Greg Landers wrote: > > > Hello, > > > > Does anyone know if there is an "official" directory of all Coldfusion > > User Groups out there somewhere. I want

Re: Restricting Access

2004-07-07 Thread Marco Antonio C. Santos
Great Job Matt... do you have examples for that explanation? On Wed, 7 Jul 2004 07:48:16 -0700, Matt Robertson <[EMAIL PROTECTED]> wrote: > There are a zillion ways to skin this cat.  I like to the > login-related vars in application.cfm, that way there is always a > value, and my security works o

Re: WOT: Looking for small images(icons) to replace folders in a tree menu

2004-07-07 Thread Pete Ruckelshaus
My favorite source of spiffy, clean icons is those fine chaps at http://www.glyfx.com/  I believe they have sets of 16x16, 24x24, and 32x32 icons. Pete - Original Message - From: Ciliotta, Mario <[EMAIL PROTECTED]> Date: Wed, 7 Jul 2004 17:25:49 +0100 Subject: WOT: Looking for small image

RE: Finding a local CFUG

2004-07-07 Thread Stephen Milligan
http://www.macromedia.com/go/usergroups Should give you what you want. Spike Stephen Milligan Code poet for hire http://www.spike.org.uk Do you cfeclipse? http://cfeclipse.tigris.org >-Original Message- >From: [EMAIL PROTECTED] >[mailto:[

Re: Finding a local CFUG

2004-07-07 Thread Paul Kenney
Go to http://www.macromedia.com/go/usergroups On Wed, 7 Jul 2004 13:52:26 -0400, Adrocknaphobia <[EMAIL PROTECTED]> wrote: > I'm sure MM has one, but I know every issue of CFDJ has a nice little > map with all of them listed. Not sure how up-to-date that is though. > > -Adam > > > - Origina

RE: Conditional CFQUERY with cachedwithin

2004-07-07 Thread Perez, Percy
Thank you Barney Boisvert Ian Skinner for the response. That did the job... boy a feel like Forrest Gump!... ;) From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 07, 2004 1:47 PM To: CF-Talk Subject: RE: Conditional CFQUERY with cache

Re: Finding a local CFUG

2004-07-07 Thread Dave Carabetta
On Wed, 07 Jul 2004 12:47:56 -0500, Greg Landers <[EMAIL PROTECTED]> wrote: > Hello, > > Does anyone know if there is an "official" directory of all Coldfusion > User Groups out there somewhere. I want to see if there is one locally > available to me. I have googled and googled but have hit a bunc

Re: Finding a local CFUG

2004-07-07 Thread Jeff Garza
http://www.macromedia.com/cfusion/usergroups/index.cfm Cheers, Jeff Garza Manager, Phoenix CFUG   - Original Message -   From: Greg Landers   To: CF-Talk   Sent: Wednesday, July 07, 2004 10:47 AM   Subject: Finding a local CFUG   Hello,   Does anyone know if there is an "official" d

Re: Finding a local CFUG

2004-07-07 Thread simeon
http://www.macromedia.com/cfusion/usergroups/index.cfm That should get you where you want to go. sim Greg Landers wrote: > Hello, > > Does anyone know if there is an "official" directory of all Coldfusion > User Groups out there somewhere. I want to see if there is one locally > available to me.

Re: Finding a local CFUG

2004-07-07 Thread Ray Champagne
Well, where do you live? Here's the official list from MM: http://www.macromedia.com/cfusion/usergroups/index.cfm Ray At 01:47 PM 7/7/2004, you wrote: >Hello, > >Does anyone know if there is an "official" directory of all Coldfusion >User Groups out there somewhere. I want to see if there is on

Re: Finding a local CFUG

2004-07-07 Thread Adrocknaphobia
I'm sure MM has one, but I know every issue of CFDJ has a nice little map with all of them listed. Not sure how up-to-date that is though. -Adam - Original Message - From: Greg Landers <[EMAIL PROTECTED]> Date: Wed, 07 Jul 2004 12:47:56 -0500 Subject: Finding a local CFUG To: CF-Talk <[E

RE: Conditional CFQUERY with cachedwithin

2004-07-07 Thread Ian Skinner
Wouldn't something like this work? -- 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 attachment

Finding a local CFUG

2004-07-07 Thread Greg Landers
Hello, Does anyone know if there is an "official" directory of all Coldfusion User Groups out there somewhere. I want to see if there is one locally available to me. I have googled and googled but have hit a bunch of dead ends. Thanks, - Greg [Todays Threads] [This Message] [Subscription]

Re: cfopen.org

2004-07-07 Thread Marco Antonio C. Santos
hehehe. CFOpen.org is a collaborative software development environment designed to facilitate the development of open source software for ColdFusion site build with PHP tools it's hard to believe On Wed, 7 Jul 2004 13:35:39 -0400, Joe Rinehart <[EMAIL PROTECTED]> wrote: > I think it's

RE: Conditional CFQUERY with cachedwithin

2004-07-07 Thread Barney Boisvert
Set the timespan with the conditional, and then run a single query:       SELECT MOC.MOC_OHNUMBER, MOC.MOC_REF_NO FROM PK1.MOC MOC, WHERE MOC.MOC_OHNUMBER = '12345' AND ((MOC.MOC_OHTYPE='J') Cheers, barneyb > -Original Message- > From: Perez, Percy [mailto:[EMAIL PROTECTED] >

Conditional CFQUERY with cachedwithin

2004-07-07 Thread Perez, Percy
Hello, I am writing an application that needs to cache a  query for x amount of time.  However, I would like it to refresh the query when the variable url.reinit is set to 1. What is the best way to do that? I really hate to use the following method: cachedwithin="#createTimeSpan(7,0,0,0)#"

Re: cfopen.org

2004-07-07 Thread Joe Rinehart
I think it's sourceforge: http://sourceforge.net/projects/alexandria/ -joe - Original Message - From: Mark Drew <[EMAIL PROTECTED]> Date: Wed, 7 Jul 2004 18:46:42 +0200 Subject: cfopen.org To: CF-Talk <[EMAIL PROTECTED]> Does anybody know the name of the software that runs cfopen.org

Re: Project Management System in CF

2004-07-07 Thread Nick de Voil
> D'oh!  *project* management, not *content* management.  My bad. > > >Does anyone know of good project management system written in CF or maybe JSP. > >I could write my own but I just do not have the time as usually. Funnily enough we have a project management system built into our content manage

RE: Blackstone Strong Typing? was Re: CFX_FileReadLn

2004-07-07 Thread Jim Davis
I really doubt blackstone will have "real" nulls - my guess is that they'll be addressing the issue with some type of function check. I'll doubly doubt (as in "well hell freezes over") that CF will ever be strongly typed.  ;^) But I think many of the problems (not all) would be addressed by some

RE: Keeping the browser window at the bottom.

2004-07-07 Thread Barney Boisvert
Can you just add the script to the HEAD with CFHTMLHEAD?   Cheers, barneyb > -Original Message- > From: James Smith [mailto:[EMAIL PROTECTED] > Sent: Wednesday, July 07, 2004 2:53 AM > To: CF-Talk > Subject: Keeping the browser window at the bottom. > > I have a coldfusion template tha

RE: Multiple columns via CSS with position:relative?

2004-07-07 Thread Michael Wilson
Hi, http://www.projectseven.com/tutorials/css/samples/minwidth/ http://www.positioniseverything.net/piefecta-rigid.html http://www.fu2k.org/alex/css/layouts/3Col_NN4_FMFM_C.mhtml Best regards, Michael Wilson From: Damien McKenna [mailto:[EMAIL PROTECTED] Sen

Re: Instance ID on IIS

2004-07-07 Thread George Abraham
Thanks, Dave. iisfaq.com seems to be down for the moment, though. George [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: He3 beta release now available

2004-07-07 Thread Matt Liotta
> I have He3 downloaded and installed, it looks pretty nice, especially > the CVS integration and file comparison.  However, aside from the > built-in CFML and CFC templates, I've tried (and failed) to find those > aspects of He3 that are "specifically targeted to CFML development". In my mind, CFM

RE: Looking for small images(icons) to replace folders in a tree menu

2004-07-07 Thread Mosh Teitelbaum
Ciliotta, Mario [mailto:[EMAIL PROTECTED] wrote: > I know this is way off the CF topic, but does anyone know where I can find > some very small icons (19X19) to replace the icons used in a tree menu.  I > would like to replace the folders and the document icon with icons that are > computer related

Re: ONLINE BILLING

2004-07-07 Thread Rick Root
Authorize.net's API is a simple HTTPS call.  You post parameters via HTTPS, and it returns a CSV format with a variety of information. Personally, I like working with authorize.net because it doesn't require a CFX like Verisign and Card Services International do. They're also very flexible. Ge

Blackstone Strong Typing? was Re: CFX_FileReadLn

2004-07-07 Thread Dick Applebaum
Yeah, I think there was some code with a more formal EOF test recommended by someone. If Blackstone has a NULL, then is it reasonable to assume that it may also have optional strong typing? -- then if that is so, couldn't one code CF in such a way that more closely approached Java --  then here

cfopen.org

2004-07-07 Thread Mark Drew
Does anybody know the name of the software that runs cfopen.org I am aware that it is PHP but I was looking to recomend this as a way to run internal projects. Thanks in advance -- Mark Drew mailto:[EMAIL PROTECTED] blog:http://cybersonic.blogspot.com/ [Todays Threads] [This Message] [Su

Re: SOT: Learning Java for a CF Developer - a possible solution?

2004-07-07 Thread Joe Rinehart
Programming for poets?  Seriously, I mean, I can deal with commenting my code, but asking me to make it rhyme is just going too far. -joe [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: He3 beta release now available

2004-07-07 Thread Rob
On Wed, 7 Jul 2004 12:38:37 -0400, Michael Wilson <[EMAIL PROTECTED]> wrote: > I suppose these "unique tools" is what he's after. I assumed there would be > more (and I'm sure there is) than tag reference and templates in a > ColdFusion specific IDE. One would hope so. -- ~The cfml plug-in for

RE: He3 beta release now available

2004-07-07 Thread Michael Wilson
Hi, I haven't gotten around to giving it a try yet, but the RichPalette site states: "He3 provides a number of unique tools specifically targeted to CFML development. Additionally, He3 includes rich support for XML, HTML, CSS, and SQL as well as providing time saving _expression_ builders for reg

WOT: Looking for small images(icons) to replace folders in a tree menu

2004-07-07 Thread Ciliotta, Mario
HI, I know this is way off the CF topic, but does anyone know where I can find some very small icons (19X19) to replace the icons used in a tree menu.  I would like to replace the folders and the document icon with icons that are computer related.  Basically I am going to use the tree menu to sh

Rendering MHTML extension using CFCONTENT

2004-07-07 Thread G
Having a strange problem. I'm using the following code to try to render in the browser a file of type .mhtml (web archive):    What happens is that the browser tacks on an "mhtml:" to the beginning of my URL, and i get a page cannot be displayed error in the browser, such as: "mhtml:http://virt

Re: Project Management System in CF

2004-07-07 Thread Ray Champagne
D'oh!  *project* management, not *content* management.  My bad. Too much coffee this AM. Ray At 12:17 PM 7/7/2004, you wrote: >Hi, > >Does anyone know of good project management system written in CF or maybe JSP. >I could write my own but I just do not have the time as usually. > >Thanks >Mario

RE: Project Management System in CF

2004-07-07 Thread Hagan, Ryan Mr (Contractor ACI)
I really like Pro Work Flow: http://www.proworkflow.com/ -Original Message- From: Ciliotta, Mario [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 07, 2004 12:18 PM To: CF-Talk Subject: Project Management System in CF Hi, Does anyone know of good project management system written in CF

Re: SOT: Learning Java for a CF Developer - a possible solution?

2004-07-07 Thread Dick Applebaum
I will order it -- isn't available on O'Reilly Safari :( I remember one particular non-programmer programming book: Programming for Poets A Gentle Introduction Using Pascal Dick On Jul 7, 2004, at 8:54 AM, Kola Oyedeji wrote: > Dick, I would second simeon's recommendation, > > >  Head first Ja

  1   2   >