Re: OT Amazon

2000-04-04 Thread Internet Marketing Corporation
Well, we're putting a "Greater Than Zero But Less Than Two Left Mouse Button Activations" shopping process on all of our ecommerce sites. (G.T.Z.B.L.T.T.L.M.B.A. for short.) Patent pending, of course. Veronica At 10:52 PM 4/3/00 -0700, you wrote: Seth, Be very careful Amazon has

Re: OT programming theory

2000-04-04 Thread Seth Petry-Johnson
Be very careful Amazon has recently Patented the "1 Post Listserv Boycot" business process. You shall receive your prize for this blatent infringement via a friendly courier bearing court docs. Have we discussed your liability insurance coverage lately?? :-) Hmm... I had a very witty

Re: OT programming theory

2000-04-04 Thread David Shadovitz
I heartily agree with Seth's suggestion. Another book that I like is "The Practice of Programming" by Kernighan Pike. (If you know C, Kernighan is the "K" of "KR" fame). The code samples in the book are C, C++, and Java, which may not be of interest to some web developers, but the topics are

Spider-friendly continued

2000-04-04 Thread Stanislav Maximov
Hello, all. Some time ago here was the discussion on making URLs like /index.cfm/article,show/100/50, which will help spiders to index all dynamic pages on sites. I have another querstion on this topic. What if I'll just remove question sign from URL, but will keep ampersands? Will spider go

HTTP_REFERER

2000-04-04 Thread Galileo-Interactive
Hi, I am trying to secure my application preventing users to access a page directly by typing the URL. I decided to code something like this : cfif #GetFileFromPath(CGI.HTTP_REFERER)# IS NOT "something.cfm" cflocation URL="index.cfm" /cfif Am i Right ? Does this portion of code work with

Increased CPUload

2000-04-04 Thread Holger Lockertsen
We are running CF on a dual processor Intel-machine. I finally upgraded from 4.01 to 4.5 and everything seemed to work nicely, but we have experienced a dramatic increase in CPU-load by the cfserver. Does anyone know of any issues with this? * Holger Lockertsen, Solutions Developer, Horisont

Error?!?

2000-04-04 Thread Charles James S CONT CNIN
Can you please tell me WHY this CFLOOP is not working??? The code I am using is at the bottom, and right below is the error message! Thanks ODBC Error Code = 37000 (Syntax error or access violation) [Microsoft][ODBC Microsoft Access Driver] Syntax error. in query expression 'q1=1 SELECT

CFLOOP Error???????

2000-04-04 Thread Charles James S CONT CNIN
Can you please tell me WHY this CFLOOP is not working??? The code I am using is at the bottom, and right below is the error message! Thanks ODBC Error Code = 37000 (Syntax error or access violation) [Microsoft][ODBC Microsoft Access Driver] Syntax error. in query expression 'q1=1 SELECT

Re: Structures and Arrays, huh? :-)

2000-04-04 Thread Bill Grover
You asked about a reason to use a structure. I'm currently working on a custom tag for our company that will allow me to "dynamically" create horizontal or vertical "tabs" on a web page. To do this I need some information about how to format the tabs. As such I use a structure. Below is the

RE: Adding in Carriage Return Before Insert into Database.

2000-04-04 Thread Dave Watts
Where can I get a list of these characters and their ASCII equivalents?? Search on Yahoo for ASCII, and you'll be presented with lots of ASCII charts. Or, install a copy of Foxpro 2.0. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444

Whence Escape Single Quotes?

2000-04-04 Thread paul smith
When do you have to escape singles quotes (or use PreserveSingleQuotes)? For example, I don't find I need to do either inserting a record using the following (with SQL7): cfquery name="AddRow" datasource="MainBiz" password="" username="sa" INSERT INTO Orgs (ID, Class, Contact, org_name,

WAS- RE: Surveys NOW - Session variables are your friends!

2000-04-04 Thread jstiefel
Session vars chew up a ton of memory? I would have to disagree with this, at this statement could put a negative view of session vars for new CF developers. Session variables use no more memory than any other variable available to you on the ColdFusion server. And in this day and age where web

RE: Load Testing

2000-04-04 Thread Dave Watts
... I agree that Silk Performer is a good tool. It just felt a bit clunky to use compared to RSW E-Suite's interface and I wanted to see if anyone had any other opinions about the other tools out there. I'd love a feature breakdown between the two but can't seem to find one anywhere. Like

RE: Help: Can arrays be used like queries

2000-04-04 Thread Chris Evans
David, You can also use queries as arrays. For example, if I have a query called "Articles" with a column named "TITLE", and I want the 5th row, I can use Articles.Title[5]. I rarely see a need for arrays with CF, though other programmers seem to use them for everything. I don't quite

CF - Intershop plug in

2000-04-04 Thread Stephen Moretti
Hi there, Has anyone got/done/seen a custom tag or similar that will allow me to pass information from CF to Intershop 3??? Regards Stephen -- Stephen Moretti Senior Cold Fusion Developer Email: [EMAIL PROTECTED] Direct Line : +44 191 215 9431 Mobile: (07932)

RE: CFLOOP Error???????

2000-04-04 Thread Chris Evans
You can't have multiple selects within a single CFQUERY. It is hard to tell from that small snippet of code what you are trying to do, but I'm guessing there may be a more efficient way to get the data you need without having to run 37 queries. Chris Evans [EMAIL PROTECTED]

Re: Help: Can arrays be used like queries

2000-04-04 Thread Emily B. Kim
You can also use queries as arrays. For example, if I have a query called "Articles" with a column named "TITLE", and I want the 5th row, I can use Articles.Title[5]. just a fyi, although you can use array syntax to reference queries, remember that queries are NOT arrays so you can't use

Re: same form-based page for edit and display?

2000-04-04 Thread Todd Ashworth
Yes, it's very possible with style sheets. On one of my current projects, All of my text fields have white backgrounds with the field labels located inside the top right corner of the text boxes themselves. When the box gets focus, the border turns blue and the label "hides" so that it doesn't

Crystal Report 8 and CFREPORT TAG

2000-04-04 Thread Robert M. Saxon, Jr.
When calling Crystal Report via the CFREPORT TAG, I receive the following error message: Error occurred while processing CFREPORT An unexpected error occurred while using the Crystal Engine. Error number 692 ocurred (Error in File D:\Inetpub\wwwroot\budget\cfpages\reports\acct_dtl.rpt: Invalid

RE: Help: Can arrays be used like queries

2000-04-04 Thread Chris Evans
I always end up using lists rather than arrays, though a list can be thought of as a 1-dimensional array. So I would use a list of structures rather than an array of structures. I find Lists easier to create and maintain than arrays. Chris Evans [EMAIL PROTECTED] http://www.fuseware.com

simple application

2000-04-04 Thread cbickner
I am new to coldfusion and would like to set up a page where I have one record from my database displaying at a time. I want to have a different record every hour or every day or something like that. Anyone know how to set this sort of thing up? Carrie

Database and server on two different domains

2000-04-04 Thread Mark Jones
I have a database on one domain and the coldfusion server on another. We are having problems getting the coldfusion server to connect to the database. The ODBC link is set up fine but the coldfusion server does not seem to want to connect to the database. Does anyone have any suggestions?

LOOPING-PLEASE HELP!!!!

2000-04-04 Thread Charles James S CONT CNIN
Hi, Ok, if you would, here is my dilemma: I have 37 questions. I have 2000 people answering these questions on base. What I want to do is COUNT all the 1's in question 1, all the 1's in question 2.etc to 37. I have to do this for 5 different numbers (1 thru 5): for example: COUNT all the 2's

OT: Onchange submit

2000-04-04 Thread kraybill
I want a form to be submitted when the user makes a change in a select box. The form name is "Employeeform". This doesn't work: SELECT NAME="PayType" ONCHANGE="document.Employeeform.action='index.cfm'; document.Employeeform.submit()" Why? Gene Kraybill

Re: frame url question

2000-04-04 Thread Darryl Davidson
Tom; We used the following snippet to trigger from one frame (t.w.m.view) to another (t.w.m.index) during initial load. You can just as easily make it part of an onClick onSubmit or other event tied to your clicking in the 2nd frame. body background="../Images/back.jpg"

Re: One question about list parsing

2000-04-04 Thread Ric Smith
I'd read the contents of the text file into a list using \n as the delimiter. Then I would loop through the list of lines. At the beginning of each iteration of the loop I would use ListToArray() to build an array holding ReceiptNo and Cust_Code. Then update something like this. update table

Re: OT Amazon

2000-04-04 Thread Dave Hannum
I want everyone to know that I have just patented the use of Cold Fusion, ASP, Perl, PHP, Java, JavaScript and HTML for ANY web applications. You can license it at: http://letsruinethewebbecauseweregreedyslimes.com = "Technology" is stuff that was invented

Apple formfields problem

2000-04-04 Thread Martijn Verhoeven
I am having a problem using formfields on an Apple/MSIE 5.0 platform. Apple / MSIE seems to add whitespaces, carriagereturn linefeeds and in the case of a input type="file".. field some kind of data I cannot trace to the value of the fields. Is there anyone who has come up with this problem

Re: Database and server on two different domains

2000-04-04 Thread cftalk
Try a DSN-ODBC-Connect ! I would also try with domainname.com and in the other option with the IP-Adress only. Uwe - Original Message - From: Mark Jones [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, April 04, 2000 4:44 PM Subject: Database and server on two different domains

RE: Onchange submit

2000-04-04 Thread Jay Wigginton
I typically would use... form action="submitpagename.cfm" method="post" select name="selectboxname" ONCHANGE="form.submit()" /form Jay -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 04, 2000 7:19 AM To: [EMAIL PROTECTED] Subject: OT:

Help refresh in frame

2000-04-04 Thread Cecilia Lam
This is a multi-part message in MIME format. --=_NextPart_000_0009_01BF9E2A.358CACD0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Hi, Does anyone know how to completely clear the cache and refresh frame without clicking on the refresh function on

RE: LOOPING-PLEASE HELP!!!!

2000-04-04 Thread Gilles Ratte
cfset temp="0" cfloop from="1" to="37" index="conteur" cfif value is "1"cfset temp = #temp# + 1 /cfif /cfloop -Message d'origine- De: Charles James S CONT CNIN [SMTP:[EMAIL PROTECTED]] Date: 4 avril, 2000 11:07 À:'[EMAIL PROTECTED]' Objet:LOOPING-PLEASE HELP Hi,

Re: OT: Onchange submit

2000-04-04 Thread Larry Meadors
Try this: form action="index.cfm" SELECT NAME="PayType" ONCHANGE="this.form.submit()" /form [EMAIL PROTECTED] 04/04/00 05:19AM I want a form to be submitted when the user makes a change in a select box. The form name is "Employeeform". This doesn't work: SELECT NAME="PayType"

Security holes revisited -- reward offered

2000-04-04 Thread Nick Call
Ok, fellow Listees, here's the deal... My boss's daughter has a boyfriend.. (can you smell the trouble already???). He is bent out of shape over the fact that I did not recommend that we hire him (I interviewed him and gave his skill sets an honest, thorough exam). He is good at A/V stuff,

Re: OT Amazon

2000-04-04 Thread Stephen M. Aylor
Excellent... then you'll have plenty of cash to repay me from my 6 yr 11 mth old patent on ListServ sig's - shall we all discuss this at CF_Community please I want everyone to know that I have just patented the use of Cold Fusion, ASP, Perl, PHP, Java, JavaScript and HTML for ANY web

RE: OT Amazon

2000-04-04 Thread Chris Evans
I patented and trademarked "404 Error" - You'll get my bill for licensing fees in a day or two. Chris Evans [EMAIL PROTECTED] http://www.fuseware.com -Original Message- From: Dave Hannum [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 04, 2000 12:32 PM To: [EMAIL PROTECTED] Subject:

Parsing a Comma Delimited file

2000-04-04 Thread Steve Goldenberg
Dear CF gurus, Do any of you know an easy way to parse a Comma delimited text file in CF to read records out for import into a database? Thanks for the help! -Steve Goldenberg Interfolio.com 4300 Old Dominion Dr. Suite 901 Arlington, VA 22207 p: 703.522.4004 f: 209.315.7319

RE: Onchange submit

2000-04-04 Thread Stanislav Maximov
Try document.forms.Employeeform.submit() Stas. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 04, 2000 3:19 PM To: [EMAIL PROTECTED] Subject: OT: Onchange submit I want a form to be submitted when the user makes a change in a

Re: OT Amazon

2000-04-04 Thread Chris Tazewell
While you're handing out long domain names... I was thinking of getting the patent for short domain names and use of the simple default document names (index.* default.*) so that everyone would have to use things like: http://www.its_not_my_fault_that_you_are_using_a_poor_quality_browser.com/bl

Re: Onchange submit

2000-04-04 Thread Vlad Piankov
Try this !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" html head script language="JavaScript" function surfto(f) { myindex=document.forms[f].elements[0].selectedIndex; location=document.forms[f].elements[0].options[myindex].value; return true; } /script

RE: OT Amazon

2000-04-04 Thread Dave Grabert
http://www.userfriendly.org/cartoons/archives/00mar/2305.html I thought that you'd all get a kick out of this User Friendly comic from about a month ago... -Dave ** Dave Grabert Commercial Services Engineer Time Warner Communications Rochester Road

BrowserVersion

2000-04-04 Thread Eddie Shipman
Possible to get the browser version and set a variable to it? Is this the way? CFSET browserver=#cgi.http_user_agent# ** This email and any files transmitted with it are confidential and intended solely for the use of the

RE: OT Amazon - STOP PLEASE

2000-04-04 Thread Stanislav Maximov
Guys, please... -Original Message- From: Chris Evans [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 04, 2000 7:49 PM To: [EMAIL PROTECTED] Subject: RE: OT Amazon I patented and trademarked "404 Error" - You'll get my bill for licensing fees in a day or two. Chris Evans

Re: Parsing a Comma Delimited file

2000-04-04 Thread Vlad Piankov
cfloop index="field" list="#yourlist# delimiter="," do whatever you want with single list item , run query, or whatever. Or be more specific on waht you want to do with db. /cfloop - Original Message - From: "Steve Goldenberg" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, April

PDF file of CF Tags in Poster form??

2000-04-04 Thread Jeff Fongemie
I once came across a pdf file with CF Tags and it was poster size I think. I can't remember where I it was, anyone know where I can find it?? Thanks, Jeff Fongemie -- Archives: http://www.eGroups.com/list/cf-talk To

RE: Security holes revisited -- reward offered

2000-04-04 Thread Stephen Moretti
Nick, You should check out the following URL : http://www.allaire.com/security You'll find all the bulletins from February 1999 through to today, plus links and information on how to patch these issues. Regards Stephen -Original Message- From: Nick Call [mailto:[EMAIL PROTECTED]]

Re: CF - Intershop plug in

2000-04-04 Thread Jennifer
At 03:23 PM 4/4/00 +0100, you wrote: Hi there, Has anyone got/done/seen a custom tag or similar that will allow me to pass information from CF to Intershop 3??? And while we're on Intershop, if anyone knows of something to pass to Enfinity (and tells me what it is and it works) he/she/it will

RE: Security holes revisited -- reward offered

2000-04-04 Thread Jim Taylor
I am kinda in the same situation. except this guy says thar cold fusion can not be made to be secure at all. But he is trying to sabatageme and any work i do and he knows nothing about cf and he admins the nt and IIS and SQL servers -Original Message- From: Steve Pierce [mailto:[EMAIL

RE: Parsing a Comma Delimited file

2000-04-04 Thread Craig M. Rosenblum
this one is easy... cfloop thru a list...check out the cfdocs... -Original Message- From: Steve Goldenberg [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 04, 2000 10:55 AM To: [EMAIL PROTECTED] Subject: Parsing a Comma Delimited file Dear CF gurus, Do any of you know an

Survey Again

2000-04-04 Thread Miriam Hirschman
I am creating hidden form fields for all the questions. But what should I do with the questions that the user does not have to complete(specifically a check box, or an option button)if they leave it blank, it does not get passed and I can't update the database. Thanks,   ---miriam

Programatically setting search path for custom tags

2000-04-04 Thread Reuben King
This is a multi-part message in MIME format. --=_NextPart_000_0018_01BF9E30.91923440 Content-Type: multipart/alternative; boundary="=_NextPart_001_0019_01BF9E30.91954180" --=_NextPart_001_0019_01BF9E30.91954180 Content-Type: text/plain; charset="iso-8859-1"

Re: Increased CPUload

2000-04-04 Thread Tariq Ahmed
We're having overall CPU load issues. Mainly on our Ultra 10. So we're now testing on an Intel platform. CF seems to require a high base level of processing power. Hopefully a dual PIII-600 can handle it. I'm also suspicious if the CF Apache Module requires more resources

Remembering checked Checkboxes

2000-04-04 Thread Hassan Khawaja
Hi all, It seems simple enough, but I'd like a little help. The problem I am having is that it doesn't remember the selected checkboxes unless I select them all, or don't select any( those it remembers). This is what I am doing(trying to do): 1. A user selects some checkboxes (same field name,

ChartFX IE 2000 or Chart FX 98 Sample Code

2000-04-04 Thread Scott Rowe
Has anyone used these charting products with Cold Fusion yet? I'm trying to find some example code (such as a simple query charted) to make it work. The documentation on how it integrates with CF is 1 page and I really don't want to do cfhttp includes of .asp pages if I can in any way avoid it.

RE: Security holes revisited -- reward offered

2000-04-04 Thread Duane Boudreau
Nick, If your boss was willing to do this, I'd seriously consider quitting if I were you. There are tones of jobs out there. Duane -Original Message- From: Nick Call [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 04, 2000 11:44 AM To: [EMAIL PROTECTED] Subject: Security holes

RE: Security holes revisited -- reward offered

2000-04-04 Thread Mike Sheldon
Quite frankly, if this kid has an ounce of brains, or has a friend who does, you're screwed. Due to the fact that he has a friendly agent (boss's daughter) he should be able to get into the network using a legitimate account. This may sound harsh, but disable your boss's account. Chances are he

RE: Security holes revisited -- reward offered

2000-04-04 Thread Xing Li
Wrap CFTRY and CFCATCH Type="ANY" around your CF applications so he can't view partial "source code" through error messages. Not a physical bug but I think it can lead to more serious intrusions. Xing Ok, fellow Listees, here's the deal... My boss's daughter has a boyfriend.. (can you

Re: Security holes revisited -- reward offered

2000-04-04 Thread John N Westerlund
I would check your logs too. if you can find out where he is coming from, just sitebanish him. -Original Message- From: Craig M. Rosenblum [EMAIL PROTECTED] To: [EMAIL PROTECTED] [EMAIL PROTECTED] Date: Tuesday, April 04, 2000 3:00 PM Subject: RE: Security holes revisited -- reward

RE: Programatically setting search path for custom tags

2000-04-04 Thread Chris Evans
You can't do it using the CF_ notation for custom tags, but you can if you use CFMODULE. The name attribute of CFMODULE uses the custom tags subdirectory as its root, then uses dot notation to specify subdirectories. For example, I have a custom tag called wrap.cfm stored in the custom tags

Re: Help refresh in frame

2000-04-04 Thread Xing Li
I think this might work. If you want to use a link to refresh the page but fear the browser might cache the individual pages try the following: Append and pass a bogus url variable containing a unique value to all the frames in your frameset. myframeset.cfm?bogusvar=#UUID()# You will never

Re: Survey Again

2000-04-04 Thread Todd Ashworth
Just wrap this around the relevant input/update statements in your query if it complains. CFIF IsDefined('Form.hiddenFieldName') AND Form.hiddenFieldName IS NOT "" do your stuff /CFIF Is this what you mean? Todd Ashworth - Original Message - From: "Miriam Hirschman" [EMAIL

Re: Programatically setting search path for custom tags

2000-04-04 Thread Deanna L. Schneider
Couldn't you just have people use cfmodule? It allows you to pull custom tags from anywhere. So, each user could have their own custom tags folder, and reference a custom tag by calling cfmodule template="customtags/mytag.cfm" something="attributetopass" -Deanna (having just figured this out

Re: Security holes revisited -- reward offered

2000-04-04 Thread Eric Dawson
Of all the suggestions ... I think this one is the winner. Shut him down before he can get close. heh heh. From: "Richard Fantini" [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Security holes revisited -- reward offered Date: Tue, 4 Apr 2000 14:24:05 -0400

cfcontent with IE5.0

2000-04-04 Thread YungChih Chen
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01BF9E6E.2A201500 Content-Type: text/plain; charset="windows-1252" Hi, I am having problem used IE5.0 to view CFCONTENT page.

Re: Security holes revisited -- reward offered

2000-04-04 Thread Tariq Ahmed
I know, but I am more than likely missing some stuff. Anyone care to share their CF/NT/IIS security checklist or other advice? It's escalated into all-out war. He is going to stop at nothing to make me look bad, and I will stop at nothing to prevent him from succeeding. That's

RE: Security holes revisited -- reward offered

2000-04-04 Thread Tariq Ahmed
You could run a shareware firewall on your system, and block off the machines that you suspect he might use if he visits the boss or the bosses daughter. On Tue, 4 Apr 2000, Brook Davies wrote: Hmm..the bosses daughter eh? I'd keep a close I on that girl. What sort of user rights

Dbase woes

2000-04-04 Thread Howie Hamlin
I have a site that uses primarily dbase files (don't ask - I have no control over this). Anyway, I found something strange with a query today. I do a query on a table that has deleted records and the deleted records show up in the results. I know in Dbase you can check the deleted flag of a

RE: Security holes revisited -- reward offered

2000-04-04 Thread Reuben King
Agreed.. boss sounds like an idiot. 1) Cover up the traditional security holes -- FTP, telnet.. Make sure that only specific accounts, if any, have access to your CF directory. 2) Make sure that all IIS hotfixes and NT service packs are installed. 3) Like that other guy said -- chances are

RE: Security holes revisited -- reward offered

2000-04-04 Thread Reuben King
Good lord. If your site is that open and you're the webmaster, you deserve to be hacked and don't whine when you get your butt burned. This is my opinion, at least. -R -Original Message- From: John N Westerlund [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 04, 2000 2:02 PM To:

RE: Security holes revisited -- reward offered

2000-04-04 Thread Jennifer
At 11:50 AM 4/4/00 -0500, you wrote: How I would love / hate to be in your shoes. Change you administor account name on NT. -Remake an account with the name "administrator" with no access. Logs all attemps. I just have to say that this is really clever.

MSAccess Reports Cold Fusion????

2000-04-04 Thread Charles James S CONT CNIN
Hi all, Ok, grasping at straws, is there any way I can get a control field in my MSAccess report to show up in Cold Fusion? Jim Charles Dyntel Corp. Code 06 Computer Support - Building 1 Naval Surface Warfare Center (812) 854-3207 [EMAIL PROTECTED]

RE: Programatically setting search path for custom tags

2000-04-04 Thread Reuben King
Thanks for the suggestion. This is the way I've been doing it, but it breaks code portability. I want the root of the application to be known from where the application.cfm file resides (I can find this out by doing some recursive CFDIRECTORY trickery), and not be hardcoding in something like

Re: Increased CPUload

2000-04-04 Thread William James
We're running 2000 Advanced Server with an Athlon 500, 384 MB RAM, and a 7200 IBM U66 IDE HD. No load problems or anyother problems (And the Athlon seems to do much better than on our older P3) - Original Message - From: "Scott M. Berry" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent:

A newly renovated CF Site

2000-04-04 Thread Levi Wallach
Hey Guys, I was wondering if you guys wouldn't mind checking out my renovated site, dvdmon.com. I took a framed interface and converted into a table with includes that I do based on a url variable and a BIG cfswitch/cfcase structure. I am implementing a user account system with session

RE: Security holes revisited -- reward offered

2000-04-04 Thread Gary McNeel, Jr.
You might try to download and use Hackershield from BindView Development at www.bindview.com. It does a pretty thorough job of finding many of the holes in system. The trial download will work on one machine (just install it on that one). It does require that you be logged in as Administrator and

CF Studio 4.5a -- can't double-click to select a word?

2000-04-04 Thread Reuben King
This is a multi-part message in MIME format. --=_NextPart_000_0049_01BF9E4E.5C9C7B60 Content-Type: multipart/alternative; boundary="=_NextPart_001_004A_01BF9E4E.5C9C7B60" --=_NextPart_001_004A_01BF9E4E.5C9C7B60 Content-Type: text/plain; charset="iso-8859-1"

RE: Security holes revisited -- reward offered

2000-04-04 Thread Chris Evans
Did you just admit on a public forum to committing fraud , or were you just using that as a hypothetical example? grin Chris Evans [EMAIL PROTECTED] http://www.fuseware.com -Original Message- From: Tariq Ahmed [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 04, 2000 3:34 PM To: [EMAIL

RE: Security holes revisited -- reward offered

2000-04-04 Thread Dave Watts
I hope you get everything worked out, but this is one of the most seriously f**ked up things I have ever heard of. If anyone ever hears of me wasting time on any such tasks, please shoot me. All he's doing right now is the same thing you are... Trying to get his friend to help him hack your

RE: Security holes revisited -- reward offered

2000-04-04 Thread lsellers
Ok, fellow Listees, here's the deal... In this case social engineering is probably your _WORST_ problem. He's most likely already got several account names and passwords just from hanging around the office. Or he could have planted a TROJAN while his girlfriend went to the bathroom, etc. (I

RE: Programatically setting search path for custom tags

2000-04-04 Thread Chris Evans
Reuben, I'm not sure what piece you see as hardcoded, but I'll assume you mean that you don't want your tags to be placed in the Custom Tags directory, but rather in a subdirectory of the application. In that case, you could use the TEMPLATE attribute rather than the name. The TEMPLATE

frame url question

2000-04-04 Thread Tom Rainey
I have a frame set with two frames. I want the user to surf around another site in frame one and when they are done, click a button in frame two and have the new url for frame one set as the value of a variable. Do I need some javascript to do this, or is there a cf function/ tag that can help?

RE: Security holes revisited -- reward offered

2000-04-04 Thread dougn
Here are a few less-obvious things to watch out for: 1. InterNIC Do you have password protection on your InterNIC accounts? If they are only e-mail authentication, it's "possible" for someone to do mail spoofing and trick the InterNIC into thinking the request came from the e-mail account that

RE: Security holes revisited -- reward offered

2000-04-04 Thread dougn
I disagree (somewhat). While I think the boss is throwing money away if he paid before success, lots of highly successful companies pay "Tiger Teams" to break into their networks. It's a VERY lucrative talent if you can do it. What's worse is these teams usually get in. Many sites are built

RE: Security holes revisited -- reward offered

2000-04-04 Thread dougn
Here's a scary thought. What if the following communication happened, instituted by a "hacker". Hacker calls MyCompany.com's ISP... "Hi, this is Joe at MyCompany.com. We're VERY displeased with your service and want to move our site immediately to NewISP.com. We don't want to discuss it, our

RE: Security holes revisited -- reward offered

2000-04-04 Thread dougn
This may sound harsh, but disable your boss's account. Chances are he doesn't use it himself, and he'll have a grand time explaining how he found out it was disabled because someone was trying to use it to break into the system. If it's NT, you can restrict the times where the account is active.

RE: Session Variables

2000-04-04 Thread Reuben King
Session variables use cookies or CFID/CFTOKEN present in the URL. IP addy's are not used, so firewall or no makes no difference. HTH, -R -Original Message- From: Robert Everland III [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 04, 2000 3:06 PM To: [EMAIL PROTECTED] Subject:

dual processor

2000-04-04 Thread Tariq Ahmed
I noticed someone talking about NT server being able to run in symetric or asymetric mode. Which would be the better for handling high CF load? Tariq Ahmed - [EMAIL PROTECTED] - ICQ 6308515 TIBCO Finance Technology - Web Group - Senior Web Engineer

RE: Security holes revisited -- reward offered

2000-04-04 Thread Mike Sheldon
I have to violently disagree with this. The individual in question is not a reputable security expert, he's a kid with an axe to grind. I would never use any security group who cannot post a bond against any potential damage they may cause in the act of attempting to penetrate the system.

Re: Security holes revisited -- reward offered

2000-04-04 Thread Nick Call
The shirts come out of my own pocket. I am not loaded. The bundle he will pay his daughter's boyfriend will go towards keeping his daughter happy. My boss is a multi-millionaire. The site is not the one in the sig. Graphixonline.com belongs to me. :) Nick - Original Message - From:

RE: dual processor

2000-04-04 Thread Steve Bernard
I imagine that what they were referring to is the ability to set CPU affinity and/or priority for individual processes. You can set these parameters in the Task Manager. Which is "best" really depends on your system and applications. Steve -Original Message- From: Tariq Ahmed

RE: Help: Can arrays be used like queries

2000-04-04 Thread Nick Slay
I don't have any exact figures. Ben Forta did a session on Advanced Tips and Tricks, and that was one of them. It was related to the fact that a list is essentially a string, and ColdFusion has to read through that string to find the next delimiter. Every time you wanted to access an

Re: MORE ON MY SECURITY HOLE

2000-04-04 Thread Nick Slay
Thanks for the flood of feedback. I have a week's worth of reading to do now. There's been some very good reading too. I'm sure that many people on this list will be rushing to check all the possible security holes on their server now :^)

Re: Security holes revisited -- reward offered

2000-04-04 Thread Steve Aylor
Ok, fellow Listees, here's the deal... Or he could have planted a TROJAN while his girlfriend went to the bathroom, etc. (I almost got kicked out of college for doing that to the nosey sysadmin once. :-) Im not sure I understand what your trying to say here :-) Steve

RE: Security holes revisited -- reward offered

2000-04-04 Thread Peter Tilbrook
Two good places to start would be http://www.allaire.com/security/ and http://www.microsoft.com/security/ -Original Message- From: Nick Call [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 5 April 2000 1:44 AM To: [EMAIL PROTECTED] Subject: Security holes revisited -- reward offered Ok,

Re: No Nulls or Decimals for Numbers?

2000-04-04 Thread Judith Campbell
At 04:01 PM 04/04/2000 Stuart wrote: Hey all, this is probably a bit of a beginner question... but where else should I ask right? I have a database (in Access) that I'm trying to put a bunch of prices into. And when I set the fields as integers, long integers,etc it says that they can't be null

Re: No Nulls or Decimals for Numbers?

2000-04-04 Thread WBB
Hi Stuart, First, if you wish to use nulls in Access then you need to set the field up as Required:No If the field is set to currency and you're trying to put in integers then that should work. If you're trying to stuff the field with an amount using the DollarFormat that wont work. You can

Re: Security holes revisited -- reward offered

2000-04-04 Thread Mark Ireland
How much does the daughter/girlfriend know? At 09:44 AM 4/04/00 -0600, you wrote: Thanks in advance. I will custom print 5 free T-shirts with your logo (in one color) on them if you give me advice that plugs up a hole that I didn't know about.

The Len() function...Splitting Hairs?

2000-04-04 Thread Dave Carabetta
Hi all, I've been approached by a colleague to look into speed test results for the following situation. I have been a member of this list for a long time now and closely followed (and implemented) the suggestions for using the Len() function as opposed to the CFIF myvariable IS "" method.

RE: No Nulls or Decimals for Numbers?

2000-04-04 Thread Reuben King
Check your table definitions in Access.. Access defaults "Allow Zero Length" to "No" for the columns you add. Change this to "Yes" for each column and hopefully that'll fix it. -Original Message- From: Stuart Duncan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 04, 2000 6:02 PM

RE: The Len() function...Splitting Hairs?

2000-04-04 Thread Mike Sheldon
No, but: CFIF Len(myvariable) Is faster. Michael J. Sheldon Internet Applications Developer Phone: 480.699.1084 http://www.desertraven.com/ PGP Key Available on Request -Original Message- From: Dave Carabetta [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 04, 2000 16:49 To: [EMAIL

  1   2   >