Re: Web based editor

2002-02-18 Thread Ian Vaughan
How do Siteobjects get the feature 'MS Word' Spell Check to work? Does th e client need to have MS Word installed on their pc? if so how is it referenced, through the Microsoft DOM ? As if my memory serves me write these editors are based on the Microsoft DHTML Edit Control,

OT - Freaking IE 6

2002-02-18 Thread Bud
Has anyone else noticed that in IE 6 table cells no longer default to align=left? If you don't specify the horizontal alignment it takes on the property of whatever block of code it's in. If the table is in div align=center, the cells are centered. If the table is nested in another table, all

RE: OT - Freaking IE 6

2002-02-18 Thread Kevan . Windle
I've got IE6 and Example 1 does center, but example 2 aligns left. No probs using thier website either. -Original Message- From: Bud [mailto:[EMAIL PROTECTED]] Sent: 18 February 2002 12:24 To: CF-Talk Subject: OT - Freaking IE 6 Has anyone else noticed that in IE 6 table cells no

Re: OT: SQL indexing

2002-02-18 Thread cf refactoring
--- Jeff Beer [EMAIL PROTECTED] wrote: Is there any benefit to indexing a tinyint field that is used as a boolean (either 1 or 0)? I have four fields that work this way and I use them heavily in queries for reporting. They are used in aggregate functions (count and sum) as well as in the

RE: OT - Freaking IE 6

2002-02-18 Thread Andrew Scott
Are you on drugs or something these are all valid options... Example 1: This is perfectly normal, try div align=centerTest/div anything between these tags will be centered. Example 2: The table should take on the properties of the cell, the same if it was just text you would expect that to be

RE: OT - Freaking IE 6

2002-02-18 Thread Andrew Scott
Actually I'll take example two back, that shouldn't happen unless there is a style sheet wrapped for it:-) I use Ie6.0 and MS website has no problems by the way. -Original Message- From: Bud [mailto:[EMAIL PROTECTED]] Sent: Monday, 18 February 2002 11:24 PM To: CF-Talk Subject: OT -

Re: OT - Freaking IE 6

2002-02-18 Thread Jon Hall
Bud, this is actually a case of Microsoft fixing a bug. Content in td's should inherit alignment from outer elements. At least that's what the W3C says... http://www.w3.org/TR/html4/struct/tables.html#h-11.3.2.1 Apparently you should be able to set the alignment on the first cell in the span

Re: OT - Freaking IE 6

2002-02-18 Thread Gyrus
Has anyone else noticed that in IE 6 table cells no longer default to align=left? If you don't specify the horizontal alignment it takes on the property of whatever block of code it's in. This might help: http://evolt.org/article/Does_IE_6_Center_Your_Table_Content/17/15341/in dex.html -

RE: OT - Freaking IE 6

2002-02-18 Thread Bud
On 2/18/02, Andrew Scott penned: Are you on drugs or something these are all valid options... Maybe, but what's that got to do with anything. :) Example 1: This is perfectly normal, try div align=centerTest/div anything between these tags will be centered. Yes, of course. And a table between

Re: OT - Freaking IE 6

2002-02-18 Thread Bud
On 2/18/02, Jon Hall penned: Bud, this is actually a case of Microsoft fixing a bug. Content in td's should inherit alignment from outer elements. At least that's what the W3C says... http://www.w3.org/TR/html4/struct/tables.html#h-11.3.2.1 Apparently you should be able to set the alignment on

RE: OT - Freaking IE 6

2002-02-18 Thread Andrew Scott
See my next post, for the back step... It wasn't till I posted the email that it clicked to me that it was the td cell inside the div tag and not the table itself. Sorry for that:-) -Original Message- From: Bud [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 19 February 2002 1:02 AM To:

Re: OT - Freaking IE 6

2002-02-18 Thread Jon Hall
The alignment of cell contents can be specified on a cell by cell basis, or inherited from enclosing elements, such as the row, column or the table itself. To me, enclosing elements are enclosing elements. Not just table, tr, or td tags, and that's apparently the way the IE developers read it

Re: OT - Freaking IE 6

2002-02-18 Thread Bud
On 2/18/02, Gyrus penned: This might help: http://evolt.org/article/Does_IE_6_Center_Your_Table_Content/17/15341/in dex.html That helps tremendously. :) It also probably explains why it's rendering different for different people. I guess it depends upon what DocType they have in whatever

Problems with CFGridUpdate

2002-02-18 Thread Chris Bohill
I am having some trouble with CFGridUpdate, and was wondering if anyone had come across this error message. Grid GeneralDetails not found. The Grid GeneralDetails must be a control on the submitted form Below is the code that I am using to update the table I have in the Database. My grid is

OT - printing across a network, but the output disappears

2002-02-18 Thread Matthew R. Small
Hi everybody, I have a CF application that prints reports via a Word COM object to one of four printers located on the network. I have successfully set up all four printers on the server, from which I can print test pages and print documents created manually without problem. One of the

RE: Problems with CFGridUpdate

2002-02-18 Thread James Maltby
This may not be a helpful answer but my advice would be to not use CFGID at all, it has always been flaky at the best of times and has always had problems with vars like date/time functions. Best to create a table version of what you want to do and use SPs on the server instead. J

Verity 97 (CF4.5) vs Verity K2 (CF 5)

2002-02-18 Thread chris.alvarado
good morning all, We have been having issues with the speed of our various verity collections, both searching against and re-indexing. I was wondering if anyone has seen any noticeable improvements with moving to CF 5 and the K2 engine? ALSO, when reindexing (if files are added / deleted)

RE: Verity 97 (CF4.5) vs Verity K2 (CF 5)

2002-02-18 Thread Garza, Jeff
Significant inprovements. Using K2 offloads the processing out of ColdFusion... It's faster (usually at leat 2x faster sometimes much more depending on the size of the collection) at least in our tests (Win2k/NT) When using K2 what I've found is that when the collection is refreshed or

OT: Setting up IIS to parse domain name?

2002-02-18 Thread Reed Powell
Well, we're trying to move into the 20th century finally, by moving our shared Intranet CF/webserver box from NT4 and WebsitePro to Win2K and IIS. I'd like to try and make it a better world for the users as well, but I'm stumped. On the NT4/WebsitePro server we have each site setup as a virtual

RE: Verity 97 (CF4.5) vs Verity K2 (CF 5)

2002-02-18 Thread Kevan . Windle
Not a direct answer but if you're on NT worth thinking about switching to MS indexing, we've found it much more reliable, easier to use and you don't have to re-index, it handles all that itself once you've set it up. IIS even gives you a sample asp search and results page. -Original

cfmail within a custom tag being run twice

2002-02-18 Thread Stephen Adams
Hi everyone, I am having a problem with a custom tag I have written that sends out an email every time an error occurrs. The problem is that I always get two emails sent for one error. I am using a close tag to call the custom tag, other than that I can't see why the tag would be run twice.

Dynamic Images Using Coldfusion

2002-02-18 Thread Ian Vaughan
Hi I have the following script that changes an imagemap for each day of the week, however I would like it to change twice a day once in the morning from midnight to twelve noon, and from twelve noon to twelve midnight. How can this be built into the script ? any ideas would be most appreciated,

RE: Setting up IIS to parse domain name?

2002-02-18 Thread Tyler M. Fitch
Hi Reed, Sounds like you're going to want to run multiple websites, not just virtual directories. You say Win2K, as long as it is not Pro you'll be fine. In the IIS administrator you'll want to add a new web site. In the second page of the new website configuration process you'll be asked for

RE: Setting up IIS to parse domain name?

2002-02-18 Thread Christopher Olive
you're looking for host headers, i believe. go to the propertied of your website, pick Advanced on the Website tab. under Multiple Identities, add a new one, and use a host header for each virtual site you want to use, as in the THISAPP.BLAH.BLAH.BLAH from your example. christopher olive, cto,

RE: Setting up IIS to parse domain name?

2002-02-18 Thread Rick Eidson
Remove the default blank Host header also the All Unassigned. Rick -Original Message- From: Tyler M. Fitch [mailto:[EMAIL PROTECTED]] Sent: Monday, February 18, 2002 10:28 AM To: CF-Talk Subject: RE: Setting up IIS to parse domain name? Hi Reed, Sounds like you're going to want to

RE: cfmail within a custom tag being run twice

2002-02-18 Thread Pascal Peters
That's probably why. Do you use conditional statements with thistag. executionmode? If it is a simple CT enclose the code with cfif Thistag.executionmode IS start ... /cfif -Original Message- From: Stephen Adams [mailto:[EMAIL PROTECTED]] Sent: maandag 18 februari 2002 17:23 To:

RE: Dynamic Images Using Coldfusion

2002-02-18 Thread James Curran
Try this: cfset incFile=/includes/dynamicimages/#Lcase(DayOfWeekAsString(DatePart(d,now() )))#.cfm - j -Original Message- From: Ian Vaughan [mailto:[EMAIL PROTECTED]] Sent: Monday, February 18, 2002 11:26 AM To: CF-Talk Subject: Dynamic Images Using Coldfusion Hi I have the

RE: NOCOUNT question

2002-02-18 Thread Tom Nunamaker
This is from SQL server 2000 Books Online about NOCOUNT. In serveral SQL server programming books I have, they all recommend setting NOCOUNT ON. One book I have mentioned the SET NOCOUNT ON can cause problems with Access, so you should limit its use to SQL server. Tom Nunamaker

Re: NOCOUNT question

2002-02-18 Thread Paul Hastings
the effect that this approach might provide a very slight performance advantage in high-traffic environments, I really couldn't find any other reason to explain why some CF coders routinely use this approach. because it tells sql server NOT to return row count data, it saves trips from the

RE: cfmail within a custom tag being run twice

2002-02-18 Thread Ryan Edgar
Stephen, Use the ThisTag.ExecutionMode variable to check whether you are at the start or end of a custom tag pair. E.g. cfif ThisTag.ExecutionMode IS start Some code here. cfelseif ThisTag.ExecutionMode IS end Other Code here. /cfif If it's unimportant in your case

Answer to my own NOCOUNT question

2002-02-18 Thread Lawrence B. Afrin, M.D.
Howdy, folks -- Sorry for the public display of brain damage via my NOCOUNT question posting of a few minutes ago. I now realize that SET NOCOUNT ON must precede an INSERT that's followed by a SELECT or else the N records affected message that comes back from the INSERT screws up CF's ability

RE: Dynamic Images Using Coldfusion

2002-02-18 Thread James Curran
Forgot about the twice-a-day part. And screwed up the function: Try This: cfset incFile=/includes/dynamicimages/#Lcase(DayOfWeekAsString(DateOfWeek(now() )))#_#iif(DatePart(h,now()) ge 12,De(eve),De(morn))#.cfm Just name your files: monday_morn.cfm monday_eve.cfm tuesday_morn.cfm etc. - j

OT: JavaScript - Hiding Rows Based on select

2002-02-18 Thread Martin Sutton
Dear all, I have a select which allows the user to choose the type of report they want to see. Each report may have different criteria, for example, an age/sex report will need different parameters to an orders report. I wish to have JavaScript hide and display form elements as necessary in

Does this lock look right?

2002-02-18 Thread Phillip Broussard
cflock timeout=120 throwontimeout=No type=EXCLUSIVE cfquery name=remove_content datasource=#application.datasource# delete from builder where buildtime '#cleardate#' /cfquery /cflock I just want to make sure nobody triggers this once it has started. Thanks Phillip Broussard

RE: Does this lock look right?

2002-02-18 Thread Garza, Jeff
I think you have to give it a name. Otherwise how will CF know which lock not to disturb? Jeff Garza Lead Developer/Webmaster Spectrum Astro, Inc. 480.892.8200 [EMAIL PROTECTED] http://www.spectrumastro.com -Original Message- From: Phillip Broussard [mailto:[EMAIL PROTECTED]] Sent:

Re: Does this lock look right?

2002-02-18 Thread Bud
On 2/18/02, Phillip Broussard penned: cflock timeout=120 throwontimeout=No type=EXCLUSIVE cfquery name=remove_content datasource=#application.datasource# delete from builder where buildtime '#cleardate#' /cfquery /cflock I just want to make sure nobody triggers this once it has

Re: Does this lock look right?

2002-02-18 Thread Jochem van Dieten
Quoting Phillip Broussard [EMAIL PROTECTED]: cflock timeout=120 throwontimeout=No type=EXCLUSIVE cfquery name=remove_content datasource=#application.datasource# delete from builder where buildtime '#cleardate#' /cfquery /cflock You need to supply a NAME or a SCOPE

Re: Does this lock look right?

2002-02-18 Thread Douglas Brown
You can just use NAME=#session.sessionID# if you like. Doug Brown - Original Message - From: Garza, Jeff [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, February 18, 2002 8:52 AM Subject: RE: Does this lock look right? I think you have to give it a name.

Re: Does this lock look right?

2002-02-18 Thread Stephen Moretti
cflock timeout=120 throwontimeout=No type=EXCLUSIVE cfquery name=remove_content datasource=#application.datasource# delete from builder where buildtime '#cleardate#' /cfquery /cflock I just want to make sure nobody triggers this once it has started. What do you want to lock? The use

RE: Does this lock look right?

2002-02-18 Thread Phillip Broussard
I knew I forgot something. What is the best way to lock when it is load balanced on two servers? -Original Message- From: Garza, Jeff [mailto:[EMAIL PROTECTED]] Sent: Monday, February 18, 2002 10:53 AM To: CF-Talk Subject: RE: Does this lock look right? I think you have to

Re: Does this lock look right?

2002-02-18 Thread Douglas Brown
Never mind that last comment..didnt realize it was an application lock duh There are two major products that come out of Berkeley: LSD and [Unix] BSD. We don't believe this to be a coincidence. Doug Brown - Original Message - From: Stephen Moretti [EMAIL PROTECTED] To:

RE: Does this lock look right?

2002-02-18 Thread Rich Wild
try looking in the cf-talk mailing list archives? I found this: http://www.mail-archive.com/cf-talk@houseoffusion.com/msg69138.html -Original Message- From: Stephen Moretti [mailto:[EMAIL PROTECTED]] Sent: 18 February 2002 17:07 To: CF-Talk Subject: Re: Does this lock look right?

RE: Does this lock look right?

2002-02-18 Thread Garza, Jeff
Now your best bet might just be to lock it on the database... Wrap it up in a stored proc and manually set the transaction isolation level... This is from the SQL Server BOL ... SET TRANSACTION ISOLATION LEVEL { READ COMMITTED | READ UNCOMMITTED | REPEATABLE READ |

RE: Does this lock look right?

2002-02-18 Thread Rich Wild
oops, wrong list, wrong thread. ;@) -Original Message- From: Rich Wild [mailto:[EMAIL PROTECTED]] Sent: 18 February 2002 17:15 To: CF-Talk Subject: RE: Does this lock look right? try looking in the cf-talk mailing list archives? I found this:

Re: Does this lock look right?

2002-02-18 Thread Stephen Moretti
Never mind that last comment..didnt realize it was an application lock duh heh heh... Plus its deprecated by the use of the SCOPE attribute and is also self-defeating, in that you would need to use a lock around the reference to session.sessionid in order to use it in the lock name.

RGB / HEX color

2002-02-18 Thread chris.alvarado
working on something and I need to figure out a way to convert a list of RGB color values to the web-hex value. does anyone know of a site or some kind of reference that shows some conversion equation or something? I need to do this programmatically instead of figuring them all out manually.

RE: RGB / HEX color

2002-02-18 Thread James Curran
Can you send an example of your RGB color value items in your list? - j -Original Message- From: chris.alvarado [mailto:[EMAIL PROTECTED]] Sent: Monday, February 18, 2002 12:39 PM To: CF-Talk Subject: RGB / HEX color working on something and I need to figure out a way to convert a

Re: RGB / HEX color

2002-02-18 Thread Critz
oi chris.alvarado!! i'm pretty sure there is something floating round at cflib.org -- Critz Certified ColdFusion Developer Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion - Monday, February 18, 2002, 12:38:36 PM, you wrote: ca working on

Montana CFUG Meeting

2002-02-18 Thread Jason Larson
The Brand New Montana Cold Fusion User Group will be meeting this Thursday for those who are interested: Montana CFUG February Meeting February 21st 7:00 PM University of Montana University Center Room 224 Agenda: - Using SQL: The In's and Out's of writing SQL Statements - CF Security:

RE: Does this lock look right?

2002-02-18 Thread Phillip Broussard
So would this be correct? cfquery name=get_count datasource=#application.datasource# select * from builder where buildtime '#cleardate#' /cfquery cfif get_count.RecordCount gt 100 cftransaction action=BEGIN cfquery name=get_content datasource=#application.datasource# delete

Problems with a list

2002-02-18 Thread Development Team
I am having trouble figuring this out. I am having problems sorting with a query returning list values. Say my query returns these values from my table (actually list values with a semicolon as a delimiter). The list is stored as plain text in one field that would be queried. 1234;1234;1234;1

Current URL?

2002-02-18 Thread Cornillon, Matthieu
Hi, everyone. I feel silly for asking such a simple question, but I can't find the definitive answer. Is there a sure-fire way to pull the URL of the currently displayed page? I can hack it out using CGI variables, but I was thinking that there is probably a CF reserved variable that I'm just

A couple questions for you guys

2002-02-18 Thread Joel Blanchette
Hello All, I have a couple questions for you guys. I am setting up a stats system for a couple doamins we own. Now the first question: If I grab the domain name (CGI.Server_Name) I need to put this in all lower case. Not a prob;em with Lcase. But also on the domain we have a wildcard.

Re: Current URL?

2002-02-18 Thread Nathan Chen
Try cfset my_file_path = GetTemplatePath() Nathan - Original Message - From: Cornillon, Matthieu [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, February 18, 2002 11:50 AM Subject: Current URL? Hi, everyone. I feel silly for asking such a simple question, but I can't

Re: Problems with a list

2002-02-18 Thread Michael Dinowitz
!--- this will be our work list--- CFSET lWork= !--- loop over the query assuming the field we want is called list --- CFLOOP query=whatever !--- remove the last element from the list stored in the DB field --- CFSET lTemp=listdeleteat(list, listlen(list, ';'),';') !---

RE: A couple questions for you guys

2002-02-18 Thread Cameron Childress
furst part since I only need the helloall.com. All of our domains are going to the same place so I need to see which domain they typed in. So how do I parse that? Assuming the sub-domain will always just be one level deep: CFSCRIPT if (ListLen(CGI.Server_Name, '.') GT 2) {

Re: Current URL?

2002-02-18 Thread Jim McAtee
What do you mean hack it out using CGI variables? This is usually how it's done. The CF processor doesn't really know what the URL is, in that it is just passed a template file to process by the web server. CF mostly knows files and file systems. Except through what it knows through CGI

Query of Query cannot sort

2002-02-18 Thread Peter Theobald
Help! This should be simple. Have I found a bug in Queries of Queries? I have two queries to the database. Later I want to join the data and sort it by an INTEGER column called 'SEQ'. I use a query of a query to do the select in memory, but I get the following error: GETTHESE.SEQ is not a

Image Theft Sofware

2002-02-18 Thread Valerie L. Criswell
*Sigh* Does anyone know of a good, cheap piece of software that I can install on the server to detect websites that are using images on your server by linking to them? Thanks, ~Val __ Get Your Own Dedicated Windows 2000

RDS Error

2002-02-18 Thread ColdFusion Support
I have a server that has RDS turned on and isn't working anymore. The server is an NT 4.0 SP 6a server running CF 4.0.2. I understand that this is an unsupported version and that I need to upgrade, but that is not going to happen overnight. I have made no changes to the server prior to these

RE: Multiple domains going to one webspace

2002-02-18 Thread Rick Eidson
Tell IIS to forward all request to the main URL. Its in the same place you specify Home Directory. Rick -Original Message- From: Thane Sherrington [mailto:[EMAIL PROTECTED]] Sent: Monday, February 18, 2002 1:24 PM To: CF-Talk Subject: Multiple domains going to one webspace Is there a

Re: Image Theft Sofware

2002-02-18 Thread Len Conrad
*Sigh* Does anyone know of a good, cheap piece of software that I can install on the server to detect websites that are using images on your server by linking to them? I heard of people using google, etc to find targeted image filenames on indexed web pages. Len

Re: Image Theft Sofware

2002-02-18 Thread Nick McClure
Log analyzer software. Your log files should contain the hits on the images and the referrer. The referrer should be the URL of the site that is linking to your images. At 02:28 PM 2/18/2002 -0500, you wrote: *Sigh* Does anyone know of a good, cheap piece of software that I can install on

RE: Image Theft Sofware

2002-02-18 Thread Duane Boudreau
You could always use cfcontent to serve up the image names and set the image paths to be image.cfm. In image.cfm you can check the domain to make sure its your site accessing the image. Of course this does nothing to prevent someone from using print screen to capture your images. HTH, Duane

RE: Multiple domains going to one webspace

2002-02-18 Thread Thane Sherrington
At 01:23 PM 2/18/02 -0600, Rick Eidson wrote: Tell IIS to forward all request to the main URL. Its in the same place you specify Home Directory. I purchasing space from a host, so I don't think I have that option. On their page, they suggest the following ASP code to do it: % sname =

RE: Multiple domains going to one webspace

2002-02-18 Thread Garza, Jeff
% 'ASP Version ... sname = Request.ServerVariables(SERVER_NAME) sname = ucase(sname) if InStr(sname,DOMAIN1) 0 then response.redirect subdirectory to go to elseif InStr(sname,DOMAIN2) 0 then response.redirect 2nd subdirectory to go to elseif end if % !--- ColdFusion Version --- CFSET

RE: Multiple domains going to one webspace

2002-02-18 Thread Thane Sherrington
At 12:56 PM 2/18/02 -0700, Garza, Jeff wrote: !--- ColdFusion Version --- CFSET sname = lcase(CGI.Server_Name) CFIF find(domain1, sname, 1) NEQ 0 CFLOCATION url=/domain1/index.cfm CFELSEIF find(domain2, sname, 1) NEQ 0 CFLOCATION url=/domain2/index.cfm CFELSEIF ... CFELSE

RE: Image Theft Sofware

2002-02-18 Thread Eric J Hoffman
If you Digimarc them in Photoshop, that helps...Digimarc has some sort of software that then spiders looking for your stuff on other sites...not sure of the price though. Works for us, though. Regards, Eric J. Hoffman Director of Internet Development DataStream Connexion, LLC (formerly Small

RE: Image Theft Sofware

2002-02-18 Thread Ian Lurie
Log files are good. But the BEST solution I've found is to name a few images something really, really strange, and then search for it in Google. Then you can see who's using it. We've caught a few people lifting our templates wholesale, that way.

RE: Query of Query cannot sort

2002-02-18 Thread Mark A. Kruger - CFG
You need to qualify your query correctly. getThese.SEQ is NOT included in your select list, because GetThis is first. Try this: cfquery name=getSortedJoin dbtype=query SELECTGetThese.THISID AS ThisID, GetThis.THESEID AS TheseID, GetThese.SEQ AS SEQ FROM getThis,

RE: Image Theft Sofware

2002-02-18 Thread Dave Watts
If you Digimarc them in Photoshop, that helps...Digimarc has some sort of software that then spiders looking for your stuff on other sites...not sure of the price though. Works for us, though. I was under the impression that what this did was allow you to track copies of your images. How

RE: Image Theft Sofware

2002-02-18 Thread Nick McClure
I have heard of people, periodically renaming images. At the old name they would put up an image that you would not like to see on your corporate site. At 12:08 PM 2/18/2002 -0800, you wrote: Log files are good. But the BEST solution I've found is to name a few images something really, really

quicksell commerce

2002-02-18 Thread Joseph DeVore
Have any of you gurus used the POS software called QUICKSELL COMMERCE by SMS? If so, have you used it with CF or do you have any feedback on the product? PROS/CONS/OPINIONS welcome! Thank you, Joseph DeVore VeloxWeb Technologies

RE: Just wanna bitch

2002-02-18 Thread jon
I want to second this notion. I wrote an extremely widely used Real Estate Listings program in PHP. I didn't want to sell it -- I just wanted to build an easy to use listings manager to trade for a free month's rent out of my landlord. Selling it would've been a pain in the ass. I would have had

RE: Query of Query cannot sort (SOLVED)

2002-02-18 Thread Peter Theobald
Thank you! I did fully qualify all my variables, as my example showed, so that wasn't it. But I didn't select the column I was sorting by, and that did it! At 02:14 PM 2/18/02 -0800, Mark A. Kruger - CFG wrote: You need to qualify your query correctly. getThese.SEQ is NOT included in your

RE: Just wanna bitch

2002-02-18 Thread Matt Robertson
Doug, I think that the tools and components available to us all are a considerable asset, rather than the reverse. Our respective projects can benefit considerably from re-using pre-built components, regardless of who wrote them. Same goes for full-blown apps. A good part of the motivation

Re: Image Theft Sofware

2002-02-18 Thread Valerie L. Criswell
Thanks to all replies. I originally found the theiving linkers by manually checking out the referrals from my WebTrends report. Unfortunately there doesn't appear to be a quick fix that will nab illegal linkers. Some of the solutions sound very viable, however. For now, until I have more time

Re: Problems with a list

2002-02-18 Thread Development Team
Worked like a charm after I made a little mod... :-) CFIF NOT ListFind(lWork, lTemp) CFSET ListAppend(lWork, lTemp) CFOUTPUT#lTemp#/CFOUTPUTBR CFSET lWork=ListAppend(lWork, lTemp) Thanks much for your help!! Jeff - Original Message - From:

Re: Problems with a list

2002-02-18 Thread Michael Dinowitz
You want I should do all the work for you. :) Any time. At 04:07 PM 2/18/02, you wrote: Worked like a charm after I made a little mod... :-) CFIF NOT ListFind(lWork, lTemp) CFSET ListAppend(lWork, lTemp) CFOUTPUT#lTemp#/CFOUTPUTBR CFSET

RE: Image Theft Sofware

2002-02-18 Thread Andrew Scott
People this is about the only protection you are going to get, let me explain something. 1) RMB disable method, well this works. However you can always write your own robot to scan the site via cfhttp and do some regExpr to retrieve what you want. 2) Log files, well what is this going to do.

finding redundant templates

2002-02-18 Thread John McCosker
Hi all, I was just wondering if there is a way in coldfusion studio to find templates that are not connected to an application either by a href or by cfinclude, cf_ or cfmodule. We have an application were we have been working with another team of developers and redundant templates have been

MS Word Funky Quotes

2002-02-18 Thread Carlisle, Eric
Seems like after I copy and paste content form MS Word, there's always time spent turning the MS Word single and double quotes into real ones (that don't produce garbage on the screen. Is there some kind of RegEx I can use to find and replace such content in a CF Script. Can CF know what an MS

Re: MS Word Funky Quotes

2002-02-18 Thread Jeffry Houser
At 04:20 PM 02/18/2002 -0500, you wrote: Seems like after I copy and paste content form MS Word, there's always time spent turning the MS Word single and double quotes into real ones (that don't produce garbage on the screen. Is there some kind of RegEx I can use to find and replace such content

RE: MS Word Funky Quotes

2002-02-18 Thread Carlisle, Eric
Sorry, I should have clarified moreso. A lot of the time, I don't have control over the content entry. I get content from a database and have to maintain the look of the output... e.g the blocky characters that an MS Word quote causes in a web browser. Can ColdFusion catch these non-standard

Re: MS Word Funky Quotes

2002-02-18 Thread Gyrus
Seems like after I copy and paste content form MS Word, there's always time spent turning the MS Word single and double quotes into real ones (that don't produce garbage on the screen. Is there some kind of RegEx I can use to find and replace such content in a CF Script. Can CF know what an

CFFILE filesize limit - what error is thrown?

2002-02-18 Thread Gyrus
On the offchance that someone tries to upload a file using my CF app that's too big for the server's memory to handle, I want to catch the error and return a custom error message. What would I use to catch such an error? - Gyrus - [EMAIL PROTECTED] work:

CF Security

2002-02-18 Thread Jason Larson
I was wondering if anybody has published or seen any great articles concerning: - CF Server Security - Securing your CF Apps - How to protect your Template from URL Hacking Our info anybody wants to put there 2 cents in on these topics Thanks, Jason Larson [EMAIL PROTECTED] www.larzz.com P.

Re: CF Security

2002-02-18 Thread Michael Dinowitz
You can find stuff at the official MM site: http://www.macromedia.com/v1/developer/SecurityZone/ Fusion Authority also reviews security issues from other sites: www.fusionauthority.com (click on security on the right) At 04:58 PM 2/18/02, you wrote: I was wondering if anybody has published or

Passing Arrays

2002-02-18 Thread Marlon Moyer
Is there a way to pass an array to a UDF? Example: myFunction (myArray) { ..// } thisArray = ArrayNew(1); myFunction (thisArray); If I do it this way, CF complains about not being able to convert complex values. Thanks Marlon

Query of Query problem

2002-02-18 Thread James Sleeman
Anybody know if this is a known bug in CF ? This query CFQUERY DBTYPE=QUERY NAME=Q_Dump SELECT * FROM Q_Table WHERE FrWMin = #Weight# AND ((FrWMax #Weight#) OR (FrWMax = '')) /CFQUERY produces a single row with value of 15.0 in the FrZWPrice field but this query

RE: Query of Query problem

2002-02-18 Thread Steve Oliver
Someone posted something like that a few days ago. Using a query of query something like this: Select sum(amount) from sales WHERE category = 5 The query of query totally ignores the where clause and returns the sum of then entire column. So yes, I'd say that's a bug. __

UPS OnLine Tools with ColdFusion

2002-02-18 Thread Scott Van Vliet
Has anyone out there used the UPS OnLine tools with a ColdFusion app? I have an rather large app that desperately needs to integrate the real-time shipping costs. Thanks in advance! SCOTT VAN VLIET BRD.WRKS INTERACTIVE [EMAIL PROTECTED]

RE: UPS OnLine Tools with ColdFusion

2002-02-18 Thread Steve Oliver
I recently upgraded an app that had an old version of UPSRateMonger on it with UPSRateMonger 3.0, the hardest part was downloading the rates from ups.com There's a script to import the files into the database for you, make sure you rtfm though :) __ steve oliver atnet

Re: MS Word Funky Quotes

2002-02-18 Thread Dave Carabetta
I don't think so without a serious hack, i.e. hard-coding all of the entity values for every possible non-standard character, and then doing a search and replace on them. The only two solutions I can think of are: a) Cut and paste into WordPad to remove 90% of the junk, then cut and paste from

RE: MS Word Funky Quotes

2002-02-18 Thread Steve Oliver
Am I the only one that uses HTML to display word files? I don't get why people are copy and pasting RTF's when you can just use standard html to display a word document. Example: html head title/title /head body h2 align=centerDaily Report/h2 hr pblah blah blah. /body /html Use cfcontent set

Any CF jobs in Orlando Florida???

2002-02-18 Thread coldfusion . developer
I have a great cf job here in the Boston area. The wife wants to move the kids to Orlando. I've looked in the online papers and only found a few. Is anyone out there from the Orlando area? Can any one share some expereince about the job market in Orlando? Thanks.

RE: Query of Query problem

2002-02-18 Thread Mark A. Kruger - CFG
Here's a tip - uppercase all the column names in your second query (as in FRWMAX #WEIGHT#). There IS a case sensitivity problem. Mark -Original Message- From: James Sleeman [mailto:[EMAIL PROTECTED]] Sent: Monday, February 18, 2002 3:51 PM To: CF-Talk Subject: Query of Query problem

Re: Multiple domains going to one webspace

2002-02-18 Thread Bill Davidson
Rick - can you expand on this? I can't get IIS to allow multiple sites on the same IP. We've been having to do a bunch of CF magic to get multiple sites to live on the same IP. CFlocating (as suggested by Thane) gets the beginning done, but what about subsequent requests to a virtual domain

RE: Multiple domains going to one webspace

2002-02-18 Thread Joseph DeVore
You just need to setup host headers. What version of IIS you using? I can show you how to set this up fairly easily. Joseph DeVore VeloxWeb Technologies -Original Message- From: Bill Davidson [mailto:[EMAIL PROTECTED]] Sent: Monday, February 18, 2002 7:14 PM To: CF-Talk Subject: Re:

Re: Multiple domains going to one webspace

2002-02-18 Thread Bill Davidson
thanks. I am going to look into this. -Bill brainbox - Original Message - From: Joseph DeVore [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, February 18, 2002 10:54 PM Subject: RE: Multiple domains going to one webspace You just need to setup host headers. What

  1   2   >