Password Protection

2001-04-01 Thread Heidi Belal
Hi all! I have a question that i'd like suggested solutions to if possible! I want to allow certain people to access certain pages. I already have a log in page which is password protected, but everybody who logs in has full access to all the pages. I want to eliminate that full access. So, how

Re: Studio and Save As shenanigans

2001-04-01 Thread J. Finlayson-Fife
Aidan, The checkbox you're looking for is "Display current local folder in file dialogs" (not "Use standard file dialogs"), in the General pane of the Settings dialog box. Yours is apparently toggled on. John Finlayson-Fife --- Begin Included Message --- In the settings, do you have "use

RE: Password Protection

2001-04-01 Thread Angel Stewart
Oh! There is a cool system that someone gave me that does just this! You need to set Privelages.. So on say an admin page, you do a check against a database, to determine if the user has the "Admin" Privelage. You need to create groups, otherwise it gets unmanageable. So : User table- User

RE: Password Protection

2001-04-01 Thread Arden Weiss
Can send you what I've done if you like -- basically the same thing. Structure of USERS table I used is as follows: Items 8 and 12 thru 18 are Y/N fields that provide/deny access to various buttons on various templates throughout the app. Just a bunch of CFIF... statements throughout the

Re: Password Protection

2001-04-01 Thread CF
We have a system where users have access privledges and roles. The access privledges control what pages the users have access to and can even control what they can and cannot do in a particular page. The roles control what groups of access privledges the user has at any given time. A single

Re: Password Protection

2001-04-01 Thread CF
oops .. hit send too soon. I think the method you described will work just fine if you are interested in nothing more than page level access control. Todd Ashworth Web Application Developer Network Administrator Saber Corporation 314 Oakland Ave. Rock Hill, SC 29730 (803) 327-0137 [111] (p)

RE: cfwddx action=wddx2cfml question

2001-04-01 Thread Patricia Lee
Col2 might not contain a query. download one of the following tools from the taggallery: cf_dump cf_objectdump Then, select the wddx packets from the db as you have and use these tools to examine the columns. These tools will let you visually see what information is in the columns and will

Excluding IDs in queries

2001-04-01 Thread W Luke
Hello. I'm trying to exclude an ID from the WHERE in a query, by looping through a list, but it's causing a lot of headaches. The list contains delimited list of IDS (120,145,987,564 etc) cfquery name="users_adverts" datasource="localads" SELECT ID,email,subject,paid FROM advert_details WHERE

RE: Cold Fusion Forums

2001-04-01 Thread Eric Dawson
Well fusebox or not. Right or wrong, I always try and get the application programming out of the web root, and use cfmodule to call the application. And if I can't do this, then I usually rework the code a little. So if he built his application in fsebox, it would be easier for me. Eric

Re: Excluding IDs in queries

2001-04-01 Thread Sean Renet
Use NOT IN WHERE featured = No AND ID NOT IN (#ListofIDs#) - Original Message - From: "W Luke" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Sunday, April 01, 2001 9:48 AM Subject: Excluding IDs in queries Hello. I'm trying to exclude an ID from the WHERE

RE: Excluding IDs in queries

2001-04-01 Thread Patricia Lee
Use the IN operator cfquery name="users_adverts" datasource="localads" SELECT ID,email,subject,paid FROM advert_details WHERE featured IN (120,145,987,564) /cfquery |-Original Message- |From: W Luke [mailto:[EMAIL PROTECTED]] |Sent: Sunday, April 01, 2001 12:48 PM |To: CF-Talk |Subject:

Re: Excluding IDs in queries

2001-04-01 Thread W Luke
Thanks, working now..:/ Will - Original Message - From: ""Sean Renet"" [EMAIL PROTECTED] Newsgroups: dotcom.lists.cftalk Sent: Sunday, April 01, 2001 6:05 PM Subject: Re: Excluding IDs in queries Use NOT IN WHERE featured = No AND ID NOT IN (#ListofIDs#) -

RE: Excluding IDs in queries

2001-04-01 Thread David Shadovitz
AND ID NOT IN #CLIENT.TROLL# (The RDBMS will translate IN into multiple OR statements and NOT IN into multiple AND statements.) -David On Sunday, April 01, 2001 9:48 AM, W Luke [SMTP:[EMAIL PROTECTED]] wrote: Hello. I'm trying to exclude an ID from the WHERE in a query, by looping through a

RE: cfwddx action=wddx2cfml question

2001-04-01 Thread David Shadovitz
Just to chime in: I recommend the use of assertions. Don't assume that any input is present and correct. For example, my custom tag CF_ColumnList requires a CFML query as input, so I test that this input item is: (a) provided, via cfif not IsDefined("Attributes.Query") (b) a CFML query

RE: Excluding IDs in queries

2001-04-01 Thread Jason
The below should do the trick - I didn't have time to check it but give it a shot. cfquery name="users_adverts" datasource="localads" SELECT ID,email,subject,paid FROM advert_details WHERE featured = No AND ( cfloop index="i" list="#client.troll#" ID #i# OR /cfloop 1=2) /cfquery -Original

RE: cfwddx action=wddx2cfml question

2001-04-01 Thread Evan Lavidor
Yep. I also ran an IsQuery and IsStruct functions on it. Turns out one of them is a query and one of them is a structure. Thanks! Evan -Original Message- From: Patricia Lee [mailto:[EMAIL PROTECTED]] Sent: Sunday, April 01, 2001 12:47 PM To: CF-Talk Subject: RE: cfwddx

RE: CF5 Beta 3

2001-04-01 Thread Philip Arnold - ASP
Is anybody else out there having trouble installing CF5.0 Beta 3? I get an empty pop up box every time it gets the cfgraph installation. This is the whole reason I downloaded the new beta. You'll get direct help from Allaire Beta team at the Beta Forum Philip Arnold Director Certified

RE: Numbers to Text

2001-04-01 Thread Philip Arnold - ASP
If you include the and it implies a decimal. 101.50 is one hundred one and fifty But if you're ignoring decimals, then the "and" is still required - therefore if you want the words for "101" it should still be "one hundred and one" Philip Arnold Director Certified ColdFusion Developer ASP

RE: Numbers to Text

2001-04-01 Thread Raymond B.
That's US, the "and" is sternly tought to be dropped in CA schools and I'd image so for other metric countries. -Original Message- From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]] Sent: April 1, 2001 10:46 To: CF-Talk Subject: RE: Numbers to Text If you include the and it implies

Re: [Re: An ignorance question to the masters]

2001-04-01 Thread Julia Phu
Thank you, Brian. Julia "Brian Thornton" [EMAIL PROTECTED] wrote: I would either create a network share or a ftp directory to somewhere in your root. Use the files in Studio and upload / copy them to the network... - Original Message - From: "Julia Phu" [EMAIL PROTECTED] To: "CF-Talk"

RE: [Re: An ignorance question to the masters]

2001-04-01 Thread Raymond B.
As it's your dev server I'd enable RDS and work through that. That way you can use Studio's full debugging, as well as having direct read/write to the files, the database view as reference, and quick preview w/in studio. RDS uses port 80 so there should be no firewall issues to worry about it.

Re: Auto Parts Database?

2001-04-01 Thread Karl Simanonok
Hi Bud, Thanks for your thoughtful reply. I follow your logic, which makes sense, but it doesn't cover all cases. For example, let's say you've got light bulbs in your database like 1152's and 1157's (I think those are valid numbers). Do you have an entry in the Availability table for

Re: Excluding IDs in queries

2001-04-01 Thread CF
In certain situations, I have run into trouble using IN with lists of values ... most notably when also using sub-queries. If you run accross the same problem, also try: WHERE LOCATE('#Client.Troll#', ID, 1) = 0 Todd Ashworth Web Application Developer Network Administrator Saber Corporation

RE: [Re: An ignorance question to the masters]

2001-04-01 Thread Arden Weiss
Personnally, I use CuteFTP for FTP processes (except when I use CFFTP WS_FTP is also another excellent alternative -- both free for initial download and $30 or so to keep. Note, that if you set up locally at 127.0.0.1 then just use DOS or Window file copy commands to do whatever you want

Re: [Re: An ignorance question to the masters]

2001-04-01 Thread zac
Arden Weiss wrote: Personnally, I use CuteFTP for FTP processes (except when I use CFFTP WS_FTP is also another excellent alternative -- both free for initial download and $30 or so to keep. I was under the impression (perhaps mistaken) that Cuteftp was a piece of spy ware that reported

RE: [Re: An ignorance question to the masters]

2001-04-01 Thread Arden Weiss
Surely you jest -- and yes it still is April Fool's day... See http://www.globalscape.com for the cutest FTP trick available... ^ / \__ (@\___ / O /(_/ /_/ Whoof... 410-757-3487 -Original Message- From: zac [SMTP:[EMAIL PROTECTED]] Sent:

Re: Auto Parts Database?

2001-04-01 Thread Dick Applebaum
It is even worse than you have described... Way back in '98 i did a custom shopping cart for this in Perl subset and no database. here is a brief description of the site from my resume: This is a specialized shopping cart that was custom-written to address a specific set of issues

Re: [Re: An ignorance question to the masters]

2001-04-01 Thread zac
Arden Weiss wrote: Surely you jest -- and yes it still is April Fool's day... No I don't (because I don't joke about security issues and I also think that April Fools gets overplayed on the net by people without much of a sense of humour) -- Microsoft products are successful -- they

Re: Auto Parts Database?

2001-04-01 Thread Bud
On 4/1/01, Karl Simanonok penned: Thanks for your thoughtful reply. I follow your logic, which makes sense, but it doesn't cover all cases. For example, let's say you've got light bulbs in your database like 1152's and 1157's (I think those are valid numbers). Do you have an entry in the

Re: how to get result from applet

2001-04-01 Thread Jack Tumlin
George, Look at the CFAPPLET tag. You can embed Java applets in a CFFORM. The Java return value is stored as a form value. Jack Tumlin Vice President Business Development Millennium Software, Inc. The Software Solutions Company [EMAIL PROTECTED] www.millsoftinc.com At 07:54 PM 3/30/2001

CreateUUID()

2001-04-01 Thread Dylan Bromby
Does anyone on this list rely on CreateUUID() for creating a completely unique identifier? Anyone know how it compares in effectiveness to using uniqueidentifier and making it a row GUID in SQL? ~~ Structure your ColdFusion code with Fusebox.

Version 2

2001-04-01 Thread Haryono ...
Hallo, Where can i get software version 2 which integrated with ColdFusion for source control integration? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives:

OOP

2001-04-01 Thread Haryono ...
Hallo, Is ColdFusion support OOP? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe:

RE: Using CFOBJECT to connect to WORD?

2001-04-01 Thread Chris Montgomery
Going to the below site causes a redirect to http://www.coldfusionmonthly.com/cfm/, a blank page. Anyone else seeing this? I'm using IE 5.0 on Win2K. -Original Message- From: Reed Powell [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 29, 2001 12:44 PM I just read a real

Re: [Re: An ignorance question to the masters]]

2001-04-01 Thread Julia Phu
Thank you all for your enlightement. Raymond's suggestion is a better solution for my situation. I'm developing a web application using Oracle 8i as a back end database. My concern is the ODBC from my laptop to the development server. I'm still learning. Julia "Raymond B." [EMAIL PROTECTED]

RE: OOP

2001-04-01 Thread Jared Clinton
No , CF is not an OO language/environment. But fusebox, spectra and cfobjects all attempt to bridge this gap in thier own way. The next version of CF will be different, possibly including native java? Jared Clinton. Maxi Multimedia -Original Message- From: Haryono ...

Re: Variables for shopping cart?

2001-04-01 Thread mahmad
U must have to maintain a session Array .. "W Luke"

support for unicode in CF5?

2001-04-01 Thread Kay Smoljak
Hi all, Can anyone comment on whether CF5 will have full unicode support? I can't seem to find it on the site or in the beta release notes. Thanks, Kay. __ Kay Smoljak - HTML/ColdFusion Developer - PerthWeb Pty Ltd Internet Solutions for your