Re: URLScan IIS filter from Microsoft

2001-09-14 Thread Jochem van Dieten
Dave Watts wrote: > There's a new IIS tool from Microsoft called URLScan, which allows you to > create filtering rulesets that can prevent malicious requests. I just > downloaded it, and it looks like it might be worth taking a look at, if > you're using IIS: > > http://www.microsoft.com/technet/

Application security

2001-09-14 Thread Aidan Whitehall
Does any kind soul have some code they would be prepared to share with a fellow developer? I've got about 100 lines in the Application.cfm which works fine, but want to see how other people tackle the problem. I need something that grants directory access permissions based on an ID value set on l

RE: Duplicate and StructCopy

2001-09-14 Thread Kola Oyedeji
Ray, Out of curiosity what is it about this code in particular that makes it throw an error if you have strict attribute validation turned on? Is that on CF4.x or CF5 Thanks Kola Oyedeji Web developer Macromedia Certified Advanced ColdFusion 5 Developer http://www.Alexandermark.com (+44)020-8429

Long-Term Caching

2001-09-14 Thread Michael Lugassy
I have a complexed CFM template that output a result page after a long process. The process includes: connecting to 3-4 diffrent datasources, string manipulation, math calculations, links, includes, everything... I though about the following way to cache: Every cfoutput (and other html/js code) i

problem with images

2001-09-14 Thread Don Kiggins
I don't think that many people saw this since I sent it shortly before the tragedy on Tuesday, so I think I'll try once more. I'm creating an image using cfx_image and letting the user preview what the image looks like. Then if they want to make changes, I have a form on the page which allows th

RE: problem with images

2001-09-14 Thread James Maltby
Had a similar problem with cfx_graph recently - got round it by using a java ap instead, but did look into the problem - sometimes the server will "lock" a file/s in a queue - I created a tool that created a new "graph" based on variables then updated this as and when, but when you went back to ch

Highlighting search results

2001-09-14 Thread Michael Lugassy
I have a search query that uses verity to produce search results from a Product_desc field. Instead of Verity's summary field, I need to output portions of the Product_desc column. I want to output ONLY relevent sentences (the same as Google does), so a search for "nokia" or "cellular" or "phone"

RE: experience with cfm-resources

2001-09-14 Thread Martin Wright
Yes, I tried to set up a free account with them to evaluate their services so I could have a better look at CF. It has been impossible to upload to the site. They ignore all emails on this and other subjects. Their own Forum is full of similar experiences. I posted a note saying it was comme

RE: Duplicate and StructCopy

2001-09-14 Thread Raymond Camden
In the particular example I gave, the cf4 parser should choke on cfdump, even though it will never be called, it still causes the error. -Ray Actually, I stand corrected. It's not an issue even with Strict Validation turned off. If I do: I get the error anyway, even though CFRAY i

OT - UrlScan

2001-09-14 Thread Critter
greetings all please forgive me for emailing the list, but I figured since I got it from here..what the hell. if i type in http://cffreaks.org/ no pages load. and the logs say: URL contains extention '(null)', which is not specifically allowed.. Raw URL='/' I can not find where i

RE: Duplicate and StructCopy

2001-09-14 Thread Kola Oyedeji
Cheers Kola Oyedeji Web developer Macromedia Certified Advanced ColdFusion 5 Developer http://www.Alexandermark.com (+44)020-8429-7300 > -Original Message- > From: Raymond Camden [mailto:[EMAIL PROTECTED]] > Sent: 14 September 2001 13:12 > To: CF-Talk > Subject: RE: Duplicate and Struct

CFOUTPUT Challenge

2001-09-14 Thread Janine Jakim
I have what I consider an interesting problem. I need to send the results of 6 queries out to make one form. (report/pdf style). My main query- person demographic query works great and opens up the correct number of reports (1 report per person). However, the other 5 queries only give the infor

RE: REGEX to strip special characters

2001-09-14 Thread Steven Monaghan
Here's what I did... Steve - Steven Monaghan Oracle DBA MSC Industrial Direct Co., Inc. Melville, NY [EMAIL PROTECTED] http://www.mscdirect.com - -Original Message- From: Dick Applebaum [mailto:[EMAIL PROTECTED]] Sen

Re: online testing application

2001-09-14 Thread Alexis Maldonado
I've compleatly developed an online testing application using cold fusion only for the college i work for.. it has administrator / instructor / proctor parts. can do: true / false multiple choice fillin the blanks essays matching (uder dev) instructions it also uses SO-EDITOR for html formating a

Recall: REGEX to strip special characters

2001-09-14 Thread Steven Monaghan
Steven Monaghan would like to recall the message, "REGEX to strip special characters". This e-mail is intended for the use of the addressee(s) only and may contain privileged, confidential, or proprietary information that is exempt from disclosure under law. If you are not the intended recipient

RE: Left Outer Join Question

2001-09-14 Thread Glenn Olsen
Kamie, The results you are getting make perfect sense. The LEFT JOINS return NULL values where there is no match in the right-side table. COUNT is treating NULL as a value and incrementing your output column for each and every row. Instead of using COUNT, redo this using SUM with CASE statement

RE: online testing application

2001-09-14 Thread Gary P. McNeel, Jr.
We are developing one as well for handling surveys and testing. Regards, Gary P. McNeel, Jr. Executive Director - DAC-Net Rice University 713-348-6266 dacnet.rice.edu > -Original Message- > From: Alexis Maldonado [mailto:[EMAIL PROTECTED]] > Sent: Friday, September 14, 2001 8:10 AM > T

Re: Coldfusion & Advanced Queries and Output?

2001-09-14 Thread Deanna Schneider
This should be easy, since it looks like everything is coming from the same table. In this query, just add "area" to your select select dloadid, dltitle, dldate, area from downloads ORDER BY dldate DESC Then, in your output, add the link: http://testpages/downloadsmore.cfm?area=#latestdl.area

OT: Dreamweaver FTP

2001-09-14 Thread savan . thongvanh
has anyone had problems with the dreamweaver FTP client? if I open a file from the web server it makes a copy locally and i edit it. OK? OK. when i go to send it back up ftp says permission denied. BUT, if i "GET" the file first, edit it, THEN send it u it's ok. anyone seen this before? Thank

RE: CFOUTPUT Challenge

2001-09-14 Thread Greg Luce
Janine, I don't know if I understand your situation completely, but if your main CFOUTPUT returns a resultset of "customers", then you want 5 other queries regarding that customer, you can run those queries inside the main CFOUTPUT and loop over the results of each query. Something like th

CFIF Issue

2001-09-14 Thread Bruce Sorge
OK. I have the following code: Select User_Type From Users Where Auth_User = '#CGI.Auth_User#' #qGetUser.User_Type# SELECT bcon.AutoNumber, bcon.CERNER_Mnemonic, bcon.CERNER_Code FROM (Sections INNER JOIN UserSection ON Sections.Section_ID = Use

RE: Highlighting search results

2001-09-14 Thread Duane Boudreau
You could search based on the keyword nokia and cellular and then loop thru the query results treating the search text as a list delimited by ".". I would think to be quite processor intensive on a large search result. Duane -Original Message- From: Michael Lugassy [mailto:[EMAIL PROTECT

RE: CFOUTPUT Challenge

2001-09-14 Thread Stephen Rojas
what if you use cfloop instead of cfoutput to move through the queries? just an idea -Stephen -Original Message- From: Janine Jakim [mailto:[EMAIL PROTECTED]] Sent: Friday, September 14, 2001 8:41 AM To: CF-Talk Subject: CFOUTPUT Challenge I have what I consider an interesting problem.

RE: CFOUTPUT Challenge

2001-09-14 Thread Janine Jakim
Thanks- that works. I had all my queries listed together on a separate page- I hate when I make those basic mistakes However, this leads to another problem and I don't know if it's fixable. To test the solution I only added one other query (so there's four more to go) and it slowed the proces

RE: Dreamweaver FTP

2001-09-14 Thread Thomas Chiverton
Are you using check in/out ? > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: 14 September 2001 14:25 > To: CF-Talk > Subject: OT: Dreamweaver FTP > > > has anyone had problems with the dreamweaver FTP client? > > if I open a file from the web server it

RE: CFIF Issue

2001-09-14 Thread Matthew W Jones
try putting a trim around qGetUser.User_Type in the cfif, it is likely bringing a space(s) in your result -Original Message- From: Bruce Sorge [mailto:[EMAIL PROTECTED]] Sent: Friday, September 14, 2001 8:43 AM To: CF-Talk Subject: CFIF Issue OK. I have the following code: Selec

RE: CFIF Issue

2001-09-14 Thread Kola Oyedeji
first thing i would do is check for whitespace, some databases pad out certain type of fields,trim the value retreived from the db and see if it makes a difference. Kola Oyedeji Web developer Macromedia Certified Advanced ColdFusion 5 Developer http://www.Alexandermark.com (+44)020-8429-7300 >

RE: CFOUTPUT Challenge

2001-09-14 Thread Kola Oyedeji
> To test the solution I only added one other query (so there's > four more to > go) and it slowed the process down considerably Do you > see any way > around this? using stored procedures should improve the performance. Not sure if you can nest stored procedure calls, just a thought. Kola

Re: Left Outer Join Question

2001-09-14 Thread Kamie Curfman
Thank you very much for the code, Glenn, and the thought that went behind it. Unfortunately, the SUM approach is returning the exact same multiplier effect as COUNT was. Looks like I will have to break this out into individual queries. At least I learned something from your code (I had never use

RE: filled up a client var

2001-09-14 Thread Chris Norloff
Thanks. Yes, that's pretty much what's happening here. I think what we'll do is create a table to insert items one at a time, so we don't go over the 4000 character limit when the client variables are all inserted at once. thanks, Chris Norloff -- Original Message --

Re: CFIF Issue

2001-09-14 Thread Bruce Sorge
That worked. Thanks. - Original Message - From: "Matthew W Jones" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, September 14, 2001 8:54 AM Subject: RE: CFIF Issue > try putting a trim around qGetUser.User_Type in the cfif, it is likely > bringing a space(s) in your

RE: Dreamweaver FTP

2001-09-14 Thread Kevin Cundick
I've used Dreamweaver quite a bit and I have seen this before. When I experienced it, it was a UNIX permissions issue (we run Solaris). I had permission to edit the file but not to create a new file, which is what you'd be doing if you put the file up when it didn't already exist. Not sure if t

RE: CFOUTPUT Challenge

2001-09-14 Thread Greg Luce
Are you selecting only the columns that you need to display? If you select * and it's a large table it could take significantly longer than if you select just the columns you need to display. Are all the tables related? If so, what do you get if you join them all like this? SELECTo.name,

Cold Fusion and Rightfax

2001-09-14 Thread Kelly Matthews
Ok wrote a while ago about this. Can't use Protofax since we already own Right Fax. Looking for some assistance (willing to PAY) from anyone who might have used Cold Fusion to send a Fax to Right fax either thru the web or email. I can see how to do via email but it's not sending it properly for

RE: Dreamweaver FTP

2001-09-14 Thread savan . thongvanh
no, it's terribly annoying. it's trying to do a "STOR " and bombing out with a 553 ftp error, supposedly action aborted, invalid filename. But, when I try the SAME command in another FTP client it goes just fine... Thomas Chiverton <[EMAIL PROTECTED]> on 09/14/2001 08:53:23 AM Please respon

RE: online testing application

2001-09-14 Thread Steve Drucker
You might also want to check out SurveyMaster -- http://www.cfugorama.com/cfugorama/codelibrary/SurveyMaster.cfm Regards, Steve Drucker CEO Fig Leaf Software -Original Message- From: Gary P. McNeel, Jr. [mailto:[EMAIL PROTECTED]] Sent: Friday, September 14, 2001 9:12 AM To: CF-Talk Sub

RE: Left Outer Join Question

2001-09-14 Thread Leon Oosterwijk
Kamie, If you do have to break this out, you might want to concider using UNION ALL This was you could encapsulate your (big) query in either a view or a single Cold Fusion query. It works like this: SELECT count(*) AS num FROM a WHERE a.id = x UNION ALL Select count(*) AS num FROM b WHERE

Cowards

2001-09-14 Thread Mark Smyth
It just makes me angry. We've been going forwards and backwards over this now for days, maybe they have a valid grievance, maybe they don't. Maybe by training bin laden to be a terrorist, it is some kind of warped retribution, who knows. But when push comes to shove we're missing the point. Hi

RE: Cold Fusion and Rightfax

2001-09-14 Thread Neil Clark
Try and see if www.cfcomet.com has anything ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/

RE: filled up a client var

2001-09-14 Thread cf refactoring
On a previous project, one of the developers wrote a script to cut up the serialized client variables into 4K chunks, and then put them back together when he pulled them out of the database. Of course, he had to forego the use of CF's client variables. --- Chris Norloff <[EMAIL PROTECTED]> wrote:

RE: Cowards

2001-09-14 Thread Mark Smyth
so angry posted it to the wrong list -Original Message- From: Mark Smyth Sent: 14 September 2001 16:14 To: CF-Talk Subject: Cowards It just makes me angry. We've been going forwards and backwards over this now for days, maybe they have a valid grievance, maybe they don't. Maybe by tr

Mystery:Code dissappears/changes on Unix Server

2001-09-14 Thread Carol Bluestein
Hi all. We have been experiencing code problems on our Unix server. Pages that are working on day 1 are NOT working on day 2. It is NOT multiple developers hitting the same code at the same time as far as we can track. It is NOT that changes are not being received by the server, we can see the

RE: Cold Fusion Studio 5.0 beta

2001-09-14 Thread Peter Tilbrook
For a start it is no longer a "beta" product. It has made RC1 and it rocks! NDA prevents me from divulging any further info however. I don't see anything either... I do see a post in the forums that says "There are currently no public betas available at this time." Different levels of access may

RE: Cold Fusion and Rightfax

2001-09-14 Thread Kelly Matthews
Nope, not a thing. But thanks for the suggestion -Original Message- From: Neil Clark [mailto:[EMAIL PROTECTED]] Sent: Friday, September 14, 2001 11:17 AM To: CF-Talk Subject: RE: Cold Fusion and Rightfax Try and see if www.cfcomet.com has anything ~

RE: Mystery:Code dissappears/changes on Unix Server

2001-09-14 Thread Carlisle, Eric
More information is probably needed to make any good suggestion. Senarios? Error messages? Examples? :) EC -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, September 14, 2001 11:04 AM To: CF-Talk Subject: Mystery:Code dissappears/changes on Unix

RE: Application security

2001-09-14 Thread Shawn Grover
We use a Security structure like this: SecLevel.Admin = 1 SecLevel.Update = 2 SecLevel.Public = 3 The Higher access being the lowest number, so that any revisions to the security would be higher numbers. Then we can do a numeric comparison for access. Next, we store the user's access level as

cf5.0 The page cannot be displayed

2001-09-14 Thread John McCosker
With coldfusion server 5.0 we have found that it seems to take forever to load requested pages sometimes, then eventually we get The page cannot be displayed The page you are looking for is currently unavailable. The Web site might be experiencing technical difficulties, or you may need to adj

Re: Application security

2001-09-14 Thread Joseph Thompson
http://www.cfhub.com/discussion/viewmessages.cfm?Forum=11&Topic=1534 http://cfhub.com/discussion/viewmessages.cfm?Forum=11&Topic=1553 My latest project required a "group" style of permissions management so I looked into BitMasks. Very interesting stuff... The "production" code isn't finished, bu

SQL Server Question

2001-09-14 Thread Tangorre, Michael T.
Hi everyone, Can someone point me in a direction to a good resource on chosing the correct data types in SQL 2K. I am new to building DBs and could use some help fiiguring out which data type i need and why I need as apposed to others. Thanks Mike Take ti

RE: Create Excel document

2001-09-14 Thread JSchlosser
I would be interested in knowing why they have placed this restriction on you. JoAnn A. Schlosser Senior Consultant Association Management Software Grant Thornton LLP Washington, D. C. 703.837.4428 -Original Message- From: zap005 [mailto:[EMAIL PROTECTED]] Sent: Monday, September 10, 2

RE: SQL Server Question

2001-09-14 Thread Won Lee
As a general rule... use what is neccessary to store as little as possible. Storage space is really not a factor with the low disk space, but you really don't want to be upgrading your system all the time. That means not storing data multiple times etc etc. -Original Message- From: Tang

Re: Mystery:Code dissappears/changes on Unix Server

2001-09-14 Thread P Broussard
It sounds like something I had to deal with. I would work all day, upload code, it would work and I would move on. Then the next day the code would stop working. I would look at it and it would be something other than the finial upload. I would upload the page again and it would be fine. We were

CF to Word to Email to Fax

2001-09-14 Thread Paul Sinclair
I've got a process for sending out a dynamically generated email newsletter to subscribers on a twice-a-month schedule. Some of the subscribers would prefer to receive it via fax. I've got an email-to-fax gateway program that will fax out a Word format document, but I can't figure out how to conve

RE: SQL Server Question

2001-09-14 Thread Tangorre, Michael T.
I am ok with that idea..what I don't know is exactly what datatype to use, or what they all mean.. I am in search of a resource that explains the data types a little. Mike -Original Message- From: Won Lee [mailto:[EMAIL PROTECTED]] Sent: Friday, September 14, 2001 12:28 PM To: CF-Talk Su

RE: OT .NET: ActiveX in Disguise? FUD alert

2001-09-14 Thread Brunt, Michael
Just a footnote, that page is no longer there!! Kind Regards - Mike Brunt -Original Message- From: Jeffry Houser [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 13, 2001 8:54 PM To: CF-Talk Subject: RE: OT .NET: ActiveX in Disguise? FUD alert Fear, Uncertainty, and doubt . At

RE: SQL Server Question

2001-09-14 Thread Greg Luce
Mike, Are you using Enterprise Manager? If so, use the help. It's great. My ICQ number is 14078322 if you have any specific questions. Greg Luce 954-763-4504 -Original Message- From: Tangorre, Michael T. [mailto:[EMAIL PROTECTED]] Sent: Friday, September 14, 2001 12:36 PM To: C

Need Reliable CF Server Host

2001-09-14 Thread Nick Baker
First I apologize if this is a little off topic, but we need "reliable" CF Server that host provides technical support. We need access to a Control Panel where we can perform all domain and datasource setups with going through the host service. Prefer a dedicated server, but that is not an abs

RE: SQL Server Question

2001-09-14 Thread Won Lee
You can check out http://manuals.sybase.com/onlinebooks/group-as/srg1100e/sqlref/@ebt-link;pt= 66?target=%25N%14_9370_START_RESTART_N%25 This is the manual for the sybase server, but it should be close enough. If you want to go out an buy a book I suggest the Oreiley books. I have been impresse

RE: OT .NET: ActiveX in Disguise? FUD alert

2001-09-14 Thread Kwang Suh
Yes, it is there. I just viewed it. Did you put the URL back together? --- "Brunt, Michael" <[EMAIL PROTECTED]> wrote: > Just a footnote, that page is no longer there!! > > Kind Regards - Mike Brunt > > -Original Message- > From: Jeffry Houser [mailto:[EMAIL PROTECTED]] > Sent: Thursd

RE: Need Reliable CF Server Host

2001-09-14 Thread Robert Forsyth
try www.pennyhost.com ... they have dedicated NT/Linux boxes starting at $99 / month HTH -Original Message- From: Nick Baker [mailto:[EMAIL PROTECTED]] Sent: Friday, September 14, 2001 1:08 PM To: CF-Talk Subject: Need Reliable CF Server Host First I apologize if this is a little off t

RE: OT .NET: ActiveX in Disguise? FUD alert

2001-09-14 Thread Brunt, Michael
In one word NO. I just found out that I am both an idiot and a conspiracy theorist, apologies to everyone. Kind Regards _ MIke Brunt -Original Message- From: Kwang Suh [mailto:[EMAIL PROTECTED]] Sent: Friday, September 14, 2001 10:18 AM To: CF-Talk Subject: RE: OT .NET: ActiveX in Disgu

Re: OT - UrlScan

2001-09-14 Thread Matt Robertson
So far I've had no problems with it. Maybe there's a problem hiding in how you define your default doc? Using NT or win2k? Both the test box and the live one I use it on are Win2k running 4.5.1, and neither had any problems. An earlier note here mentioned trouble on an NT box. --Matt-- -

Uses of CFContent??

2001-09-14 Thread Koo Pai Lao
hey guys, I always wanted to use this tag, but whata re the uses of it other than displaying a text file on a page, which can be done using the CFFILE tag using the WRITE action anyways? hehehehehe :) ~~ Get the mailserver that powers this list

Re: Need Reliable CF Server Host

2001-09-14 Thread John Patterson
Try ATSWebnet.com. They are very responsive! John - Original Message - From: "Nick Baker" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, September 14, 2001 1:08 PM Subject: Need Reliable CF Server Host > First I apologize if this is a little off topic, but we need

RE: Uses of CFContent??

2001-09-14 Thread Dave Watts
> hey guys, I always wanted to use this tag, but what are the > uses of it other than displaying a text file on a page, which > can be done using the CFFILE tag using the WRITE action anyways? It's used to send back non-HTML content to the browser, whether that content is dynamically generated

Re[2]: OT - UrlScan

2001-09-14 Thread Critter
Hello Matt, don't even think it's a CF prob... since it fails to dish up the default "index.htm" as well. As soon as I unload the dll, everything works fine. (Win2k) -- Critter, MMCP Certified ColdFusion Developer Crit[s2k] - --- Friday, Septembe

Re: Uses of CFContent??

2001-09-14 Thread John Quarto-vonTivadar
well one example would be to serve up any content of type that is not the default (which is text/txt and/or text/html). so if you used it to serve up PDF content, then if they had a PDF viewer installed it would start up the viewer automatically (you've seen that before for example when you brows

Re: Uses of CFContent??

2001-09-14 Thread John Quarto-vonTivadar
> On an unrelated note, it strikes me as odd that you want to use a tag for > the sake of using a tag. You'll have better success as a programmer to > instead focus on solving specific problems, using whatever tags are > necessary to do so. I agree with Dave. you need "the right tool for the righ

Re: Need Reliable CF Server Host

2001-09-14 Thread Jeffry Houser
He asked for someone reliable, though. I have a 'developer' account with Atswebnet. Server routinely goes down and stays down for 4-6 hours at a time. Although, Robert often addresses the issues I send him emails on, it is only about half the time he emails me back to tell me the issue ha

Re: Uses of CFContent??

2001-09-14 Thread Owen Leonard
> > On an unrelated note, it strikes me as odd that you want to use a tag for > > the sake of using a tag. > > I agree with Dave. you need "the right tool for the right job" , not "the > right job for the right tool" Sometimes it's not until we become adept at using a tool that we discover that w

RE: Uses of CFContent??

2001-09-14 Thread Dave Watts
> > > On an unrelated note, it strikes me as odd that you want > > > to use a tag for the sake of using a tag. > > > > I agree with Dave. you need "the right tool for the right > > job", not "the right job for the right tool" > > Sometimes it's not until we become adept at using a tool that >

Re: Need Reliable CF Server Host

2001-09-14 Thread Clint Tredway
I also have a developer account with ATS that has only been down twice. I have used other hosts(halfpricehosting and others) that are not as reliable. My 2cents... -- Original Message -- from: Jeffry Houser <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED]

Re: Need Reliable CF Server Host

2001-09-14 Thread Jim McAtee
So what happened to Shanje? Weren't they hosting thousands of domains? Jim - Original Message - From: "Nick Baker" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, September 14, 2001 11:08 AM Subject: Need Reliable CF Server Host > First I apologize if this is a li

RE: Uses of CFContent??

2001-09-14 Thread JSchlosser
I'll bet he's heard of PDFs and PowerPoints, Dave. I like it because I can put up a page without allowing someone to bookmark it. JoAnn A. Schlosser Senior Consultant Association Management Software Grant Thornton LLP Washington, D. C. 703.837.4428 -Original Message- From: Dave Watts

Re: Need Reliable CF Server Host

2001-09-14 Thread Nick Baker
We have been experiencing some email sent to Shanje hosting accounts bouncing back as undeliverable to the original sender. That one is hard to say for sure if the problem is at Shanje. The immediate problem is when we setup a new domain name using the Shanje Web control panel it points to a S

Re: Uses of CFContent??

2001-09-14 Thread Kwang Suh
It is useful if you want to return something like an image from a database, as you can use CFCONTENT to tell the browser that it's an image being shown. It's also useful for transporting data via a gif. --- Koo Pai Lao <[EMAIL PROTECTED]> wrote: > hey guys, I always wanted to use this tag, but w

CF Admin + Active Directory

2001-09-14 Thread Tony Gruen
Has anyone had trouble accessing the CF Admin after moving to Active Directory or changing a domain name in Active Directory? We have moved to Active Directory without trouble but one machine has had the Active Directory domain name changed and now we cannot access the CF Admin at all. Perplexed

RE: Uses of CFContent??

2001-09-14 Thread Joshua Miller
Amen, there's nothing wrong with asking a question just for the sake of knowing the answer. "Perhaps, but I think I'd be hard pressed to explain the proper use of a screwdriver to one who'd never seen or heard of a screw. Adeptness with a tool requires facing and understanding the challenges that

RE: Uses of CFContent??

2001-09-14 Thread JSchlosser
Kinda makes me afraid to ask about tags I have never used, even Ben Forta had to learn it somewhere. From reading things on this list, I know there are ways to do things that I have never done before. While I always use my books and colleagues first, I wonder if we are supposed to ask questions

Chicago CFUG Rescheduled

2001-09-14 Thread Steve Drucker
Monday 09/17/2001 - SPECIAL DATE Holiday Inn Chicago City Centre, 300 East Ohio Street Chicago, IL 60611 6:30-9:30 p.m. Scheduled Topics: Introduction to XML By David T. Watts, CTO, Fig Leaf Software (Presented by Steve Drucker) Join Dave as he explains XML in laymans terms and then proceeds

RE: Uses of CFContent? (warning: long & boring)

2001-09-14 Thread Dave Watts
> Amen, there's nothing wrong with asking a question just for > the sake of knowing the answer. Not to be argumentative, but I never said there was anything wrong with that. Well, I guess I will be argumentative. In fact, I was happy to provide a brief explanation of what you use CFCONTENT for.

RE: CF Admin + Active Directory

2001-09-14 Thread Dave Watts
> Has anyone had trouble accessing the CF Admin after moving > to Active Directory or changing a domain name in Active Directory? > > We have moved to Active Directory without trouble but one > machine has had the Active Directory domain name changed and > now we cannot access the CF Admin at

RE: Uses of CFContent??

2001-09-14 Thread Paris Lundis
yeah scary. I have seen CFCONTENT used for protected pay type content... and for other filetypes to be handled... nothing else very fun... continue asking those questions... [finding the future in the past, passing the future in the present] [connecting people, places and things] -Origi

RE: Uses of CFContent??

2001-09-14 Thread JSchlosser
Thanks. I am the Queen of Dumb Questions - I guess that's why so many of mine get no response. JoAnn A. Schlosser Senior Consultant Association Management Software Grant Thornton LLP Washington, D. C. 703.837.4428 -Original Message- From: Paris Lundis [mailto:[EMAIL PROTECTED]] Sent:

CF5 & CFMAIL OR CFQUERY

2001-09-14 Thread Tracy Bost
Coldfusion sent out an email to a completely different email address than it was supposed to. It definitely seems like some sort of logic problem or sql statement problem, but I have gone through the code over & over and even set up a testing environment with the exact same code and database dat

RE: Uses of CFContent? (warning: long & boring)

2001-09-14 Thread Joshua Miller
"By your logic, it would be perfectly acceptable for someone to learn CF by simply asking one question on this list about each tag and function, I suppose. I'd further suppose, after that, that this person would be a good CF programmer, right?" Actually, I didn't say anything even remotely simila

CFMAIL question

2001-09-14 Thread Joshua Miller
Ok, I have a few addresses in the CC: of a cfmail tag, here's the exact code: http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=list

RE: Uses of CFContent? (warning: long & boring)

2001-09-14 Thread Dave Watts
> ... Yes, you did answer his question, and perhaps your closing > remarks were misconstrued, it just seems like a lot of help > comes with the baggage of belittlement in this (and most > programming-related) lists. A small price to pay, I suppose, > for the value of the knowledge. > > Nothin

New custom tag

2001-09-14 Thread Bud
Howdy all. I've created a new custom tag and would like to get some feedback on it before I put it in the gallery. I call it cf_recordcount and what it does is let you use next 'n records when using a query driven cfoutput with a group attribute. As I'm sure you are aware, if you try and outpu

ok, OT JS question

2001-09-14 Thread Kevin Mansel
is there a way to decorate the text within the confirm function, like bold it or color it? thanks, kev ~ Kevin Mansel Senior Web Developer Fox Communications [EMAIL PROTECTED] DL : 425-649-1321 C : 425-346-7221 ~~ Your ad could be

Re: Need Reliable CF Server Host

2001-09-14 Thread Jeffry Houser
CFXHosting is the CFM arm of halfpricehosting. I never had a problem w/ them. Of course, all the 'terms and conditions' I had seen clearly stated no development on their shared servers. So, unless you had a dedicated server... At 02:38 PM 09/14/2001 -0400, you wrote: >I also have a devel

Weekending

2001-09-14 Thread Joshua Tipton
I have a form that submits a date. I want the page that it submits the date to be able to pull the weekending date. Can anyone help. Joshua Tipton ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetpro

Webreview.com article and poll

2001-09-14 Thread Jon Hall
A new webreview.com article and poll today that talks about CF among others. Comparison of server side languages: http://newsletter.webreview.com/cgi-bin4/flo?y=hEbV0BZVla0Pg0SIi0AV ..and a poll on which server side language you use. Let's get CF to number one! http://www.webreview.com/polls/20

Re: Weekending

2001-09-14 Thread Jim McAtee
If you're looking for the date that Saturday falls on: The date Friday falls on: Jim - Original Message - From: "Joshua Tipton" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, September 14, 2001 7:20 PM Subject: Weekending > I have a form that submits a date.

Re: CFMAIL question

2001-09-14 Thread Kamie Curfman
Have you tried separating the addresses with commas instead of semicolons? Is the email getting to both [EMAIL PROTECTED] and [EMAIL PROTECTED] or just the latter? Kamie Joshua Miller wrote: > Ok, I have a few addresses in the CC: of a cfmail tag, here's the exact > code: > > cc=

RE: Uses of CFContent??

2001-09-14 Thread Michael Wilson
Just explain the screw first... Mike > -Original Message- > Perhaps, but I think I'd be hard pressed to explain the > proper use of a screwdriver to one who'd never seen or heard > of a screw. Adeptness with a tool requires facing and > understanding the challenges that the tool is d

Query Caching?

2001-09-14 Thread Andrew Scott
Quick question! When using the cachedwithin parameter of the cfquery, can someone remind me is this cached per client or by application? It has escaped me, if it was cached for everyone or not. Regards, Andrew Scott ~~ Your ad could be here. Moni