RE: Experiences with VisualSourceSafe?

2002-12-02 Thread Jim Davis
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, December 03, 2002 1:07 AM > To: CF-Talk > Subject: Experiences with VisualSourceSafe? > > > Hi All, > > Does anyone here use CFMX and Microsoft Visual SourceSafe? > If so, how do you like it? A

Experiences with VisualSourceSafe?

2002-12-02 Thread cf-talk
Hi All, Does anyone here use CFMX and Microsoft Visual SourceSafe? If so, how do you like it? Are there any implementation or usage issues we should know about? Also... on the same note... does anyone recommend using a different software solution and if so why? -Novak

RE: CFX_Image - Quality of images not good when rotating

2002-12-02 Thread Tony Weeg
ever tried rotating an image a bunch of times in photoshop, or sizing/resizing/sizing, you will see a degredation of quality this way as wellh wonder if its related? ...tony -Original Message- From: Mark Smeets [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 03, 2002 12:18 AM

CFX_Image - Quality of images not good when rotating

2002-12-02 Thread Mark Smeets
Hi everyone, Has anyone experienced this when rotating images using this tag? The moment I rotate an image, the quality is degraded. I checked through the IML readme file that the tag comes with and after adding the quality command, there's been no improvement. Any thoughts? Thanks Mark

RE: shooting my server soon....

2002-12-02 Thread Tony Weeg
posimitively positive ;) but good lookin out!! tony -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Monday, December 02, 2002 11:26 PM To: CF-Talk Subject: RE: shooting my server soon As lng as you are sure . -mk -Original Message- From:

RE: shooting my server soon....

2002-12-02 Thread Mark A. Kruger - CFG
As lng as you are sure . -mk -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED]] Sent: Sunday, December 02, 2001 10:18 PM To: CF-Talk Subject: RE: shooting my server soon cf code u/p that is on a secondary page/step that if you dont know the correct u/p will just redire

RE: shooting my server soon....

2002-12-02 Thread Tony Weeg
cf code u/p that is on a secondary page/step that if you dont know the correct u/p will just redirect you to the main page. im the only one with access...and really, is just for testing...but im the only one with access. trust me i get sick of explaining "pebkac" to clients and give them only sooo

RE: shooting my server soon....

2002-12-02 Thread Mark A. Kruger - CFG
Are you speaking of an SQL server uname and pw? Or some form of login that you implement in your CF code? If it's SQL, then you can set up DB permissions in a very granular way and your risk is less (though not completely gone - if you are allowing update, insert or delete). If not, then you hav

RE: shooting my server soon....

2002-12-02 Thread Tony Weeg
even with a username/password protecting it? tony -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Monday, December 02, 2002 11:03 PM To: CF-Talk Subject: RE: shooting my server soon bingo - if you have a string you are building that includes single quo

(SOLVED) RE: shooting my server soon....

2002-12-02 Thread Tony Weeg
preserveSingleQuotes() wow. what a novel concept. you all rock. back to my raiders beating the jets :) i can get back to football now!!! later. -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED]] Sent: Sunday, December 02, 2001 10:57 PM To: CF-Talk Subject: RE: shooting my se

RE: shooting my server soon....

2002-12-02 Thread Mark A. Kruger - CFG
bingo - if you have a string you are building that includes single quotes, you have to use the "preservesinglequotes( )" function. Otherwise you would get exactly this syntax errror - the query without the function would end up being: update [reports] set password = ' '123xxx456' ' (two sets of s

RE: shooting my server soon....

2002-12-02 Thread Tony Weeg
ok, like samuel also said, maybe its my single quotes, ill check and let y'alls know ;) thanks. tony -Original Message- From: Antony Sideropoulos [mailto:[EMAIL PROTECTED]] Sent: Monday, December 02, 2002 10:52 PM To: CF-Talk Subject: RE: shooting my server soon In your form example

RE: shooting my server soon....

2002-12-02 Thread David Notik
Aha - that is important info. ;) Use PreserveSingleQuotes() around the query string. Also be careful allowing SQL to be submitted via a form, because it can allow malicious users to execute queries at will. --D -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED]] Sent: Monday

RE: shooting my server soon....

2002-12-02 Thread Antony Sideropoulos
In your form example, you may need to #PreserveSingleQuotes(form.sql)# Also confirm that the text isn't wrapping in the text box and picking up CRs and LFs. > >ok great, it works when i have this in a page... > > > update [reports] set password = '123xxx456' > > >but

RE: shooting my server soon....

2002-12-02 Thread Tony Weeg
cant use it without a u/p and there is also some hash encryption going on ;) tony -Original Message- From: Samuel Neff [mailto:[EMAIL PROTECTED]] Sent: Monday, December 02, 2002 10:48 PM To: CF-Talk Subject: RE: shooting my server soon So the entire SQL is inside the form field, i

RE: shooting my server soon....

2002-12-02 Thread Samuel Neff
So the entire SQL is inside the form field, including the single quotes? Then you need PreserveSingleQuotes()--and think about the security issue.. > -Original Message- > From: Tony Weeg [mailto:[EMAIL PROTECTED]] > Sent: Monday, December 02, 2002 10:44 PM > To: CF-Talk > Subject: RE: sho

RE: shooting my server soon....

2002-12-02 Thread Tony Weeg
ok great, it works when i have this in a page... update [reports] set password = '123xxx456' but not when i send this string from a form field textarea called sql update [reports] set password = '123xxx456' #form.sql#

RE: shooting my server soon....

2002-12-02 Thread Samuel Neff
Have you tried using ? That solved many CFMX/Oracle errors, maybe it helps SQL Server too. :) > -Original Message- > From: Tony Weeg [mailto:[EMAIL PROTECTED]] > Sent: Monday, December 02, 2002 9:45 PM > To: CF-Talk > Subject: shooting my server soon > > > why? > > update repor

RE: shooting my server soon....

2002-12-02 Thread David Notik
Try adding a valid WHERE clause and see if the statement works. UPDATE Reports SET Password = 'XX' WHERE ID=1 That will at least get you closer to diagnosing the cause. Also, be sure your CFQUERY tags have proper < and >. --Dave ### David Notik Digital202, LLC Imagination g

RE: shooting my server soon....

2002-12-02 Thread Tony Weeg
ok. update [reports] set password = '' Message: Error Executing Database Query. Detail: [Macromedia][SQLServer JDBC Driver][SQLServer]Line 1: Incorrect syntax near ''. Native Error Code: 170 SQL State: HY000 same error? tony -Original Message- From: Matthew Walker [mail

RE: shooting my server soon....

2002-12-02 Thread Tilbrook, Peter
Have you tried putting the "password" into the actual tag? -Original Message- From: Bruce Sorge [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 3 December 2002 1:48 PM To: CF-Talk Subject: Re: shooting my server soon What sort of error message are you receiving? - Original Message -

RE: shooting my server soon....

2002-12-02 Thread Matthew Walker
Don't know. One of the secrets of T-SQL I guess. ;-) > -Original Message- > From: Tony Weeg [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, 3 December 2002 4:06 p.m. > To: CF-Talk > Subject: RE: shooting my server soon > > > but why can i do it fine in select statements? > > tony > > -

RE: shooting my server soon....

2002-12-02 Thread Tony Weeg
thanks btw matt :) tony -Original Message- From: Matthew Walker [mailto:[EMAIL PROTECTED]] Sent: Monday, December 02, 2002 9:59 PM To: CF-Talk Subject: RE: shooting my server soon Reports is a reserved word. Wrap it in [] http://aspfaq.com/show.asp?id=2080 > -Original Me

RE: shooting my server soon....

2002-12-02 Thread Tony Weeg
but why can i do it fine in select statements? tony -Original Message- From: Matthew Walker [mailto:[EMAIL PROTECTED]] Sent: Monday, December 02, 2002 9:59 PM To: CF-Talk Subject: RE: shooting my server soon Reports is a reserved word. Wrap it in [] http://aspfaq.com/show.asp?id=20

RE: shooting my server soon....

2002-12-02 Thread Matthew Walker
Reports is a reserved word. Wrap it in [] http://aspfaq.com/show.asp?id=2080 > -Original Message- > From: Tony Weeg [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, 3 December 2002 3:45 p.m. > To: CF-Talk > Subject: shooting my server soon > > > why? > > update reports set password = '

RE: shooting my server soon....

2002-12-02 Thread Tony Weeg
Message: Error Executing Database Query. Detail: [Macromedia][SQLServer JDBC Driver][SQLServer]Line 1: Incorrect syntax near ''. Native Error Code: 170 SQL State: HY000 i can change it to anything, the value that is right now, i can make that anything, and nothing works. its a varchar

Re: shooting my server soon....

2002-12-02 Thread Bruce Sorge
What sort of error message are you receiving? - Original Message - From: "Tony Weeg" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, December 02, 2002 8:44 PM Subject: shooting my server soon > why? > > update reports set password = '' > > will not work in my

shooting my server soon....

2002-12-02 Thread Tony Weeg
why? update reports set password = '' will not work in my cf code on my cfmx server. i can run the same query in query analyzer, and all is well. any explanation would save my ***king server... thanks ...tony tony weeg [EMAIL PROTECTED] www.revolutionwebdesign.com rEvOlUtIoN wEb DeSiGn 4

RE: Architecting Tools

2002-12-02 Thread Jim Davis
> -Original Message- > From: SFN Development [mailto:[EMAIL PROTECTED]] > Sent: Monday, December 02, 2002 1:31 AM > To: CF-Talk > Subject: RE: Architecting Tools > > > I found a solution to the 'partner resistance' issue... > > Take the two car garage as your office. Go to > and buy b

Re: Nested Query Loops

2002-12-02 Thread Bryan Stevenson
Hmmm..interesting... I've never tested that behaviour, but I can tell you if I were to reference a field from the outer query in the inner query, I can only output an outer query field inside the inner query loop via qOuterQuery.FieldName (which would actually give the data from the last record re

RE: Sql 2000 -> XML cfmx

2002-12-02 Thread Rob Rohan
Thanks Samuel Rob http://treebeard.sourceforge.net http://ruinworld.sourceforge.net Scientia Est Potentia -Original Message- From: Samuel Neff [mailto:[EMAIL PROTECTED]] Sent: Monday, December 02, 2002 4:42 PM To: CF-Talk Subject: RE: Sql 2000 -> XML cfmx Rob, The trick is to use the

RE: Sql 2000 -> XML cfmx

2002-12-02 Thread Samuel Neff
Rob, The trick is to use the structure notation, and keep in mind that it always returns just one column. select * from books for xml auto "> Also remember that SQL Server returns only an XML fragment, not an actua

RE: Sql 2000 -> XML cfmx SOLVED

2002-12-02 Thread Rob Rohan
a bit of a hack but --- (thanks to Mark) select top 10 * from thetable_mst for xml auto, elements #xmltest[xmltest.columnlist][x]# seems to work. Rob http://treebeard.sourceforge.net http://ruinworld.sourceforge.net Scientia Est Potentia -Original Message---

RDS Timing Out.

2002-12-02 Thread Greg McDaniel
When I start CFStudio, I get a non-descript popup box that says "Operation timed out." When I try to debug a page it eventually says "Operation timed out." The entire CFStudio crashes even if there is no activity going on within CFStudio or CF5 Server. I searched through the Archives and through G

Sql 2000 -> XML cfmx

2002-12-02 Thread Rob Rohan
We are trying to retrieve xml data from an SQL 2000 database like so: select top 10 * from thetable_mst for xml auto, elements then we would like to use the xml with cf, but it doesn't seem possible. When we do: it shows a query with 4 rows all having a piece of the xm

RE: CF Service Starting/Stopping

2002-12-02 Thread Christine Lawson
Hi Bruce, Take a look at this technote about Occlude errors: http://www.macromedia.com/v1/Handlers/index.cfm?ID=16007&Method=Full Regards, Christine Lawson Macromedia -Original Message- From: Bruce, Rodney S HQISEC/Veridian IT Services [mailto:[EMAIL PROTECTED]] Sent: Monday, December 02

RE: One dynamic site for multiple indepentdent businesses

2002-12-02 Thread Rick Faircloth
Ben, I think I'm getting the idea of the dynamics involved in this type of site. I didn't realize the application variables could be redefined for each visitor... wouldn't that cause some problems! I can see now why you've said to verify the relationship between the domain and the variables in us

RE: Nested Query Loops

2002-12-02 Thread Jeff D. Chastain
Okay, what do you mean by properly referencing the queries? I always use the queryname.columnname inside of a loop, even a single loop. In this case, I added the variables scope to it as well. The issue is not a duplication of variable names. The issue is that the second query does not exist at

RE: One dynamic site for multiple indepentdent businesses

2002-12-02 Thread Ben Doom
: When you wrote: : : "you should be setting request-scoped variables in : the application file and set them for every request, not just the first : one." : : Do you mean that each page of the site should re-define the request scope : variables, : instead of just the first page (index.cfm?) I figu

RE: CF Service Starting/Stopping

2002-12-02 Thread Bruce, Rodney S HQISEC/Veridian IT Services
Its full of these warnings: In a CF_TagName construct custom tag file 'e:\CFusion\CustomTags\data\anyfile.cfm' will occlude custom tag file 'e:\CFusion\CustomTags\Custom Tags\functions\anyfile.cfm'. I changed the file name to anyfile, because this is happening for many files. There are .

RE: One dynamic site for multiple indepentdent businesses

2002-12-02 Thread Rick Faircloth
I've never used request scope variables. I did find this info in the CF Documentation: "The Request scope is a reserved variable/scope that allows you to store data pertaining to the complete hierarchy of custom tags used in a single page request." Seems to be made for this sort of thing as oppo

Re: Nested Query Loops

2002-12-02 Thread Bryan Stevenson
I beleive this is the case ALWAYS even if the 2 queries have seperate names and fields. This "feature" is there to prevent the issue I mentioned. It forces you to properly reference your variables ;-) Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc

Nested Query Loops

2002-12-02 Thread Keith Dodd
I don't know why this oddity. But do know that I've posted similar questions when nested queries weren't working, and someone would always remind me of this need. Don't think anyone ever had a reason though. :) Keith ~| Archives

RE: Nested Query Loops

2002-12-02 Thread Jeff D. Chastain
I can see that ... The issue is that I have two differently named queries with differently named columns. The CF error is that the inner query does not even exist, which is verified with a mailto:[EMAIL PROTECTED]] Sent: Monday, December 02, 2002 4:34 PM To: CF-Talk Subject: Re: Nested Query Loop

Re: Nested Query Loops

2002-12-02 Thread Cedric Villat
Jeff, This has always been the case for me. Had to copy the query to a new variable, and then it worked. I believe it is a bug. If not, it should be as I see no purpose for it. Cedric Villat Lead Designer http://www.Cornfeed.Com Creators of CFTicket - A multipurpose Email Management and Trouble T

Re: Nested Query Loops

2002-12-02 Thread Bryan Stevenson
Well...think about your nested loop having fieldnames that same as the outer loop CF has to know which field you are referencing ;-) Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED] -

RE: CF Service Starting/Stopping

2002-12-02 Thread Mike Brunt
Rodney, can you look at what is in the Application log? 232 and 109 errors can indicate slow responses to the browser. Kind Regards - Mike Brunt, CTO Webapper Blog http://www.webapper.net Web site http://www.webapper.com Downey CA Office 562.243.6255 AIM - webappermb Web Application Specialists

RE: Nested Query Loops

2002-12-02 Thread Jeff D. Chastain
I was referring to the inner query using the full scoped name - variables.queryName. So, why does setting newQueryName = variables.queryName PRIOR to looping the first query change anything? Both variables are in the variable scope and are created prior to the first loop - they should be the same

RE: client variables disappearing

2002-12-02 Thread Smith, Matthew P -CONT(DYN)
Thanks, Debbie. I assume the same limit does not apply to session variables so I might just recode a few areas. >>-Original Message- >>From: Debbie Dickerson [mailto:[EMAIL PROTECTED]] >>Sent: Monday, December 02, 2002 3:44 PM >>To: CF-Talk >>Subject: RE: client variables disappearing >>

Nested Query Loops

2002-12-02 Thread Keith Dodd
Not sure this is the problem, but I've had problems with nesting loops, forgetting that you need to set a variable from the outer loop (with a new name) before using that variable in the inner loop. I don't understand why, but variables get confused in nested loops. This *might* have something t

RE: CF Service Starting/Stopping

2002-12-02 Thread Bruce, Rodney S HQISEC/Veridian IT Services
sorry did a bad cut and paste below the error reads: Error number 232 occurred while attempting to write the reply to the web server. -Original Message- From: Bruce, Rodney S HQISEC/Veridian IT Services [mailto:[EMAIL PROTECTED]] Sent: Monday, December 02, 2002 3:02 PM To: CF-Talk Subje

Nested Query Loops

2002-12-02 Thread Jeff D. Chastain
I have got a situation where I need to dynamically generate a form with one section of the form being duplicated for every set of values in a query. Within each duplicated section of the form, there is a list of items generated by a second query. The result, I have a variables.queryName, but th

RE: One dynamic site for multiple indepentdent businesses

2002-12-02 Thread Ben Doom
To find out what domain is being accessed, simply look at the cgi.server_name variable. You could use a cfswitch to check the server name and set appropriate variables accordingly. Since in IIS (IIRC) you can set as many domains as you want to point to a single directory, you need maintain only o

RE: CF Service Starting/Stopping

2002-12-02 Thread Bruce, Rodney S HQISEC/Veridian IT Services
Ok Cleaned up the log files. Now in the server.log we are getting this error: Error number 232 occurred attempting to close connection to web server. almost every second :o( No wonder the old file was 1.2 gb in size. Does anyone know what it means? Only thing I found was: 232 The pipe is

Re: CF-TALK / Usenet?

2002-12-02 Thread Michael Dinowitz
Fuseware.com asked to mirror the lists wy back and have been doing so for years. You still need to be subscribed (in digest mode at least) to post, but otherwise you can read from them. In addition, you can always use the archives (www.houseoffusion.com/cf_lists) to read posts. It's a basic for

RE: client variables disappearing

2002-12-02 Thread Debbie Dickerson
If you're using CF5 or earlier, yes, there is a limit (65k). http://www.macromedia.com/v1/Handlers/index.cfm?ID=22902&Method=Full -Original Message- From: Smith, Matthew P -CONT(DYN) [mailto:[EMAIL PROTECTED]] Sent: Monday, December 02, 2002 4:28 PM To: CF-Talk Subject: client variables d

Crazy CFJava(script) scripting

2002-12-02 Thread Rob Rohan
I have been playing with the bean scripting framework stuff with CFMX and I have a question that is probably not going to be able to be answered, but... Does anyone know where cold fusion keeps it variable scopes? For reference here is the BSF code (watch out for line wrap): runtime;

Re: CF-TALK / Usenet?

2002-12-02 Thread Lewis Sellers
On Mon, 2 Dec 2002 19:39:51 +0100, in cf-talk you wrote: >> Just curious if Usenet will become an option at some point? >> >I am following the list using NNTP since years :-) >Just point your newsreader to news.fuseware.com > >Be aware that in order to post you need to be subscribed, I am subscrib

client variables disappearing

2002-12-02 Thread Smith, Matthew P -CONT(DYN)
Is there a limit to the total amount of information stored in client variables per user? I am having random client variables become undefined for no reason. It is not consistently the same variable, it's not a loss of state issue as we have cfid/cftoken in the url and I'm allowing cookies to be

One dynamic site for multiple indepentdent businesses

2002-12-02 Thread Keith Dodd
I *think* request scope has been around for a long time. With it, you have a variable available site-wide (for the current user) that does not have to be locked, as would/should session. (Similar to setting the datasource in the request scope: request.datasource = "MySource" and then using that

RE: One dynamic site for multiple indepentdent businesses

2002-12-02 Thread Rick Faircloth
Hi, Keith, and thanks for the reply. I'm using CF 4.5 (should have stated that earlier) so would I have the request scope available? And why would that be preferable to an application variable? Part of the problem with your solution at this point is that the site is a demo (hopefully the compani

Re: Problem with CFMX server

2002-12-02 Thread Bruce Sorge
Talk about irony. I was just experiencing this very same issue on a server I just put on-line. Thanks Dave! And thanks Alex for asking this question. - Original Message - From: <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, December 02, 2002 1:30 PM Subject: Re: Problem

RE: One dynamic site for multiple indepentdent businesses

2002-12-02 Thread Rick Faircloth
Hi, Ben and thanks for the reply. Yes, each business will have its own domain. All the files for the site will be in one folder and subfolders "RentalCompanies". I've been pulling the BusinessID from the bookmarked URL and assigning that to Application.BusinessID and using that on each page when

One dynamic site for multiple indepentdent businesses

2002-12-02 Thread Keith Dodd
Have done something similar, but query database first to have a list of businessIDs related to a domain name. In application.cfm, loop through the available list of domains/ids until find match with the domain being called. This becomes the businessID for the desired site. Then set the businessI

CFMX and SourceSafe

2002-12-02 Thread cf-talk
Hi All, Does anyone here use CFMX and Microsoft Visual SourceSafe? If so, how do you like it? Are there any implementation or usage issues we should know about? Also... on the same note... does anyone recommend using a different software solution and if so why? -Novak

RE: One dynamic site for multiple indepentdent businesses

2002-12-02 Thread Ben Doom
There are a couple of things I'd do differently (based on what I gather from your message). First, I'd look at the way you're deciding which business to display. Assuming you will use different domains for each business, I'd use those to decide what to display. Second, based on what you've said,

RE: CFMX not compatible with Oracle 8.0.5

2002-12-02 Thread Joe Eugene
Jim, I am not a DBA either...Just Stay up a lot! Follow these steps and let me know..if you can connect first. 1. Get Oracle 8.0.5 Installation CD and install Oracle 8.0.5 Client. 2. Open up Net 8 Easy Config and Create and new Service 3. Test your connection. 4. Look in the orant\jdbc for classes1

One dynamic site for multiple indepentdent businesses

2002-12-02 Thread Rick Faircloth
Hi, all. I'm trying to build a single site that will serve as a dynamic site whose content and graphics are totally different depending on the BusinessID. I've got the database setup with the info needed, and I've been trying to specify the BusinessID by putting it in the URL that I've bookmarked

RE: Trying to dynamically populate IFrame content pages...somehow.

2002-12-02 Thread Rick Faircloth
When I tried it with NN 6.2.2 the iLayer had scrollbars. Everything was the same as on IE 5.5... Rick -Original Message- From: Christian Cantrell [mailto:[EMAIL PROTECTED]] Sent: Monday, December 02, 2002 1:36 PM To: CF-Talk Subject: Re: Trying to dynamically populate IFrame content page

RE: CFMX not compatible with Oracle 8.0.5

2002-12-02 Thread Kevin Bridges
Can you totally go into detail about this ... we are having 8.1.5 issues and need to identify how the JDBC driver connect to the Oracle RDBMS - is it through the listener, or are there specific drivers that are being made use of on the oracle side. If there are, what are the version numbers of tho

Re: CFMX not compatible with Oracle 8.0.5

2002-12-02 Thread whitec
We had the same problem here. The production database was 8i and the test database was 8.0.5 and we could not get to the 8.0.5 database with the JDBC driver that came with ColdFusionMX. We ended up putting on the 8.0.5 client installer so that we could install an 8.0.5 type 4 JDBC driver for 8.0.

Re: CF Studio 4.5 Search Results

2002-12-02 Thread Chris Norloff
Yes, click to the right of all the filenames returned by the search, then right-click and select "Open in Browser". Be sure no files are selected (which is why I click first) because that will actually run the file in the browser rather than displaying the name(s). Chris Norloff -- Ori

RE: DTD/XML Schema Standards

2002-12-02 Thread Erik Yowell
Try some of these: http://www.xcbl.org http://www.ebxml.org http://www.cxml.org Erik Yowell [EMAIL PROTECTED] http://www.shortfusemedia.com -Original Message- From: Andy Ousterhout [mailto:[EMAIL PROTECTED]] Sent: Monday, December 02, 2002 10:35 AM To: CF-Talk Subject: RE: DTD/XML Sch

RE: OT - SQL Help

2002-12-02 Thread Tony Carcieri
ARGH! I figured it out... *lowering head* I forgot to change some code on an include page. DOH! Sorry folks! Thanks to everyone who helped. -Original Message- From: Tony Carcieri [mailto:[EMAIL PROTECTED]] Sent: Monday, December 02, 2002 2:56 PM To: CF-Talk Subject: RE: OT - SQ

RE: CF Service Starting/Stopping

2002-12-02 Thread Bruce, Rodney S HQISEC/Veridian IT Services
Jochem thanks for info -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED]] Sent: Monday, December 02, 2002 12:42 PM To: CF-Talk Subject: Re: CF Service Starting/Stopping Bruce, Rodney S HQISEC/Veridian IT Services wrote: > > and many of the following "warnings" > "W

RE: OT - SQL Help

2002-12-02 Thread Rob Rohan
:) SELECT * FROM SomeTable WHERE (Email = '[EMAIL PROTECTED]' OR SEmail ='[EMAIL PROTECTED]') AND IsDeleted = 0 AND Password = 'somepassword' AND Approved = 1 AND Registered = 1 as I am sure everyone is going to say Rob http://treebeard.sourceforge.net http://ruinworld.sourceforge.net Scienti

RE: OT - SQL Help

2002-12-02 Thread Matthew Small
It looks like you need parentheses around your OR statement rather than individual qualifier statements. SELECT * FROM SomeTable WHERE (Email = '[EMAIL PROTECTED]' OR SEmail = '[EMAIL PROTECTED]') AND IsDeleted = 0 AND Password = 'somepassword' AND Approved = 1 AND Registered = 1 Matthew Small I

RE: OT - SQL Help

2002-12-02 Thread Tony Carcieri
I just removed all the asp stuff and this is what gets sent. SELECT * FROM SomeTable WHERE (Email = '[EMAIL PROTECTED]') OR (SEmail = '[EMAIL PROTECTED]') AND (IsDeleted = 0) AND (Password = 'somepassword') AND (Approved = 1) AND (Registered = 1) -Original Message- From: Matthew Small [m

RE: OT - SQL Help

2002-12-02 Thread Matthew Small
You to see exactly what SQL Statement being sent to the db. How about displaying the sql string before it is processed and send that to the list. Matthew Small IT Supervisor Showstopper National Dance Competitions 3660 Old Kings Hwy Murrells Inlet, SC 29576 843-357-1847 http://www.showstopperon

RE: OT - CFMX JRun Web Server

2002-12-02 Thread Stacy Young
Really? Could have sworn I was told by someone at MM that it was a stripped down version of Apache...sorry for the confusion... Stace -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Monday, December 02, 2002 1:34 PM To: CF-Talk Subject: RE: OT - CFMX JRun Web Server

Re: CF Service Starting/Stopping

2002-12-02 Thread Jochem van Dieten
Bruce, Rodney S HQISEC/Veridian IT Services wrote: > > and many of the following "warnings" > "Warning","1844","11/01/02","08:07:07",,"In a CF_TagName construct custom > tag file 'e:\CFusion\CustomTags\index.cfm' will occlude custom tag file > 'e:\CFusion\CustomTags\ourtags\index.cfm'." > not all

RE: OT - SQL Help

2002-12-02 Thread Tony Carcieri
Exactly!!! But it is not working that way. I just sent a previous email explaining this. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Monday, December 02, 2002 2:36 PM To: CF-Talk Subject: RE: OT - SQL Help > Sorry for the OT but this should be a quick answer. >

RE: OT - SQL Help

2002-12-02 Thread Tony Carcieri
I guess I must have not been clear in my initial email. I am not getting an error. The "problem" is I have 2 different email addresses that can be used to log into an extranet. If the "primary" email doesn't match the "primary" email address then it should check to see if it matches the "secondary"

RE: CFMX not compatible with Oracle 8.0.5

2002-12-02 Thread Jim Campbell
Joe - Thanks - any advice will be appreciated. I'm not an Oracle admin by any means, but I'm willing to get under the hood. - Jim -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, December 02, 2002 1:02 PM To: CF-Talk Subject: Re: CFMX not compatible wi

[SOLVED] Re: Passing parameters

2002-12-02 Thread Cutter (CF_Talk)
Dave (and all), I tried it passing through the URL, and though it wrote it to the html CFMX still did not parse the code. Instead I decided to pass it like so: Then in my call of the tag I used this: This worked beautifully to call the tag properly and parse it out. So, in the future if

RE: OT - SQL Help

2002-12-02 Thread Dave Watts
> Sorry for the OT but this should be a quick answer. > This is in ASP (sorry). > > If I have the following: > sql = "SELECT * FROM SomeTable " > sql = sql & "WHERE Email = '" & Request("un") & "'" > sql = sql & " OR SEmail = '" & Request("un") & "'" > sql = sql & " AND IsDeleted = 0 " >

Re: Problem with CFMX server

2002-12-02 Thread hostmonster
hi Dave... obviusly... rush make simple issues to look like great truobles with the link you provided i solved my problem in one second... many thanks and sorry for bothered... i completely forgot to look in macromedia site many many thanks alex - Original Message - From: "Dave Watts" <[

RE: OT - SQL Help

2002-12-02 Thread Matthew Small
What error are you getting? Matthew Small IT Supervisor Showstopper National Dance Competitions 3660 Old Kings Hwy Murrells Inlet, SC 29576 843-357-1847 http://www.showstopperonline.com -Original Message- From: Tony Carcieri [mailto:[EMAIL PROTECTED]] Sent: Monday, December 02, 2002 2:1

RE: OT - SQL Help

2002-12-02 Thread Matthew Small
What error are you getting? Matthew Small IT Supervisor Showstopper National Dance Competitions 3660 Old Kings Hwy Murrells Inlet, SC 29576 843-357-1847 http://www.showstopperonline.com -Original Message- From: Tony Carcieri [mailto:[EMAIL PROTECTED]] Sent: Monday, December 02, 2002 2:1

RE: Problem with CFMX server

2002-12-02 Thread Dave Watts
> hi i'm setting up a webserver with a number of domains > with this structure: > > domain 1 (ip address 1) -> home dir= d:\home\site1 > domain 2 (ip address 2) -> home dir= d:\home\site2 > domain 3 (ip address 3) -> home dir= d:\home\site3 > > and the result is that every time i restart the CF

RE: OT - SQL Help

2002-12-02 Thread Tony Carcieri
No it did not. It's very bizarre. -Original Message- From: Andy Ewings [mailto:[EMAIL PROTECTED]] Sent: Monday, December 02, 2002 1:04 PM To: CF-Talk Subject: RE: OT - SQL Help my ASP's not what it used to be! - so did Randells post sort it? -Original Message- From: Tony Carcier

Problem with CFMX server

2002-12-02 Thread hostmonster
hi i'm setting up a webserver with a number of domains with this structure: domain 1 (ip address 1) -> home dir= d:\home\site1 domain 2 (ip address 2) -> home dir= d:\home\site2 domain 3 (ip address 3) -> home dir= d:\home\site3 and this works fine now i installed cf mx and i want every website c

RE: CF Service Starting/Stopping

2002-12-02 Thread Bruce, Rodney S HQISEC/Veridian IT Services
Mike Thanks for the reply Unfortunately cant get the server.log open the file is 1.2GB in size. Got to the Application.log open(it was only 123mg), See errors of form fields missing/misspelled etc. (which were known and corrected) and many of the following "warnings" "Warning","1844","11/01

Re: CFMX not compatible with Oracle 8.0.5

2002-12-02 Thread Jebmail
Yes.. CFMX Oracle driver will only work with Oracle 8"I" and above. However i got CFMX working with Oracle 8.0.5 Using Oracle Native Type IV drivers. The setup is little Tricky but works!\ Let me know.. if you need help configuring this. Joe On Mon, 2 Dec 2002 10:50:05 -0600 Jim Campbell <[EMAI

RE: CF-TALK / Usenet?

2002-12-02 Thread Lee Fuller
Uhm.. Just a guess.. but this is probabaly a bad thing, coming from the author's site: -- Error occurred in tag CFX_NNTP A valid news server was not specified The error occurred in F:\sites\www.fuseware.com\support\News\index.cfm: line 7 5 : 6 : 7 : 8 : 9 : -- | ---

Re: Stripping end of cfhttp.filecontent

2002-12-02 Thread Cathy Taylor
Thanks! That did the trick! Cathy Date: 12/02/2002 12:03 PM Author: Steve Reich Try this ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm

RE: OT - CFMX JRun Web Server

2002-12-02 Thread Rob Rohan
Ok, try typing telnet 127.0.0.1 8500 at a command prompt, then GET /blarg.cfm (that's 2 enters) then look at the header. Rob http://treebeard.sourceforge.net http://ruinworld.sourceforge.net Scientia Est Potentia -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent:

RE: OT - CFMX JRun Web Server

2002-12-02 Thread Dave Watts
> try typing > > telnet 127.0.0.1 80 > > at a command prompt, then > > GET /blarg.cfm > > (that's 2 enters) > > then look at the header. That's fine, except the CFMX web server listens on port 8500 by default. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 f

RE: OT - CFMX JRun Web Server

2002-12-02 Thread Rob Rohan
try typing telnet 127.0.0.1 80 at a command prompt, then GET /blarg.cfm (that's 2 enters) then look at the header. Rob http://treebeard.sourceforge.net http://ruinworld.sourceforge.net Scientia Est Potentia -Original Message- From: Jeff D. Chastain [mailto:[EMAIL PROTECTED]] Sent: M

Re: CF-TALK / Usenet?

2002-12-02 Thread Massimo, Tiziana e Federica
> Just curious if Usenet will become an option at some point? > I am following the list using NNTP since years :-) Just point your newsreader to news.fuseware.com Be aware that in order to post you need to be subscribed, I am subscribed to the digest, this way I can post without getting hundreds o

  1   2   3   >