HTTP/1.0 404 Object Not Found

2001-09-12 Thread John McCosker
Has anyone come accross this problem in cf5.0, every now and again it cannot find cfinclude templates. Http/1.0 404 Object Not Found. Cheers for any help or advice. We are all stunned here by the scale of the horror inflicted on the nucleus of New York city and the American Government in

Re: HTTP/1.0 404 Object Not Found

2001-09-12 Thread Jennifer
Are you trying to send URL variables to it? At 08:08 AM 9/12/2001 +0100, you wrote: Has anyone come accross this problem in cf5.0, every now and again it cannot find cfinclude templates. Http/1.0 404 Object Not Found. Cheers for any help or advice. We are all stunned here by the scale of the

RE: HTTP/1.0 404 Object Not Found

2001-09-12 Thread John McCosker
yes! Is there a fix for this Jennifer? -Original Message- From: Jennifer [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 12, 2001 8:10 AM To: CF-Talk Subject: Re: HTTP/1.0 404 Object Not Found Are you trying to send URL variables to it? At 08:08 AM 9/12/2001 +0100, you wrote:

Change to home page

2001-09-12 Thread Mike Kear
Many on the HTML writers guild (HWG) are urging webmasters to change their home pages to include a US flag at half mast. I have one that I got from a free site, and it's on all the sites I control. I'd urge everyone else also put such a graphic on their home page too (help yourself to mine if

Response from jjamail (jjamail@advocacyinc.org)

2001-09-12 Thread jjamail
--=_956750==_ Content-type: text/plain Content-Transfer-Encoding: 7bit I will be out of the office Wednesday, September 12, 2001 until Tuesday, September 18, 2001. If you need immediate attention, please contact Carlton Whitmore. FAQ:

RE: Passing variables in UDF

2001-09-12 Thread Raymond Camden
Remember, you can always do: CFSET Res = Foo(Duplicate(st)) or CF_Foo Input=#Duplicate(st)# === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally

RE: Change to home page

2001-09-12 Thread Peter Tilbrook
Mike, I work in Boeing House so you can imagine the sombre mood here at the moment. The general security at the building has been beefed up also. I'm sadly aware that many fellow CF developers were present at either the Pentagon or the WTC. Peter Tilbrook ColdFusion Applications Developer

Re: UML tools fro CF (Admin) Please move OT to CF-Community

2001-09-12 Thread Richard L Smith
To that end, Anyone know of any good UML or similar modeling tools that work with CF Thanks Rick - Original Message - From: Shawn Grover [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, September 11, 2001 5:57 PM Subject: RE: (Admin) Please move OT to CF-Community Thank

Re: Complicated mail/DB problem

2001-09-12 Thread W Luke
Thanks for your help yesterday - found an alternative solution now, partly using your code - thanks for the ideas Will - Original Message - From: [EMAIL PROTECTED] Newsgroups: cf-talk Sent: Tuesday, September 11, 2001 6:14 PM Subject: Re: Complicated mail/DB problem why couldn't you

RE: UML tools fro CF (Admin) Please move OT to CF-Community

2001-09-12 Thread Neil Clark
UML, doesnt work with CF per say. Any good modelling tool say from Together Software (they do a free Java based lite one) is good. The UML language is suposed to be universal; it can work with any language. ~~ Structure your ColdFusion code with

Using in Cfset

2001-09-12 Thread W Luke
Hi. If I need to set a variable that includes, for example, the dateformat function as follows - how can I alter it for use in a query? (i.e. the var spcheck will be entered into the DB) cfset spcheck = You last updated them on #dateformat(thedate, dd mm )# Using that obviously just causes

RE: Using in Cfset

2001-09-12 Thread Mike Townend
Use single quotes.. cfset spcheck = You last updated them on #dateformat(thedate, 'dd mm ')# Or concatonate the variable cfset spcheck = You last updated them on dateformat(thedate, dd mm ) HTH Mike -Original Message- From: W Luke [mailto:[EMAIL PROTECTED]] Sent:

Re: thoughts of the day

2001-09-12 Thread Judith Taylor
Michael, Thank you for sharing your thoughts. You are an artist with words. Judith Michael Vinson put into words: stepped outta the house tonight blue sky blue pale blue all blue no cloud no vapor trail anywhere no vapor only blue the light was fading blue to white and now still blue but

OT? Good ref for stored procedures

2001-09-12 Thread Ben Whalley
Does anyone know of a good online ref or books covering a. writing stored procedures in SQL server and b. using them within CF? Many thanks, Ben Whalley --- * This message has been processed by MailGuard SMTP from NET-TEL

SOT: Regex Help

2001-09-12 Thread Tony Schreiber
I get these text files that I process with CFHTTP (that part works very well for now), but occassionally, the files are messed up, in that they have some quote marks within the text qualified quote marks. Ug. Like this: column 1,column 2 is ok,column has some nickname in it,ug Which CF chokes

RE: OT? Good ref for stored procedures

2001-09-12 Thread Neil Clark
Programming SQL Server is a good one. I think that is the title, but that is the kind of book you want. ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives:

RE: Regex Help

2001-09-12 Thread Rich Wild
Try this: (although I haven't tested it properly) cfset this = 'column 1,column 2 is ok,column has some nickname in it,ug' cfset this = rereplace(this, ([^,])#chr(34)#([^,]), \1'\2, ALL) cfoutput#this#/cfoutput -Original Message- From: Tony Schreiber [mailto:[EMAIL PROTECTED]]

RE: Regex Help

2001-09-12 Thread Raymond Camden
I believe this will do it for you - but I haven't had a lot of time to test it: CFSET X = 'column 1,column 2 is ok,column has some nickname in it,ug' CFSET X = REReplace(X,([^,])([^,]),\1\2,ALL) CFOUTPUTx is now #X#/CFOUTPUT

SOT:Hierarchy

2001-09-12 Thread Matthew W Jones
Is anyone using the Nested Set Method for Hierarchy's? Do you have any implementation tips/tricks etc. (specifically towards insert, update, ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the

RE: Terrorist and gas shortage

2001-09-12 Thread Terri Stocke
Same situation here (metro Detroit). I filled up at 6:00 p.m., and could barely pull into the station. Gas was 1.57 then. An hour later it was 1.68. This morning on my way to work the same gas station went to 1.76. Relatives in other cities have told me that in some parts of Detroit and

RE: Hierarchy

2001-09-12 Thread Matthew W Jones
That should have read: Is anyone using the Nested Set Method for Hierarchy's? Do you have any implementation tips/tricks etc. (specifically towards insert, update, de lete, reordering of an items left/right boundaries)? -Original Message- From: Matthew W Jones [mailto:[EMAIL PROTECTED]]

Re: stored procedures

2001-09-12 Thread Daniel Larson
Inside SQL Server 2000; Microsoft Press is a great reference with 'beyond basic' material. You really need to master database skills to be a great developer, so it's not too far off topic! Here's a simple SELECT stored procedure; and how it's called in CF. I don't use the CF stored procedure

RE: Terrorist and gas shortage

2001-09-12 Thread Paris Lundis
heck sounds like we might prevent that recession through buying :) the wheels of our economy have been negatively impacted. [finding the future in the past, passing the future in the present] [connecting people, places and things] -Original Message- From: Terri Stocke [EMAIL

RE: Terrorist and gas shortage

2001-09-12 Thread Rich Tretola
Those store and gas station owners who are gauging prices should be arrested. They are just GREEDY BASTARDS and they now have bad karma and will have to deal with that later. What comes around goes around. Rich -Original Message- From: Terri Stocke [mailto:[EMAIL PROTECTED]] Sent:

Re: Hierarchy

2001-09-12 Thread John Lucas
http://www.secretagents.com/tools/freeviewlets/index.cfm?category_id=20show viewlets=1 - Original Message - From: Matthew W Jones [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, September 12, 2001 9:53 AM Subject: RE: Hierarchy That should have read: Is anyone using

real time processing

2001-09-12 Thread Chase, John
Hello, I've been doing intranet sites (mostly forms/reports) and lurking on the list for several years now. Recently my clients have expressed a great interest in real-time monitoring, so I'm a bit out of my league. We have a WebDaq that writes a file every x seconds. I need to get the file,

RE: HTTP/1.0 404 Object Not Found

2001-09-12 Thread Billy Cravens
Remember that CFInclude pages aren't executed - you're simply pulling in the code. As such, it looks for a file name - it's not parsing a URL. In other words, if you look for index.cfm?url=something, then CF looks for a file called index.cfm?url=something, which of course doesn't exist.

RE: Terrorist and gas shortage

2001-09-12 Thread Adkins, Randy
I as much as everyone else is truly sad by the horrid events that took place. However, please keep in mind this list if related to CF. Can we move the topic to CF-Community or elsewhere? Don't get me wrong, I am in the same boat as everyone else and just as upset at the terrorist attack and

RE: real time processing

2001-09-12 Thread Chase, John
I meant CFHTTP-GET ;) -Original Message- From: Chase, John Sent: Wednesday, September 12, 2001 9:03 AM To: [EMAIL PROTECTED] Subject: real time processing Hello, I've been doing intranet sites (mostly forms/reports) and lurking on the list for several years now.

RE: Terrorist and gas shortage

2001-09-12 Thread Gary P. McNeel, Jr.
No kidding. Blood suckers. Now THAT is true capitalism. -Gary -Original Message- From: Rich Tretola [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 12, 2001 10:00 AM To: CF-Talk Subject: RE: Terrorist and gas shortage Those store and gas station owners who are gauging

Re: Terrorist and gas shortage

2001-09-12 Thread Timothy Lynn
No kidding. Blood suckers. Now THAT is true capitalism. -Gary No, it isn't. THAT is price gouging. THAT is thievery. THAT is NOT capitalism. -Tim ~~ Structure your ColdFusion code with Fusebox. Get the official book at

Re: Terrorist and gas shortage

2001-09-12 Thread Larry W. Virden
Re: gougers Not everything is as it seems. Unfortunately, not everyone is at liberty to explain all of what is going on in our country at this time. -- Never apply a Star Trek solution to a Babylon 5 problem. Larry W. Virden mailto:[EMAIL PROTECTED] URL: http://www.purl.org/NET/lvirden/ Even

RE: real time processing

2001-09-12 Thread Billy Cravens
Something like this is really not what CF is designed for. You'd really want some sort of a server running that communicated the data to the client on a streaming basis - unless there's something already built, you'd do some sockets programming on the server (I'm guessing C++ or Java would be

RE: real time processing

2001-09-12 Thread Kurt Ward
I wouldn't even attempt this in CF. You will have to use Java/ActiveX Control/etc. for real time or near real time data due to the need for a persistent connection. Take a look at LabView from National Instruments. Kurt -Original Message- From: Chase, John [mailto:[EMAIL PROTECTED]]

OT: Multiple pdfs....

2001-09-12 Thread Janine Jakim
I have 2 problems trying to use ActivePDF- can anyone help? 1. I have a button that pulls up a single pdf report card. I now need to make it so that multiple (ie: whole grade) report cards can be printed out. I was told that I had to use the tag CFSET aptoolkit.FormNumbering=1 But that just: A.

Tracking data download %'s on the browser

2001-09-12 Thread Carol Bluestein
Hi All. The question: How do I let the user know how long it will take to execute their query? Either in text or visually. I'm stumped because the execution is on the server and I want to display how much time is left on the browser. While I can create a visual in a new window that will load

Session Variables and directories

2001-09-12 Thread Ben Densmore
I am currently working on an order entry app and created a login screen before a user can get to the actual app. When they login in I am creating several session variables which work, but once a person is logged in successfully they get taken to a page which is in another directory. So if the

Re: Terrorist and gas shortage

2001-09-12 Thread Dave Hannum
Not everything is as it seems. It's easy to explain. Where I live, the gas price did not move - $1.69. But 21 miles the road, every gas station in town raised their prices at the same time to as high as $4.00. The difference? Up the road is a more populated area. Folks panicked, and supply

RE: Terrorist and gas shortage

2001-09-12 Thread Tyson Vanek
I agree. Not that I am apathetic to what has taken place, but this it NOT the place to discuss these issues. PLEASE take these topics and messages elsewhere. Another mailing list could easily be created and joined by those that are interested in having these discussions and voicing opinions.

RE: Hierarchy

2001-09-12 Thread Matthew W Jones
Actually, that tutorial is where this question began. The tutorial deals with getting the data out. I had searched the dev exchange looking for custom tags to simplify some of the work for getting the data in and manipulating it, to no avail. So, now my intent is to write a set of custom tags,

Re: Session Variables and directories

2001-09-12 Thread cf refactoring
Did you check for a cfapplication tag in your sales directory? it might very well be in your Application.cfm file. --- Ben Densmore [EMAIL PROTECTED] wrote: I am currently working on an order entry app and created a login screen before a user can get to the actual app. When they login in I

RE: Session Variables and directories

2001-09-12 Thread Raymond Camden
Check to see if your directories have application.cfm files that create new apps. Ie, if your root folder has an application.cfm that has: CFAPPLICATION NAME=RayRocks and your subdirs do CFAPPLICATION NAME=Foo then your users will be entering a new application. Session vars are per user AND

E-Commerce...?

2001-09-12 Thread Ian Lurie
I know this has been asked before, but here goes: Anyone out there know a good e-commerce product, preferably easily customized, that can handle a fairly large store (500-1000 products)? Thanks, Ian Portent Interactive http://www.portentinteractive.com Combining process, design, content to

MKS Version Control has anyone used this?

2001-09-12 Thread Brunt, Michael
Has anyone used the MKS version control software and have any comments? Kind Regards - Mike Brunt Sempra Energy 213.244.5226 ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community.

RE: Verity issue

2001-09-12 Thread Dave Watts
I am having a very difficult time with populating a verity index. I have defined the collection with cfserver. I am using a query to populate it. here is my code blocks, can anyone please tell me what I am doing wrong here? ... The cf_showquery will show everything I have selected

RE: Hierarchy

2001-09-12 Thread Diana Nichols
Don't know how much this will help, but here's some code I wrote to add and delete employees from a tree: !--- add someone to the tree --- ---passing (name,left,right) values as form.boss--- cfset bossright = listlast(form.boss)cfset bossleft=listgetat(form.boss,2) !---

Re: Multiple pdfs....

2001-09-12 Thread Stephen M Aylor
Janine, can you email me a blank copy of your pdf form template(s)? Part of my problem in trying to assit you here, is that Im not sure exactly what your output is supposed to look like. Im using CFOBJECT, the free activeX toolkit from adobe and pdf forms to successfully pipe 450 fields of

RE: E-Commerce...?

2001-09-12 Thread Christopher Olive
try CFWebstore. Mary Jo has created a truly outstanding product. christopher olive, cio cresco technologies, inc http://www.crescotech.com -Original Message- From: Ian Lurie [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 12, 2001 12:29 PM To: CF-Talk Subject: E-Commerce...? I

RE: UML tools fro CF (Admin) Please move OT to CF-Community

2001-09-12 Thread Mark Stewart
I use Visio with its UML capabilities and just use what fits with my particular situation. Mark -Original Message- From: Richard L Smith [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 12, 2001 8:08 AM To: CF-Talk Subject: Re: UML tools fro CF (Admin) Please move OT to

RE: Session Variables and directories

2001-09-12 Thread Mark Stewart
Once you leave the boundaries of your cfapplication tag, you can't reference those session variables. Session variables are tied to a specific application name. Mark -Original Message- From: Ben Densmore [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 12, 2001 12:00 PM To: CF-Talk

test email

2001-09-12 Thread Won Lee
This is just a test email. ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives:

RE: E-Commerce...?

2001-09-12 Thread John Anderson
Try Netready http://aloha-webdesign.com/ Very scalable and customizeable. -Original Message- From: Christopher Olive [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 12, 2001 9:41 AM To: CF-Talk Subject: RE: E-Commerce...? try CFWebstore. Mary Jo has created a truly outstanding

RE: Hierarchy

2001-09-12 Thread Jeremy Allen
We have stored procedures to manipualte all aspects of our NTM trees. I have sucessfully implemented NTM trees. Our stored procedures were based on excellent stored procedures written by Dave Medinets, with a little help from Dan Switzer ;) You can also check out SQL For Smarties by Joe Celko

RE: Attributes Scope Variable List

2001-09-12 Thread Dave Watts
The URL and FORM scopes are structures. I think this applies to all scopes but can't be sure. No, some scopes aren't exposed as structures. For example, the Server and Client scopes are not structures. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496

Simple Verity Database Search

2001-09-12 Thread Angel Stewart
Here's something else which should be brutally simple, but which I just can't get to work. *sigh* cfindex action=REFRESH collection=yellowpages TYPE=CUSTOM query=GetResults key=ID title=GetResults.Company_Name body=Company_Name,Last_Name,First_Name,Address,State,Classification

RE: attacks

2001-09-12 Thread JSchlosser
It is misperceptions regarding this alliance that have gotten us into this mess. I was driving toward the Pentagon when it was hit. My church lost at least 11 on the ground plus a family in the plane that struck it. My friends there are safe, thanks be to God. JoAnn A. Schlosser Senior

Re: create excel document

2001-09-12 Thread Julia Green
Ben -- Does this code download cfoutput to an Excel file like I think it does. I keep getting an error with #path#. I am attaching the cfm file that I need it to work with. Thanks for doing this...I am at wit's end with a cf developer breathing down my neck... Julia Computer Consulting Web

Re: E-Commerce...?

2001-09-12 Thread webmaster
cfwebstore is the only way to go - Original Message - From: Ian Lurie [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, September 12, 2001 9:28 AM Subject: E-Commerce...? I know this has been asked before, but here goes: Anyone out there know a good e-commerce product,

RE: Simple Verity Database Search

2001-09-12 Thread Bill King
Hello Angel. I have had a lot of -fun- with verity as well. I usually resort to creating a new collection using the administrator and run the CFINDEX again (on the new collection.) Then it will usually work. Sorry so technical :) (sarcasm is my forte') - BILL - -Original Message-

RE: E-Commerce...?

2001-09-12 Thread Duane Boudreau
Ian, If you plan to do any customization of the product yourself, I would strongly advise against ablecommerce. Unfortunately, I've had the displeasure of working with and customizing ACB 2.6-2.9 for the past 9 months and here are just some of the things I've found. Its expensive (as compared

Re: Terrorist and gas shortage

2001-09-12 Thread ccook22
I was watching coverage today at lunch and they have 1-800- numbers you can call to report price gouging, and from what I understand legal action can occur via the attorney general. Sorry for the OT post. CC Dave Hannum [EMAIL PROTECTED] on 09/12/2001 11:00:27 AM Please respond to [EMAIL

Re: Simple Verity Database Search

2001-09-12 Thread Judith Taylor
Gel, Part of the problem may be the queryname in the title attribute. Try simply setting it as title=Company_Name. The Other Judith Angel Stewart put into words: Here's something else which should be brutally simple, but which I just can't get to work. *sigh* cfindex action=REFRESH

OT Religion (was RE: Terrorism)

2001-09-12 Thread Josh R
OK, I was going to stay out of this, but this comment hits me personally. First, I ask you to read my article about morality and Atheism. http://www.rubak.com/article.cfm?ID=11 Second, the atrocities referred to include but are not limited to: Manifest Destiny - Those Indians were killed in

RE: Protection of Data

2001-09-12 Thread Dave Watts
I have been set the task of providing the most secure method of record, storing and retrieving data from an e-commerce site built using Coldfusion. I've decided on the methods but would like some feedback as to whether I'm going the right direction, or I'm about to walk of a cliff.

RE: Protection of Data

2001-09-12 Thread JSchlosser
Dave: Any word on the class at Figleaf? JoAnn A. Schlosser Senior Consultant Association Management Software Grant Thornton LLP Washington, D. C. 703.837.4428 -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 12, 2001 2:42 PM To: CF-Talk

RE: Simple Verity Database Search

2001-09-12 Thread Dave Watts
Here's something else which should be brutally simple, but which I just can't get to work. *sigh* cfindex action=REFRESH collection=yellowpages TYPE=CUSTOM query=GetResults key=ID title=GetResults.Company_Name body=Company_Name,Last_Name,First_Name,Address,State,Classifi cation

RE: Passing variables in UDF

2001-09-12 Thread Dave Watts
Are variables passed by reference or by value in CF UDFs? Queries, structures, and variables created using CFOBJECT are passed by reference. Other variables are passed by value. This is true whether passing them to UDFs or custom tags or whatever, as far as I can tell. While I

Using Javascript to relate checkboxes

2001-09-12 Thread Boardwine, David L.
Hi All, I want to automatically check (and disable) one checkbox when another of several checkboxes is checked. Can I do this with client-side scripting? Any help would be appreciated. TIA David L. Boardwine Senior Analyst Ohio Department of Development/ITO Phone (614) 752-4431 [EMAIL

RE: Protection of Data

2001-09-12 Thread Dave Watts
Any word on the class at Figleaf? I'm still working on it (of course). As soon as it's ready, I'll post an announcement. There'll probably be an initial beta of some sort; we haven't worked out those details yet. Thanks for the persistent reminders! That helps keep me going! Dave Watts, CTO,

online testing application

2001-09-12 Thread ColdFusion
I'm sure this has been asked .. in fact, I'm pretty sure I've seen it asked recently, but searching through the cf-talk archives is often a hopeless effort. So, forgive my repeated question. Does anyone know where I can find an online testing application written in CF? One similar to the

RE: Passing variables in UDF

2001-09-12 Thread Jeremy Allen
Of course, in the long run, it really doesn't matter, as long as we know what behavior to expect. However, there are useful benefits to passing structures by reference to custom tags. For example, let's say we wanted to filter input. Ideally, we could use an external component for that, since

RE: Using Javascript to relate checkboxes

2001-09-12 Thread Duane Boudreau
Yes try something like this: !-- form input type=checkbox name=cb1 onClick=if (this.checked){this.form.cb1[1].disabled = true;this.form.cb1[2].checked = true;}else{this.form.cb1[1].disabled = false;}Check Box 1br input type=checkbox name=cb1Check Box 2br input type=checkbox name=cb1Check Box

Verity and Databases

2001-09-12 Thread Bruce Sorge
Question, can one create a verity collection on information stored in a database? (SQL Server) ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ:

Re: Using Javascript to relate checkboxes

2001-09-12 Thread David Green
Here is some code I just wrote for a site for our soccer league. Function 1 checks values of a two select list the checks or unchecks a box. The second function prevents the user from checking/unchecking the check box. This should give you some ideas. Good luck David calling code

RE: Simple Verity Database Search

2001-09-12 Thread Angel Stewart
Ok, the problem was the GetResults.Company_Name in the title. CF didn't like me putting the query name there for some unknown and unfathomable reason. Now I have another problem. I am simply collecting a single criteria with which to search the Verity collection, but somehow I keep getting

RE: Verity and Databases

2001-09-12 Thread Jeremy Allen
You bet! That is what verity is all about. Just read up on the verity documentation. You can take any query and index that into a verity collection. Specifically check out the query attribute of CFINDEX. The recordset can come from any database as ColdFusion does not make a distinction between

The To: line in CF MAIL - are spaces problems?

2001-09-12 Thread Tom Forbes
Dear CF'ers, We are having an intermittent problem with the spool - it seems to Freeze about twice a day, with varying numbers of messages in que. The fix is to cycle the CF Server. We have CF4.51 SP2, Win2K - shared environment. Will an unnecessary space in the To: line cause this. Some

RE: Verity search of PDF's

2001-09-12 Thread Steven Monaghan
Yes it can...Just did it here a few weeks ago. Steve - Steven Monaghan Oracle DBA MSC Industrial Direct Co., Inc. Melville, NY [EMAIL PROTECTED] http://www.mscdirect.com - -Original Message- From: Brian Scott

RE: The To: line in CF MAIL - are spaces problems?

2001-09-12 Thread Dan Phillips
I've seen this when the size and numbers of the emails is too much for CF to handle. Let's say you sent out 1,000 1k messages at once. This could be too much for CF since it has to process the mail as well as handle other server requests. Does this sound like what could be happening to you? Dan

RE: The To: line in CF MAIL - are spaces problems?

2001-09-12 Thread Jeremy Allen
It is entirely possible you are getting zero length messages stuck in your outbound queue. This will cause coldfusion to go nuts. I believe this problem was fixed up in ColdFusion 5. The next time this happens check in your cfusion/mail/spool directory and examine the messages. See if there are

Sandbox security consultation

2001-09-12 Thread Chris Giminez
So far I have been unable to completely understand how to implement Sandbox Security. I need to set this up for a server that will be used in a hosting environment. I have read the Forta books and the product documentation. If anyone knows of a step by step tutorial I may not be aware of,

Re: The To: line in CF MAIL - are spaces problems?

2001-09-12 Thread Joseph Thompson
If you haven't specified th delimiter as , then CF will default to using the comma OR the space... Perhaps specify the delimiter in your loop ..and use TRIM() ?? cfloop list=#MyList# index=MyIndex delimiters=, Even better... when you build the list specify the Bell character (if you can)

Re: The To: line in CF MAIL - are spaces problems?

2001-09-12 Thread Jim McAtee
I don't believer that CF processes the TO: field in any way - it just passes it along to the SMTP server. It will be up to the particular SMTP server being used as to whether this may cause an error, but like any error returned by the SMTP server, CF should be able to deal with it. Jim -

Re: E-Commerce...? Duane Boudreau FIRED by client

2001-09-12 Thread Mike Randolph
Hello Everyone, I'm done listening to Duane Boudreau chiming in... About AbleCommerce. When Duane dropped the ball on an AbleCommerce project and was FIRED by the client he was obviously left with some hard feelings ...The project was quickly done by a real CF Programmer. (being as PC as I can

RE: E-Commerce...? Duane Boudreau FIRED by client

2001-09-12 Thread Dan Phillips
I can back up Mike a bit here. We just recently added Able Commerce Quickstore to the list of features our customers can add on to their accounts. Each time I myself or my customers have had to contact support they have always got the problem solved quickly and there was never a need for a call

RE: E-Commerce...?

2001-09-12 Thread Maureen
At 01:27 PM 9/12/01 Duane wrote: The code is some places is very poorly written and very poorly thought out (being PC as possible here). Maintainability, and ease of customization clearly wasn't a consideration during development. I've recently done an extensive customization of an AbleCommerce

RE: E-Commerce...? NEGATIVE EXPERIENCE WITH ABLE COMMERCE

2001-09-12 Thread BT
I have had a similar negative dealing with AbleCommerece. When they were in Florida or something and afterwards when they moved to Washington. We did not engage in either instance but their client list spoke volumes. Our issue was trying to speak to a technical rep and make the sales guy be

OT - Software allocation of RAM

2001-09-12 Thread ccook22
General question here - I'm going to assume windows allocates certain percentages of memory (RAM) to specific software programs, is there a way to change this? The reason Im asking is I frequently run out of memory (RAM) and get odd error messages from programs saying not

CFX_CyberCash or other solutions...

2001-09-12 Thread Scott Van Vliet
CyberCash was recently acquired by by Verisign, and I do not know if they are going to continue offering their CyberCash CashRegister service, which offered a CFX (C++) tag to talk with their service. I have almost finished a project that utilizes the CFX_CyberCash tag, and I am worried that

RE: E-Commerce...? NEGATIVE EXPERIENCE WITH ABLE COMMERCE

2001-09-12 Thread Angel Stewart
I have to chime in here. *ding* okies... When a company I worked for was trying to find Ecommerce software for the Miss Universe 99 website which I worked on, we shortlisted a few and Ablecommerce won out. There was an extremely helpful Ablecommerce represetnative called Mark, who was very

RE: CFX_CyberCash or other solutions...

2001-09-12 Thread JSchlosser
If the client has an existing CyberCash account, it will continue to be supported, otherwise, they will want you to use their product. My sites all work with CyberCash. JoAnn A. Schlosser Senior Consultant Association Management Software Grant Thornton LLP Washington, D. C. 703.837.4428

Re: OT - Software allocation of RAM

2001-09-12 Thread Kevin Derby
Have you updated your swap file size to reflect the new physical RAM? Also many of the apps you listed are really desktop apps, and wouldn't have the same kind of RAM consumption controls that something like SQL Server or IIS would. If you have either of those running I would definitely look

RE: E-Commerce...? Duane Boudreau FIRED by client

2001-09-12 Thread Larry Juncker
I have to agree with what Mike is saying here. I have been using Able Commerce for two years and have absolutely NO PROBLEM with getting answers to any problem RO question that I have had with their products. I have two registered installs of Able Commerce Builder with numerous stores and a

RE: OT - Software allocation of RAM

2001-09-12 Thread Jeff Beer
How much free disk space do you have on the drive that contains your swap file? Is your swap file size fixed, or dynamic? How large is your swap file? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 12, 2001 4:35 PM To: CF-Talk Subject:

RE: E-Commerce...? Duane Boudreau FIRED by client

2001-09-12 Thread Nick McClure
I too have used the product. the only problem I had was trying to impliment a very complicated design into it. The product itself worked great and the source was fully documented. The tech support rep that I spoke with once regarding conversion to SQL Server 7 was very nice and helpful. Able

RE: Verity issue

2001-09-12 Thread Ray Bujarski
So I solved my issue. I was running traces on the server to follow errors and noticed that a file under /var/tmp was being written to. This file was full and did not allocate any extra room on disk. I purged the directory and can now populate my indexes. At 01:25 PM 9/12/2001 -0700, you

RE: OT - Software allocation of RAM

2001-09-12 Thread Kwang Suh
This is not a RAM problem. The biggest problem with the Windows 9X series is the amount of HEAP and GDI memory available. The amount is VERY small. These two numbers CANNOT be enlarged. They are hardcoded into the kernal. Every program you have open consumes some of these two resources.

RE: UML tools fro CF (Admin) Please move OT to CF-Community

2001-09-12 Thread Carl Burn
Try Poseidon from Gentleware, its free and pretty good www.gentleware.com -Original Message- From: Richard L Smith [mailto:[EMAIL PROTECTED]] Sent: 12 September 2001 13:08 To: CF-Talk Subject: Re: UML tools fro CF (Admin) Please move OT to CF-Community To that end, Anyone know of any

RE: OT - Software allocation of RAM

2001-09-12 Thread ccook22
9.5 gigs of hard disk space free on drive C: which contains the swap file. I have the let windows determine my virtual memory settings so I will assume its dynamic. The current swap file is 115 MEG. Should I manually determine my swap file size and bump it to 1 GIG? Thanks for the feedback. CC

RE: OT - Software allocation of RAM

2001-09-12 Thread ccook22
Interesting, would never have thought that windows would be limited in this manner. Thanks, CC Kwang Suh [EMAIL PROTECTED] on 09/12/2001 05:05:01 PM Please respond to [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] cc: Subject: RE: OT - Software allocation of RAM This is not a RAM

  1   2   >