Re: Problem of cfmx6.1 for windows eval installer (Urgent)

2004-08-09 Thread Don
Seems very odd.Feel free to contact support.Installation support at Macromedia is free. Damon Yes, agree, very odd, unfortunately the MM site for support is just confusing, is [EMAIL PROTECTED] still available? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

Re: BLACKSTONE Sneak Preview Posted

2004-08-09 Thread Don
Forget about thread changing, the key is to get problem resolved.The problem with the installer was the Developer Edition for Windows, targeted OS is win2k prof. I don't see how this thread got changed to a installation problem...but...I was getting a very weird installation error last week also.

Re: Val function seems buggy

2004-08-08 Thread Don
Now it goes to the definition of number, 0, as 1 or 2, is A NUMBER. 021 IS DIFFERNT FROM 21. I dunno - that seems right to me.The Val() function returns the value, not the digits - I would expect it to only return significant digits.After all the value of 021 is 21 just as the value of

Re: Val function seems buggy

2004-08-08 Thread Don
OK, I expected a bit too much from Val :), needed to get all the digits portion of a VAR.Thanks for everyone's input and time. No, it isn't - at least not mathematically.In math you use significant digits only - meaning, basically, only those digits that would affect the outcome in an

Re: BLACKSTONE Sneak Preview Posted

2004-08-08 Thread Don
://www.newatlanta.com From: Chunshen (Don) Li [mailto:[EMAIL PROTECTED] Sent: Saturday, August 07, 2004 11:01 PM To: CF-Talk Subject: Re: BLACKSTONE Sneak Preview Posted Question, for the Sourceless Deployment, is it possible to have mixed mode, that is, say, 99

Re: Val function seems buggy

2004-08-08 Thread Don
No, not good enough, but forget it I've got the problem resolved as I noted when I first posted the msg. needed to get all the digits portion of a VAR Then just use reverse(), you dont need val(). -- ___ REUSE CODE! Use custom tags; See

Re: BLACKSTONE Sneak Preview Posted

2004-08-07 Thread Don
Question, for the Sourceless Deployment, is it possible to have mixed mode, that is, say, 99% code are compiled while leaving one or two templates like application.cfm source code editable?TIA. http://www.macromedia.com/software/coldfusion/ A few of the new ColdFusion Blackstone release

Val function seems buggy

2004-08-07 Thread Don
cfset var120 = a string cfset dtgVar = Val(Reverse(var120)) The value of dtgVar is 21 instead of 021, 021 is correct.I have workaround to circumvent the problem though. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: HELP! Forgot cfadmin password

2004-08-03 Thread Don
Strange, the solution below did not work for a cfmx installation on a win 2k prof machine.Cf admin still requires password, even restarted cf service to no avail. You can disable the password, then run CF Administrator and reset it. Disabling the password will require access to either the

Revisit of Verify collection of various types of documents

2004-07-22 Thread Don
First email update, [EMAIL PROTECTED] should be replaced by [EMAIL PROTECTED] Haven't used Verify search for years.A revisit to the topic reveals that the documentation is poor on one of the key features of Verify collection.Say, a collection of various types of documents is now indexed but it

Re: Revisit of Verify collection of various types of documents

2004-07-22 Thread Don
UPDATE.OK, found an old doc, which actually in a way is better than the current one, The following sample is meaningful, however, the TITLE attributes seems to be unhelpful. (I missed the extension attributes). What do you think? cfindex action = "" collection = Snippets key =

Re: Revisit of Verify collection of various types of documents

2004-07-22 Thread Don
Never mind, I keep on answering my own questions. Haven't used Verify search for years.A revisit to the topic reveals that the documentation is poor on one of the key features of Verify collection.Say, a collection of various types of documents is now indexed but it needs to be updated

Strange dynamic Evaluate function

2004-07-21 Thread Don
calculation and dynamic evaluation: cfparam name=v default=0 cfset item1 = 5 cfset item2 = 10 cfset oper = * cfset v = Evaluate(item1 oper item2) the above would fail while the line below (without dynamic evaluation) won't. cfset v = 5 * 10 I guess, CF fails to evaluate/ignore * and the

Re: Strange dynamic Evaluate function

2004-07-21 Thread Don
Never mind, I have a fix to it. calculation and dynamic evaluation: cfparam name=v default=0 cfset item1 = 5 cfset item2 = 10 cfset oper = * cfset v = Evaluate(item1 oper item2) the above would fail while the line below (without dynamic evaluation) won't. cfset v = 5 * 10 I

The infamous LIST again!

2004-06-30 Thread Don
SET LIST VALUE: cfset cfList = a,b,,d cfloop index=e list=#cfList# cfoutput #e# /cfoutput /cfloop Three out of the above FOUR list elements would be displayed. No, my application requires more complexity than the above example.The point is, I need a NO VALUE STRING for the third element even if

Re: The infamous LIST again!

2004-06-30 Thread Don
Thanks for the REG EXP solution, it seems more elegant than another one that I came up with. cfset cfList = REReplaceNoCase( cfList, ,[[:space:]]*,,NO VALUE STRING,, ALL ) / That should do the trick _ From: Chunshen (Don) Li [mailto:[EMAIL PROTECTED] Sent: 30 June 2004 15:27 To: CF

Re: The infamous LIST again!

2004-06-30 Thread Don
Just want to thank everyone for responding.As I indicated, problem resolved soon after my posting, and also as I said, Alistair Davidson's solution seems an elegant way to fix CF List function deficiency, did not have a chance to check cflib, thought it may be along similar line, so does Adkins,

Re: Representing relationships with Flash

2004-06-09 Thread Don
Anyone know of a flash program that would represent relationships between objects defined in a database?I'm looking for something that would do the following: Bob --- owns --- a dog that was purchased --- from Petstore A --- owned by --- Sally. T If you or your org is willing to spend

Re: Web application structures

2004-06-09 Thread Don
It's good to have more than one friend. On Wednesday 09 Jun 2004 15:16 pm, Marlon Moyer wrote: via the url.What are other strategies that people use.Are they any MVC is your friend Use a fusebox (or Mach-II) for your View (display), and CFCs to implement all the logic and business process

Re: cfhttp under cf5 for win with https protocol (urgent)

2004-06-07 Thread Don
with https protocol in cf5, at least for windows has bug, so, he would look for the following thing in the alternative, a) show me some syntax, how it works b) how to install it c) how to test it with default/sample or new URL but this one has 27 page doc. Will update later.Again thanks. Don My

Re: creating reusable primary keys

2004-06-01 Thread Don
I guess this is more a DB question, but I'm thinking there is some ... Nick Cabell First of all, let me say, I agree with the most people's opinion minor space gain with quite a bit of effort may not be worthy.Now, on the technical feasibility of the problem, I believe yes, here's a starter, use

Re: OT: about MS SQL Server 7 and 2000

2004-06-01 Thread Don
to 300m. Thanks. Don P.S. hope not too OT (could we stretch the language a bit?) SQL Server 2000 made some improvements to the English Query, Full Text Indexing, OLAP, security, and web access functionality.It has some IDE improvements - most notable is the Object Viewer. Personally, as far as I'm

Re: Difficult SQL Question

2004-06-01 Thread Don
Write and post the DDL for the business case please. Ok, I have a bit of a problem with some SQL I'm trying to build. I have a table of Tickets, and then a table with a list of fields that are associated with tickets. Here are some values for the fields table: TicketIDFieldIDValue 11 Hello 12 5

Re: the ever popular cflock best practice revisited

2004-05-31 Thread Don
Here's a quick summary or status on the best practice of cflock use for session variable for both preCFMX and CFMX based on this thread and the two articles from MM site (correct me anyone you have new finding): *) Rule of thumb: use SCOPE attribue with value of session for the whole

Maybe OT: Recommendation of CF/sql server hosting in Europe

2004-05-31 Thread Don
Hi, Does anyone knows/uses some cf server(5 or cfmx) and MS SQL Server hosting service in Europe?Client is a small company, so, moderately priced or cheap would be desirable. TIA. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: Maybe OT: Recommendation of CF/sql server hosting in Europe

2004-05-31 Thread Don
Additional info: for English application/site. Hi, Does anyone knows/uses some cf server(5 or cfmx) and MS SQL Server hosting service in Europe?Client is a small company, so, moderately priced or cheap would be desirable. TIA. [Todays Threads] [This Message] [Subscription] [Fast

Re: Maybe OT: Recommendation of CF/sql server hosting in Europe

2004-05-31 Thread Don
Must be in Europe? The client is in Europe, thought he might feel more comfortable when hosting his app in a European environment. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: Maybe OT: Recommendation of CF/sql server hosting in Europe

2004-05-31 Thread Don
Their site doesn't really cover hosting CF specifically so it may be worth giving them a call All the contact details should be on the site http://www.pipemedia.net Thanks, I'll keep it in mind when talking to my client. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe]

OT: about MS SQL Server 7 and 2000

2004-05-31 Thread Don
Hi, If your shop or your clients run SQL Server 7 or 2000, what additional features/functions (possibly substantial) that you think would be very helpful to your organization or your client and why? Thank you. Don [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

Re: ugly truth

2004-05-30 Thread Don
with his customer. So, on the db end for this project, I don't seek any further input, thank you. Chunshen (Don) Li wrote: Client wants to run 30 concurrent users testing/training. Lets suppose those 30 users each click a new page every 10 seconds. That means 3 requests per second. Lets suppose

Re: the ever popular cflock best practice revisited

2004-05-30 Thread Don
value, then of course this type of NAMEd locking would fail, while cflock name=str#createuuid()# may be able to lock, making sense? or do I need more coffee?Any MM cf server architecture dude here? to confirm or clarify? Don I love mud, Issac, :) I think you made some valid points.To create a cf

Re: ugly truth

2004-05-30 Thread Don
Jochem, Sorry about the tone of my last response to you.The project is good and my client is happy. Don Chunshen (Don) Li wrote: Client wants to run 30 concurrent users testing/training. Lets suppose those 30 users each click a new page every 10 seconds. That means 3 requests per second

Re: ugly truth

2004-05-30 Thread Don
Oops, mis-information, client most recently told me the cf server, IIS web server and Access db WERE on a same box. But good to be confirmed Access db on a separate box does not make any sense. Chunshen (Don) Li wrote: They are Dell 1550 for WEB server (IIS 5.0) and 2550 for Access 2000

Re: ugly truth

2004-05-30 Thread Don
READ the original post FIRST before you respond! 256 MB RAM but it's true I just found out from my client. Buy them an extra 512 MB, it will cost yoy les than the time you're spending questioning about the problem ;-) -- ___ REUSE CODE! Use custom

Re: the ever popular cflock best practice revisited

2004-05-30 Thread Don
As a side note, cflock seams to be one of the most misunderstood elements of ColdFusion. There is not much information on it anywhere I looked. And when I find something it conflicts with information elsewhere. By far I am not an expert and don't spend my days looking at cflock, however, it would

the ever popular cflock best practice revisited

2004-05-29 Thread Don
Hi, I've inherited an app that does not lock session variables.The app runs under CF5.0. Have read cflock best practice for CF5.0. Here are a few questions: (A) CFLOCK 1) heard that cf5 server and cfmx server handles cflock differently, so, would cflock best pratice for cf5 applicable to cfmx if

Re: the ever popular cflock best practice revisited

2004-05-29 Thread Don
First, Tom, let me thank you for your knowledge and sharing.Please see my follow-up below. Don I am a bit rusty on this topic, but this is all what I remember. If anyone finds a mistake please correct me. -Original Message- From: Chunshen (Don) Li [mailto:[EMAIL PROTECTED] Sent: Saturday

Re: the ever popular cflock best practice revisited

2004-05-29 Thread Don
Tom, I'm re-writing that portion of other's code using SCOPE attribute of value session for locking now to support concurrent users for the app. Will test it to see result and update you and Isaac. Thanks again. Don P.S. Incidentally I noticed a lot of people using createUUID() for the named

Re: the ever popular cflock best practice revisited

2004-05-29 Thread Don
I love mud, Issac, :) I think you made some valid points.To create a cf lock like cflock name='session' ... is totally and obviously senseless. Don [Tom Kitta] Well, as always in these situations I did a quick check as how things are in the real life. Here is my code: cfset mm

ugly truth

2004-05-29 Thread Don
query-extensive or heavy-duty queries, and say, with 5 or 10 concurrent users hit same page/request.What's your thought? Certainly I'm pushing my client to throw in more RAMs on the box. TIA. Don Li [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: ugly truth

2004-05-29 Thread Don
Paul, Thanks for sharing your experience with DELL server, sorry I did not provide more info about the DELL server, it's 1550 for WEB server (IIS 5.0) and 2550 for Access 2000. About client variable vs. session variable, I'll keep it in mind. Don Don, If they're PowerApp web 100 servers

Re: ugly truth

2004-05-29 Thread Don
== - Original Message - From: Chunshen (Don) Li To: CF-Talk Sent: Saturday, May 29, 2004 6:59 PM Subject: ugly truth One would never expect a production server running with 256 MB RAM but it's true I just found out from my client.The thing is it's totally beyond me that Dell would roll out

Re: ugly truth

2004-05-29 Thread Don
://www.clickdoug.com/mailfilter.cfm For hosting solutions http://www.clickdoug.com http://www.forta.com/cf/isp/isp.cfm?isp_id=1069 == - Original Message - From: Chunshen (Don) Li To: CF-Talk Sent: Saturday, May 29, 2004 7:32 PM Subject: Re: ugly truth Thanks

Re: ugly truth

2004-05-29 Thread Don
Client wants to run 30 concurrent users testing/training. Still Access? And I don't want to argue with a client. Of course you can easily handle 1 request per second with Access and that equates to more traffic than many sites need to deal with. Who cares about concurrency when you don't need

Re: Bank of America estores, cfhttp, http_referer, troubles

2004-05-28 Thread Don
Don wrote: Since header is new for CFMX while my client uses cf5, with your idea of header parm is critical, I'll try Dave's suggestion of using CGI type. You didn't look at that tag I pointed you to.It already does that. Decides which version of CF is running and for MX+ uses type=header

Re: Bank of America estores, cfhttp, http_referer, troubles

2004-05-28 Thread Don
Matt, Are you suggesting that cfhttp url="" ... cfhttpparam type=CGI name=referer value=https://foo.com/bar.cfm ... /cfhttp in other words, target url is the value for the CGI type, as a way to overcome cf5's bug with SSL protocol? Thanks. Don Don wrote: my client's app is n

Any MM people here?

2004-05-28 Thread Don
to the CF5.0 and it won't work with CFMX. We need to upgrade within a day or two if possible would appreciate your support. Thanks. Don Li donli at hegelsoftware dot com Don Li [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: Bank of America estores, cfhttp, http_referer, troubles

2004-05-27 Thread Don
with cfhttp tag or only applicable to certain situation? Thanks. Don Check the archives for Bank of America, but in a nutshell: BofA requires that you have a list of trusted referrers.You'll find the BofA server is going to ignore your header assignment.So add the BofA server as a trusted referring

cfhttp under cf5 for win with https protocol (urgent)

2004-05-27 Thread Don
has not been rewritten to target/remote site. Client won't upgrade to CFMX, is the problem fixable in this setting or we've come to a dead end?Since the data population on a remote site's FORM, so, ftp etc. approach won't cut it. Any idea? would appreciate it since I get a deadline. Don [Todays

Re: cfhttp under cf5 for win with https protocol (urgent)

2004-05-27 Thread Don
Please explain how it works for what I need, how it fits into the whole thing? Syntax? CFexecute c:\stun\stunnel.exe argue1='value1' argue2='value2' Thanks. Don You could proxy the request through stunnel.exe.. http://www.stunnel.org Paul [Todays Threads] [This Message

Re: cfhttp under cf5 for win with https protocol (urgent)

2004-05-27 Thread Don
OK, now the architecture becomes clearer. after installation, *) edit registry *) run the service like stunnel -d 83 -r www.targetserver.com:443 (d for daemon? all unix geeks :) It may not be a solution that my remote client would accept though. fumbling registry would not make him comfortable

Re: Bank of America estores, cfhttp, http_referer, troubles

2004-05-27 Thread Don
as a part of TYPE attribute. Also, your tag seems to suggest the cfhttpparam HEADER attribute is very significent in overcoming the https bug.Yes? Thanks. Don P.S. you're ahead of me for sure, Happy Thursday :) Oops.I thought you were asking about the CF_BofAInProcess tag I wrote

Re: Bank of America estores, cfhttp, http_referer, troubles

2004-05-27 Thread Don
This is a BofA specific tag.Maybe using a header parm is critical on general principles.All I know for sure is without it BofA won't accept your input. Since header is new for CFMX while my client uses cf5, with your idea of header parm is critical, I'll try Dave's suggestion of using CGI

Re: Bank of America estores, cfhttp, http_referer, troubles

2004-05-27 Thread Don
So, Dave, along this line of thinking to overcome https protocol problem with cf5, I'll try adding cfhttpparam name=header type=CGI value=? Could you be more specific as to HTTP request headers that would trick receiving httpd with SSL to accept data? Thanks. Don I'm pretty sure that was added

Re: Preorder tree traversal algorithm

2004-05-24 Thread Don
Chris, I've implemented an entiy-relationship schema into a generic search application, sample deployment url, http://68.32.63.205/snap/ddSearch.cfm A tree view of entity-relationship is at beta stage. btw, what DBMS are you folks are using at UCSB? Regards, Don Tim, Not sure if you

Re: Preorder tree traversal algorithm

2004-05-24 Thread Don
Chris, I think my tree view of entity-relationship and data view would be closer to what you have in mind, but I don't intend to make it public for now, care to take a peak at it?My email address, donli at hegelsoftware dott com. Thanks. Don Don, Thanks, I'm not exactly sure how I could use

Re: SOT - Last nights NYCFUG meeting.

2004-05-21 Thread Don
Thanks, this is good to know.If you've tried BD yourself probably you would have an idea about the following questions: *) Could BD co-exist with CFMX and/or preCFMX on a same win OS box for dev? *) Does BD support both CFMX and preCFMX or only CFMX? Of course, I'll look into more detail about BD

Don't mean to be picky

2004-05-21 Thread Don
In the quest for the separation of business logic layer and presentation layer, went to fusebox.org site, interesting stuff, just for the heck of it, tried an invalid value for a parameter, fuse threw a cf error, it's sort of interesting that fuse threw its err msg, however, it also included CF

Re: Don't mean to be picky

2004-05-21 Thread Don
, and I'm very happy with the way it turned out. A widely adapted methodology. Great support community. You're right, that error on fusebox.org is careless. Greg -Original Message- From: Chunshen (Don) Li [mailto:[EMAIL PROTECTED] Sent: Friday, May 21, 2004 10:54 AM To: CF-Talk Subject: Don't

Re: Don't mean to be picky

2004-05-21 Thread Don
To be able to repeat great typo consistently would be very desirable :) A widely adapted methodology. adapted = great typo/pun! Chris [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: Don't mean to be picky

2004-05-21 Thread Don
with their query parameters. Scary - and sad. -Raymond Camden Chunshen (Don) Li wrote: In the quest for the separation of business logic layer and presentation layer, went to fusebox.org site, interesting stuff, just for the heck of it, tried an invalid value for a parameter, fuse threw

Re: Don't mean to be picky

2004-05-21 Thread Don
We just converted what had been a totally table-based layout to pure CSS in the past couple weeks and it was a breeze. So, end result = from ( bl -- pres ) to( bl pres ) yes? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: SOT - Last nights NYCFUG meeting.

2004-05-20 Thread Don
I didn't sign an NDA ;) If NYCFUG was in on the MM Breeze presentation, it was basically a high level overview of MM's plans for the rest of the year and into next. Some teaser demos of BlackStone, including very nifty CFFORM FLASH integration. Also CFDOCUMENT TYPE=PDF (or something to that

Re: SOT - Last nights NYCFUG meeting.

2004-05-20 Thread Don
OK.If it won't make you break NDA etc, any time frame for next cf release? No, that was not specifically mentioned. I can't comment on this feature specifically, but I do plan on discussing this on tour stops. --- Ben _ From: Chunshen (Don) Li [mailto:[EMAIL PROTECTED] Sent: Thursday

Re: SOT - Last nights NYCFUG meeting.

2004-05-20 Thread Don
Thanks. Chunshen, On 5/20/2004 at 13:41, you wrote: CL any time frame for next cf release 2005 was as specific as they'd get...and fairly noncommittal at that. But I don't think it will be concurrent with Longhorn's release ;) ~ Ubqtous ~ [Todays Threads] [This Message] [Subscription]

Re: The never-ending windows

2004-05-17 Thread Don
loading and size set to 0 to hide it, once the loader completes its job close the top and bottom frames).Since I don't use frames that often, just to check to see if anyone has done something similar and that works before I spend the time. Many thanks. Don How about doing something like this: MAIN

Re: The never-ending windows

2004-05-17 Thread Don
frame code is done. Elaborate please.main frame refers to Main Window? Many thanks. Don Original Message: From: Chunshen (Don) Li I've spent at least one hour on figuring out how to work out this oo thing.Here's the scoop, I have one Main window, which contain form and elements, upon cert

Re: The never-ending windows

2004-05-17 Thread Don
ot loaded, what am i missing?many thanks. Don [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: The never-ending windows

2004-05-17 Thread Don
w close the please wait .. frame parent.document.getElementById('waitDiv').style.visibility = 'hidden'; msg win does not show up, data not loaded, what am i missing?many thanks. Don [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: The never-ending windows

2004-05-17 Thread Don
Scott, Please see my comments below.Thanks. Don Original Message: I'd say try the JS alerts I suggested in my last reply and make sure that the iframe's src is being set. Right on.err msg undefined. There's also a possibility that the .cfm file is throwing an error (one problem

Re: The never-ending windows

2004-05-17 Thread Don
Original Message: Do you have a link where this is in action? Scott, I've just sent an email to [EMAIL PROTECTED] with a URL. Thanks. Don [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: The never-ending windows

2004-05-17 Thread Don
the iframe name=loadFrame id=loadFrame style=display:none; src="" with iframe name=loadFrame id=loadFrame style=display:none; document.href="" no success. I appreciate it. Don [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: The never-ending windows

2004-05-17 Thread Don
Scott, I sent you a link to info at scottbrady dot net around noon I believe, could you check that account? Thanks. Don Chunshen (Don) Li wrote: Well, without seeing a link, I'm running out of ideas. Another thing to try (I'm not sure on the browser compatibility

The never-ending windows

2004-05-16 Thread Don
Hello, I've spent at least one hour on figuring out how to work out this oo thing.Here's the scoop, I have one Main window, which contain form and elements, upon certain action, triggers a popup window, which does two things of 1) query a database to pull certain data out; 2) write the data to

Re: Challenge/Response and IIS Security

2004-05-13 Thread Don
Sorry, could you elaborate a bit? IF the DNS has a wild card entry and there is not a blank Host header for the site in IIS and they type a URL that does not have a host header they will be directed to the Default Website with the All Unassigned Header This is usually locked down. Rick

Challenge/Response and IIS Security

2004-05-13 Thread Don
A client informed me that his site (on NT class OS and IIS web server) now required Network password to logon. I suspected it's NT Challenge/Response and IIS Security problem with his new setup. Did quick research to confirm my suspicion, seems that my suspicion is valid, it seems at least two

Re: Challenge/Response and IIS Security

2004-05-13 Thread Don
Forgot to add in case you wonder, I understand the IWAM_{machineOrHostName} NT user account is required to be enabled to start the IIS server, it's related but that relevant to the problem at hand. A client informed me that his site (on NT class OS and IIS web server) now required Network

Re: Challenge/Response and IIS Security

2004-05-13 Thread Don
account? Otherwise, how?Secondly, if there's some sort of ghost account, unknown... user account, would that most likely a hacked acount? Thanks. At 01:05 PM 5/13/04, Don wrote: Also, your point is?if HTTP header is messed up / not set up properly in IIS, then NT logon would be prompted when

Re: Challenge/Response and IIS Security

2004-05-13 Thread Don
on Add Select the IP enter the Port but leave the Host Header Blank.I'm not with you here. Also, your point is?if HTTP header is messed up / not set up properly in IIS, then NT logon would be prompted when accessing a page? Thanks. Don In DNS if you have a Wild Card A record meaning

Re: Challenge/Response and IIS Security

2004-05-13 Thread Don
I find it very un common that the default settings for IIS are tampered with unless the person is knowledgeable with IIS. Though I'm not a networkd admin or the sort.I would think if I were MS I would make your obversation above true. I guess that should be the first question Did the person

Re: Challenge/Response and IIS Security

2004-05-13 Thread Don
Good info.Sorry I forgot to mention about the cf server version, it's 5.0.Now, as I asked, how to determine IUSR_MACHINENAME account's privilege to web root doc directory and subdirectories? Under IIS, for a particular directory (folder), the two most probable options are: 1) All Tasks a)

Re: Challenge/Response and IIS Security

2004-05-13 Thread Don
Now, as I asked, how to determine IUSR_MACHINENAME account's You will have to check the filesystem using Windows Explorer or the command line. Yes, I did, as my other posting indicated, IUSR_MACHINENAME account does not show up in the Users/groups list under Security, however, my site is

Re: Challenge/Response and IIS Security

2004-05-13 Thread Don
Oops, sorry I forgot to mention I'm checking on my XP prof box, for XP prof there are no such user/group as of Everyone and Authenticated Users while your info could be helpful if my client's box uses this naming convention.Microsoft loves to play tricks on people :) Again thanks. The

Re: Challenge/Response and IIS Security

2004-05-13 Thread Don
Shoot, excuse me for the lang, I was so absent-minded, missed the key word, contextual in your last posting, OK, what's the nuance between EVERYONE and ANONYMOUS LOGON from a site access perspective? Man! you're very very detail-oriented, a great quality, I'd say. Don I don't have an XP box

Re: Challenge/Response and IIS Security

2004-05-13 Thread Don
appreciate it. Don Man! you're very very detail-oriented, a great quality, I'd say. It's a necessary quality for configuring servers, unfortunately. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ phone: 202-797-5496 fax: 202-797-5444 [Todays Threads] [This Message] [Subscription

Re: Query to find Primary key?

2004-04-23 Thread Don
Check stored procedure, sp_pkeys at BOL. Is it possible to find the column name of the primary key in a table from a query? Select getPrimarykey() as Pkey From table FYI I'm running MS SQL2000 Thanks Mark W. Breneman -Cold Fusion Developer -Network Administrator Vivid Media

Re: Enter key not working to submit?

2004-04-22 Thread Don
Thanks for the update.So, versions would be taken into consideration as well for ua detection. On Thursday 22 Apr 2004 03:04 am, ChunshenLi wrote: js keycode etc. is fine it works while with Netscape (my version 6.2.1) it won't. However there is good key capture behaviour in recent Mozilla's,

Re: advice needed on multi-version data model design

2004-04-21 Thread Don
What exactly do you want to accomplish with this project?Use environment, intranet? internet? who are the users? user roles? and how do multi-version come into play in this scenario?And it would also be good to know what dbms you intend or are using now. Jochem, I am not sure this will work,

Re: advice need on multi-version data model design

2004-04-21 Thread Don
OK. Ignore my last post to another thread since I did not see this one. Here's what I would do, I'm thinking loud here, seems least efforts to get what needs to be done.Add columns for Reviewers only to any TABLE(s) deemed as necessary while applicants won't see these columns during application

Re: Enter key not working to submit?

2004-04-21 Thread Don
Your point is excellent.If I may I would add some detail here, with IE6.0 js keycode etc. is fine it works while with Netscape (my version 6.2.1) it won't.But it's easy for developer to determine a browser as to decide what to do. That is up to the user agent. Some do, some don't. Jochem

Re: Advanced search examples, field based searches

2004-04-14 Thread Don
, and I have tools for both types of users. Please contact me at donli at hegelsoftware.com for further discussion. Thanks. Don I'm looking for examples of search interfaces for end users that provide fully query type functionality in an interface simple enough for a non-technical end user to take

Re: Building a Database Database

2004-04-10 Thread Don
I've done SQL Server (7/2000) part, was interested in FoxPro and Access reverse engineering. Using CFMX... My current CF project includes ODBC Connections to FoxPro, SQLServer, and Access databases. These databases are designed and maintained by outside vendors. I merely query

HTML table won't top-aligned

2004-04-02 Thread Don
Background info: above the table, a dozen lines of js code and a bit of cf code, none has HTML space-taking code like br or p etc.Tons of logic inside the TABLE, in and out of TR, but all TRs are closed properly and have same number of TD, which are also closed properly.But the table is left

Re: [DWMX2K4] Does this feature sound familiar?

2004-04-02 Thread Don
CFStudio4.x if memory serves. I can't remember where this was, what software had it, and how you even got to it, but I'll describe what it was, and someone pipe up and tell me I'm either crazy, or I just need to dig deeper to find it... I seem to recall that in some prior version (maybe even

Function for data type determination

2004-04-01 Thread Don
OK, here's a part of a sample data after ToBase64 conversion from an image file, JVBERi0xLjIgDQol4uPP0w0KIA0KMTIgMCBvYmoNCjw8DQovTGV Now, to determine this set of data, none of CF6.1 decision or the like functions would do the job, IsObject comes close but won't do the job. The fun part is,

Re: Inserting a row at the top of a query

2004-04-01 Thread Don
The closest I can think of is to use the functions, QueryAddRow, QuerySetCell, you may want to look them up and play with it. Is there a way to programmatically insert a row into a CF recordset so that it comes back as the first record? Thanks much, Rich [Todays Threads] [This Message]

Re: Function for data type determination

2004-04-01 Thread Don
, then, not display it for it's quite meaningless to user. Unless I'm confused, an image converted to base64 *is* simple data. What are you trying to do here? --Ben Doom Chunshen (Don) Li wrote: [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: Function for data type determination

2004-04-01 Thread Don
that your best bet is to store some metadata about the content -- maybe a binary vs. text flag or something. I know that doesn't really answer your question, but I hope it helps anyway. --Ben Doom Chunshen (Don) Li wrote: [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe

Re: Function for data type determination

2004-04-01 Thread Don
Thanks and forgive my laziness for not reading up on Base64 instead of easy assumption. IsBase64 is an imposibility, aside from unencoding it and checking the validity of the result. Base64 encoding intentionally results in primitive data (a string) so it can be used wherever primitive data can

Re: Function for data type determination

2004-04-01 Thread Don
Thanks.I get your point.Essentially after posting I've come up with an effective, alternative solution. I don't think that's how base 64 encoding works. To the best of my knowledge, base 64 encoding simply uses a subset of ASCII characters to represent binary data. I could type a bunch of

<    4   5   6   7   8   9   10   11   12   13   >