RE: CF_SAVECONTENT

2002-03-08 Thread Scott Van Vliet
Well, before I made it, I did a search at the DEVEX and found nothing. -Original Message- From: Pascal Peters [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 07, 2002 11:51 PM To: CF-Talk Subject: RE: CF_SAVECONTENT You could have downloaded one of the many versions of that CT from

Re: CF_FakeURL problems

2002-03-08 Thread Roger B .
On Fri, 8 Mar 2002 14:48:44 +0900, list peters [EMAIL PROTECTED] wrote: find and replace hell now.. basehref would work if it wasnt for those pesky mac os X IE browsers. While you're doing that, take a minute to drop the following into your application.cfm: cfset request.abspath =

need e-com solution

2002-03-08 Thread list peters
hi everyone I want to start doing some basic e-com but i dont have the time/budget to do full shopping cart/etc. I already have a standard product catalog. I want to just add a buy button and have a pop up window open with shopping cart from some type of service provider or some custom

RE: Oracle and Excel

2002-03-08 Thread Kevan . Windle
Take a look at http://www.cfcomet.com/cfcomet/Excel/index.cfm?ArticleID=87AB3CF6-22AC-49 C3- AB33B25C754DF301 -Original Message- From: Steven Dworman [mailto:[EMAIL PROTECTED]] Sent: 07 March 2002 19:04 To: CF-Talk Subject: OT: Oracle and Excel There is a programmer who is trying to do

CF Developer Needed Immediately - crosspost

2002-03-08 Thread Freddy
The company I work for is currently looking for an experienced (mid-senior level) ColdFusion developer. Other skills desirable are: 1) Oracle PL/SQL 2) Javascript 3) DHTML 4) Dreamweaver/Ultradev/Coldfusion Studio This would be a 4 month contract. Onsite in Raleigh, NC. No relocation. The

ColdFusion updating wrong table

2002-03-08 Thread Keane, John (WDS)
I have a website hosted by a third-party. The site allows users to fill out a number of different surveys. Each survey is in it's own subdirectory. For example, MainSurveyHome | - Survey1000Home | - Survey2000Home Each directory contains an application.cfm

RE: ColdFusion updating wrong table

2002-03-08 Thread Steve Oliver
Why are you using application variables to store the title and basetable? Application variables are application wide, so if 1 users goes to a page Application.BaseTable = tbl1000 Then another user goes to a different page: Application.BaseTable = tbl2000 The first application variable gets

RE: CF_FakeURL problems

2002-03-08 Thread Steve Oliver
I haven't had a chance to look at the FakeURL tag, but I made something like that quite a while back, and had the same problem. That was my solutions as well, I put a request variable in the application called #Request.urlPath# But here is what my FakeURL tag looked like: cfscript //first get

Debugging issues

2002-03-08 Thread Morgan, Thomas J.
Out of nowhere, debugging information at the bottom of our CF pages has stopped showing up on two separate servers. I checked the settings in CF Admin. and the appropriate IP addresses are listed in the box. I have stopped and re-started the services, but no luck. Has anyone seen this happen

RE: Stored Procedure

2002-03-08 Thread Bill Grover
2 points. First if SP-1 calls SP-2 SP-2 can see all temporary tables created by SP-1 BUT NOT VISA-VERSA. So if you are going to create a result set that you later want to access in the calling SP you have to trick the SP. The way we've done this is to create an empty table in the calling SP

Re: Spiders and Cold Fusion

2002-03-08 Thread Nick Bourgeois
IMO, there is only one search engine that matters anymore and it's Google. That's your opinion, but I disagree. Sure, Google is leaps and bounds better than the other search engines out there, but that doesn't mean you can forget about the rest of them. IMO, Search engine safe URL's are

RE: 404 Errors aren't thrown back at the www server?

2002-03-08 Thread Chip Griffin
For IIS to handle the 404 on a .cfm file, you must turn on the option in IIS to check if file exists before passing it off to the CF server to process; otherwise CF will handle the 404 with its own generic error page or you can set one in the CF Administrator. -Original Message- I

RE: Debugging issues

2002-03-08 Thread Peter Dray
Check your application.cfm for queries that have DEBUG set Pete -Original Message- From: Morgan, Thomas J. [mailto:[EMAIL PROTECTED]] Sent: 08 March 2002 12:56 To: CF-Talk Subject: Debugging issues Out of nowhere, debugging information at the bottom of our CF pages has stopped

Re: need e-com solution

2002-03-08 Thread Paul Giesenhagen
You can check out QuillDesign's QD Cart, it is a shopping cart only application. Has pretty much all features needed .. you just supply the product pages. We are soon to be getting v2.0 out (after the final release of SiteDirector v2.0 next monday). Our SiteDirector product is a full ecommerce

RE: Desktop Icon Creation

2002-03-08 Thread Matthew R. Small
I have something for you... Save the following in a .vbs file, with appropriate changes. Then change the icon for this particular file by going to folder options - file types - .vbs - etc. ' ' File:OpenPage.vbs ' Author: Max Hamby

RE: CF_FakeURL problems

2002-03-08 Thread Ben Forta
Wow, of all the columns and articles I have written this one has generated the most e-mail and response. I guess folks want to hear about this. A few comments though ... As several of you have noted, most newer (better) search engines do not make the ridiculous assumption that pages that differ

Having trouble with a query

2002-03-08 Thread Thane Sherrington
I have a query I can't get working. I want to be able to display a list of places that have not been visited by a specific salesman in the last X months. In other words, I want to show something like this: Show me all places not visited in the last 3 months: Place A Bob Place B Bob Place C

RE: Desktop Icon Creation

2002-03-08 Thread Steve Oliver
You just want a shortcut to a webpage on the desktop? Just paste this in a text file [DEFAULT] BASEURL=http://someserver.com/ [InternetShortcut] URL=http://someserver.com/ Then change it from file.txt to file.url _ steve oliver senior internet developer atnet

Re: need e-com solution

2002-03-08 Thread Alex
paypal On Fri, 8 Mar 2002, list peters wrote: hi everyone I want to start doing some basic e-com but i dont have the time/budget to do full shopping cart/etc. I already have a standard product catalog. I want to just add a buy button and have a pop up window open with

RE: need e-com solution

2002-03-08 Thread Eric J Hoffman
We just gave Quill Design's cart a shot, and it is a tremendous departure from a few others we have used. Be sure to give it a serious look...a small curve, but intuitive enough we implemented most of it without needing to look at the docs. Now that says something! Regards, Eric J. Hoffman

RE: Having trouble with a query

2002-03-08 Thread Kevan . Windle
You need to do a select distinct on the subquery of places visited: (select distinct salesmanid,placesid from trips where date between from and to) a then do your outer join on salesmanid and placeid (depending on your db) with a query of salesmen and places (select salesman.id,place.id from

RE: Desktop Icon Creation

2002-03-08 Thread Eric J Hoffman
Thanks Matthew and Steve. On a side note, when it was file.url that was saved as to the users desktop, it just launched a new window...we are attempting on a few more machines to insure this wasn't some weird behavior on these machines...either way, this was great to see that we weren't in left

CFLOOP and CFOUTPUT

2002-03-08 Thread Park, Simon
I know that the prevailing wisdom is that CFOUTPUT with the Query attribute is faster than CFLOOPing over a query. However, in Forta's CF 5 Certification Study Guide, he states that CFLOOP performs better (p. 37 and 374). Has CF 5 improved the performance of CFLOOP (Steve Drcuker referred to it

RE: Desktop Icon Creation

2002-03-08 Thread Boardwine, David L.
An easier way is to drag the URL from your browser address bar and drop it on your desktop. -Original Message- From: Steve Oliver [mailto:[EMAIL PROTECTED]] Sent: Friday, March 08, 2002 9:43 AM To: CF-Talk Subject: RE: Desktop Icon Creation You just want a shortcut to a webpage on the

Re: CFLOOP and CFOUTPUT

2002-03-08 Thread Dave Carabetta
I know that the prevailing wisdom is that CFOUTPUT with the Query attribute is faster than CFLOOPing over a query. However, in Forta's CF 5 Certification Study Guide, he states that CFLOOP performs better (p. 37 and 374). Has CF 5 improved the performance of CFLOOP (Steve Drcuker referred to it

OT: SQL Statement dumping data

2002-03-08 Thread Jason Larson
I was wondering if anybody had the sql statement that will allow me to dump all the data out of the table in a database? Thanks for the help Jason __ Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40 GB HD / 20 GB

Re: SQL Statement dumping data

2002-03-08 Thread Clint Tredway
Do you mean delete all the data or Export the data? Clint - Original Message - From: Jason Larson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, March 08, 2002 10:22 AM Subject: OT: SQL Statement dumping data I was wondering if anybody had the sql statement that will

Re: SQL Statement dumping data

2002-03-08 Thread Stephen Moretti
err... DELETE FROM tablename Is that what you mean? - Original Message - From: Jason Larson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, March 08, 2002 4:22 PM Subject: OT: SQL Statement dumping data I was wondering if anybody had the sql statement that will allow

RE: SQL Statement dumping data

2002-03-08 Thread Jason Larson
What I am trying to accomplish is: I have a client that will be pushing up a csv file to a site and then I will setup a autmoated task that will dump all the data in a table and then refresh the data with the data in the csv file. Thanks for the quick reply Jason -Original Message-

RE: SQL Statement dumping data

2002-03-08 Thread Christopher Olive
you an do a DTS to a text file, if that's what you're after. alternately, check www.swynk.com. they have a FANTASTIC script library for SQL server. christopher olive cto, vp of web development, vp it security atnet solutions, inc. 410.931.4092 http://www.atnetsolutions.com -Original

Re: SQL Statement dumping data

2002-03-08 Thread Paul Giesenhagen
If dump means delete delete from tablename Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector - Commerce Builder - Original Message - From: Jason Larson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, March 08, 2002 10:22 AM Subject: OT: SQL

Re: CFLOOP and CFOUTPUT

2002-03-08 Thread Stephen Moretti
I agree with everything that Dave says... (Having just deleted all the stuff I typed cos it was a repeat) Only to add that eliminating unnecessary whitespace is important to me. But you will find that there are some people who swear by using CFOUTPUT QUERY=. When it comes to grouping

RE: SQL Statement dumping data

2002-03-08 Thread kbutterly
if you mean delete all the data, use the Purge command. It is very fast. Kathryn Butterly Web Developer Washington Mutual Finance 813 632-4490 [EMAIL PROTECTED] -Original Message- From: Jason Larson [mailto:[EMAIL PROTECTED]] Sent: Friday, March 08, 2002 11:23 AM To: CF-Talk Subject:

A Verity SQL Combo Question - Can this be sped up?

2002-03-08 Thread Mallory Woods
Greetings all.. We have an interesting verity search/SQL search issue and I was wondering if anyone has any hints on how this possibly could be sped up.. Ok.. some background.. The Keyword search is done in verity and its fast by itself.. The other searches are fast and are regular SQL..

RE: Desktop Icon Creation

2002-03-08 Thread Eric J Hoffman
That would be real easy, but this is a management program that creates a personalized URL with pertinent data in the URL string which is then saved to the users desktop for future one-click access...the admin guys are not on that page when this occurs...and thus, we needed a way to create them in

RE: Intranet apps

2002-03-08 Thread Cantrell, Adam
Not to ruin the party or be overly nosey, but please don't put local weather information on your corporate intranet, that's just plain wrong in so many ways. When I worked for a global company based in Minneapolis, I would login to their corporate intranet and 70% of the page was the local,

RE: SQL Statement dumping data

2002-03-08 Thread Christopher Olive
set up a DTS package to import the CSV file. create an SP to run the DTS package. use SQL Agent to schedule the SP. christopher olive cto, vp of web development, vp it security atnet solutions, inc. 410.931.4092 http://www.atnetsolutions.com -Original Message- From: Jason Larson

RE: Intranet apps

2002-03-08 Thread Jeffry Houser
At 09:49 AM 03/08/2002 -0600, you wrote: Not to ruin the party or be overly nosey, but please don't put local weather information on your corporate intranet, that's just plain wrong in so many ways. I don't understand what is so wrong about it, however your description below is obviously a

CFTransactions and SQL Transactions?

2002-03-08 Thread Shawn Grover
I'm looking for more information about using CFTransaction. My personal opinion is that it's better to use SQL Server transactions within our stored procedures (cuz we are using SQL 2000 as our back end), and transfer as much business logic as possible to the stored procs. However, in a few

RE: SQL Statement dumping data

2002-03-08 Thread Chris Terrebonne
TRUNCATE TABLE MyTable Chris -- Original Message From: Jason Larson[EMAIL PROTECTED] Subject: RE: SQL Statement dumping data Date: Fri, 8 Mar 2002 09:30:54 -0700 What I am trying to accomplish is: I have a client that will be pushing up a csv file to

Re: Intranet apps

2002-03-08 Thread Bruce Holm
I agree with Jeffry's observation. We plan to make it relevant to the user's location. It will be small and non-intrusive, and a motivator for employees to make the Intranet their browser Home. Company stock quote is also planned for displaying the company stock price thru-out the day. I still

RE: SQL Statement dumping data

2002-03-08 Thread Jason Larson
WOW!!, I haven't worked with DTS packages and not much with stored procedures. I will do some research. You think that this is a better solution then building a cf template and setup an automated task to run the cf template (in order to process the csv file)? Thanks, Jason Larson

RE: Intranet apps

2002-03-08 Thread Shawn Grover
When I want to know what my local weather is like, I look out the window. When I want to know the forcast (rarely), I watch broadcast news, or the weather station on tv for a few minutes. I tend to agree with Adam. A company's main page should be about the company - not necessarily about the

RE: SQL Statement dumping data

2002-03-08 Thread Shawn Grover
My own thoughts are that it is better to let your database server handle it's own data whenever possible. By creating a CF Template, you are asking your web server to do data operations. Simple enough for the most part, but if the template get's hit by multiple users, or you have a high volume

Potty Mouth Filters

2002-03-08 Thread David Schmidt
Greetings, Do any of you have a good recommendation on a CF potty mouth filter. What I would like it to do is be a passive type filter that I could put in my index.cfm page and have it simply redirect to the referring page if foul language is encountered in user form or url input. Thanks,

RE: Intranet apps

2002-03-08 Thread Mark A. Kruger - CFG
guys - Check out wx.com's weather sticker (small and unobtrusive). It's implemented with Javascript and based on zip code - and they have a WDDX feed as well. Mark -Original Message- From: Bruce Holm [mailto:[EMAIL PROTECTED]] Sent: Friday, March 08, 2002 9:02 AM To: CF-Talk Subject:

RE: Need to be able to make checkboxes in a table driven by query out put all selected or deselected with one button

2002-03-08 Thread Brunt, Michael
Just wanted to thank everyone who replied, problem solved. Mike Brunt Sempra Energy 213.244.5226 Computers will not be perfected until they can compute how much more than the estimate the job will cost. -Original Message- From: Jim McAtee [mailto:[EMAIL PROTECTED]] Sent: Thursday,

RE: Intranet apps

2002-03-08 Thread Garza, Jeff
I've never gotten CFHTTP to work with our proxy. I finally got the sysadmins to put a rule in to allow the webserver passage without the proxy (actually required a hole in the firewall for request traffic from the server). I think that the issue is that CFHTTP doesn't authenticate against the

RE: SQL Statement dumping data

2002-03-08 Thread Mark A. Kruger - CFG
well yeah - a LOT better. CF is designed to optimize the processing of http requests. File I/O isn't a strong point. DTS can do about everything. You can even do data validation using DTS transformations in a vb script like language. You can also save the whole thing as a vb script and edit

RE: SQL Statement dumping data

2002-03-08 Thread Mark A. Kruger - CFG
PS - Chris, do you have an example of an SP that executes a DTS package? I would find that useful if you do. Mark -Original Message- From: Jason Larson [mailto:[EMAIL PROTECTED]] Sent: Friday, March 08, 2002 9:01 AM To: CF-Talk Subject: RE: SQL Statement dumping data WOW!!, I haven't

Re: Potty Mouth Filters

2002-03-08 Thread Clint Tredway
There is a CT in the gallery that will search a string with a list of words tha you supply.. If any offending words are found a variable is returned with those words in it... Then you can do whatever you want to.. http://devex.macromedia.com/developer/gallery/SearchResults.cfm?keywords=bad

Re: SQL Statement dumping data

2002-03-08 Thread Stephen Moretti
WOW!!, I haven't worked with DTS packages and not much with stored procedures. I will do some research. You think that this is a better solution then building a cf template and setup an automated task to run the cf template (in order to process the csv file)? Yes that will be much better.

RE: Potty Mouth Filters

2002-03-08 Thread Jason Larson
I believe I saw a UDF at www.cflib.org, that will parse a string for bad words. You will have to surf there site to find it. Thanks, Jason Larson -Original Message- From: David Schmidt [mailto:[EMAIL PROTECTED]] Sent: Friday, March 08, 2002 10:18 AM To: CF-Talk Subject: Potty Mouth

RE: SQL Statement dumping data

2002-03-08 Thread Christopher Olive
personally, yes. i like to let the DB handle DB stuff as much as possible. and the fact that CF's scheduler is somewhat less than reliable. christopher olive cto, vp of web development, vp it security atnet solutions, inc. 410.931.4092 http://www.atnetsolutions.com -Original

RE: SQL Statement dumping data

2002-03-08 Thread Christopher Olive
i snatched mine from www.swynk.com. in the interest of saving you time, here's mine. as a side note, the the user running the package needs to have execute rights to the sp_OA* SPs. --- CREATE PROC TH_OnsiteLoad4 as DECLARE @hr int, @oPKG int EXEC @hr = sp_OACreate 'DTS.Package', @oPKG OUT

RE: SQL Pervasive and Cold Fusion??

2002-03-08 Thread Ron Anderson
It uses ANSI 92 as it's standard. CF does work with it, but you need to set the Datasource using the ODBC Control Panel, then use the generic ODBC driver setting in CF to call the datasource. It does work, but make sure to read their articles on ODBC Performance issues and limitations...it

RE: Intranet apps

2002-03-08 Thread Jeffry Houser
At 10:10 AM 03/08/2002 -0700, you wrote: When I want to know what my local weather is like, I look out the window. When I want to know the forcast (rarely), I watch broadcast news, or the weather station on tv for a few minutes. When I want to know the forecast I always go to weather.com. The

RE: Potty Mouth Filters

2002-03-08 Thread David Schmidt
That reminds me. I am using CF4.5. -Original Message- From: Jason Larson [mailto:[EMAIL PROTECTED]] Sent: Friday, March 08, 2002 9:22 AM To: CF-Talk Subject: RE: Potty Mouth Filters I believe I saw a UDF at www.cflib.org, that will parse a string for bad words. You will have to surf

Re: Debugging issues

2002-03-08 Thread Bryan Stevenson
Are the appropriate IP addresses listed in CF Admin still the IPs of the computers trying to view the pages (i.e. could they have been re-assigned)? Just trying to clarify ;-) Bryan Stevenson VP Director of E-Commerce Development Electric Edge Systems Group Inc. p. 250.920.8830 e. [EMAIL

Obtaining file size in Linux and returning to CF

2002-03-08 Thread Park, Simon
Is there a way to obtain the size of a file on a Linux server and return it to CF? =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Simon Park Computer Systems Management, Inc. Ph: 703-823-4300 x119 205 South Whiting Street #201 fax: 703-823-4301 Alexandria, VA 22304

RE: Intranet apps

2002-03-08 Thread Shawn Grover
I tend to agree with Adam. A company's main page should be about the company - not necessarily about the environment around their building. Whether or not it should be on the companies main page might be worthy of an argument / discussion. Yep, it could be an argument/discussion, with no

Re: CFLOOP and CFOUTPUT

2002-03-08 Thread Bryan Stevenson
This one came through the list abouyt a month ago, so you may want to check the archives. The basic result was that CFLOOP is the way to go. Personally I wrap my entire page in CFOUTPUT tags and always use CFLOOP to output queries etc. IMHO it makes the code easier to read becaue I don't

RE: Intranet apps

2002-03-08 Thread Robert Everland
What kind of firewall are you using? Robert Everland III Dixon Ticonderoga Web Developer Extraordinaire -Original Message- From: Bruce Holm [mailto:[EMAIL PROTECTED]] Sent: Friday, March 08, 2002 12:02 PM To: CF-Talk Subject: Re: Intranet apps I agree with Jeffry's observation. We

RE: Obtaining file size in Linux and returning to CF

2002-03-08 Thread David Schmidt
Try this... cfdirectory action=LIST directory=#getdirectoryfrompath(cgi.PATH_TRANSLATED)# filter=test.txt name=myfilelist cfdump var=#myfilelist# Of course, you may have to change cgi.path_translated to where your file is and change the filter. Dave -Original Message- From: Park,

Re: CFLOOP and CFOUTPUT

2002-03-08 Thread ksuh
Yup. CFLOOP no longer sucks. Thank god. - Original Message - From: Park, Simon [EMAIL PROTECTED] Date: Friday, March 8, 2002 8:13 am Subject: CFLOOP and CFOUTPUT I know that the prevailing wisdom is that CFOUTPUT with the Query attributeis faster than CFLOOPing over a query.

Re: CFLOOP and CFOUTPUT

2002-03-08 Thread Paul Giesenhagen
So, does cfloop perform better than cfoutput or are they now comparable? Gunna have to change my way of thinking! Paul Giesenhagen QuillDesign http://www.quillldesign.com SiteDirector - Commerce Builder - Original Message - From: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent:

Re: Intranet apps

2002-03-08 Thread Bruce Holm
Netscape iPlanet 4.1 After digging more into this problem it appears that the problem is in the CFHTTP tag and poor documentation. The Username and Password parameters are apparently not for the Proxy server authentication but for accessing a restricted page at the URL location. Please tell me

RE: CFLOOP and CFOUTPUT

2002-03-08 Thread Ben Forta
Correct, when first introduced CFLOOP was s-l-o-w, but nowadays you'll actually find that it outperforms CFOUTPUT. --- Ben -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, March 08, 2002 11:12 AM To: CF-Talk Subject: Re: CFLOOP and CFOUTPUT Yup.

Re: OT: SQL Statement dumping data

2002-03-08 Thread Alex
select * from table On Fri, 8 Mar 2002, Jason Larson wrote: I was wondering if anybody had the sql statement that will allow me to dump all the data out of the table in a database? Thanks for the help Jason __ Get

RE: Intranet apps

2002-03-08 Thread Robert Everland
Why not try this, http://www.intrafoundation.com/tcpclient.html maybe that will work better for you. I haven't had much expereience using it though. Robert Everland III Dixon Ticonderoga Web Developer Extraordinaire -Original Message- From: Bruce Holm [mailto:[EMAIL PROTECTED]] Sent:

RE: Debugging issues

2002-03-08 Thread Morgan, Thomas J.
They are the correct addresses. Thomas J. Morgan Research Triangle Institute 3040 Cornwallis Road RTP, NC 27709 (919)541-7414 [EMAIL PROTECTED] Http:\\www.rti.org -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED]] Sent: Friday, March 08, 2002 10:49 AM To: CF-Talk

Re: Intranet apps

2002-03-08 Thread Bruce Holm
THis is a COM object for NT or 2000. Our CF server runs on Solaris so this won't work. Aargh! Thanks for trying. Bruce - Original Message - From: Robert Everland [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, March 08, 2002 10:35 AM Subject: RE: Intranet apps Why not

Re: Obtaining file size in Linux and returning to CF

2002-03-08 Thread Alex
try... ls -l filename |awk '{print $5}' On Fri, 8 Mar 2002, Park, Simon wrote: Is there a way to obtain the size of a file on a Linux server and return it to CF? =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Simon Park Computer Systems Management, Inc. Ph:

RE: Intranet apps

2002-03-08 Thread Pete Freitag
You can check out CFX_JSocket it's Java so it will run on Solaris... http://www.cfdev.com/products -Original Message- From: Bruce Holm [mailto:[EMAIL PROTECTED]] Sent: Friday, March 08, 2002 2:19 PM To: CF-Talk Subject: Re: Intranet apps THis is a COM object for NT or 2000. Our CF

Re: Intranet apps

2002-03-08 Thread Jon Hall
http://www.cflib.org/udf.cfm?ID=445 jon - Original Message - From: Bruce Holm [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, March 08, 2002 2:19 PM Subject: Re: Intranet apps THis is a COM object for NT or 2000. Our CF server runs on Solaris so this won't work.

Re: Intranet apps

2002-03-08 Thread BILL BROWN
I'm not all that up on proxy servers, but couldn't you make CF run as a user on your system and then give that user access to the proxy? Obviously, you'd make that user have limited rights etc. I believe your understanding of the CFHTTP is true. It is used for accessing sites that require a

RE: Intranet apps

2002-03-08 Thread Dave Watts
After digging more into this problem it appears that the problem is in the CFHTTP tag and poor documentation. The Username and Password parameters are apparently not for the Proxy server authentication but for accessing a restricted page at the URL location. Please tell me I'm wrong but

RE: CFLOOP and CFOUTPUT

2002-03-08 Thread Plane, Nathaniel
Eek, what about cfoutput group=? You wouldn't be able to group result sets in this case. And what about page includes, those would be out of the question (including a page with another cfoutput without a group parameter would throw an error). This coding method has quite a few consequences

RE: CFLOOP and CFOUTPUT

2002-03-08 Thread Plane, Nathaniel
But also remember, when it was introduced cfoutput also had constraints on the tag usage allowed withen its block, so in cases it was still acceptable at the expense of speed.. Ah the good ole days =) Nat -Original Message- From: Ben Forta Sent: Friday, March 08, 2002 1:13 PM To:

Report Writer

2002-03-08 Thread Graham Pearson
Group: I am looking for Pros/Cons on various Report Writers that can be integrated with ColdFusion. I have one project that I would like to generate Avery Labels through the Web Browser. This is a new area for me and all information is greatly appreciated.

RE: Report Writer

2002-03-08 Thread kbutterly
It is possible, although the learning curve is a bit step, to generate Avery mailing labels in Word .doc format, which your users can then use to open and print the labels. Would that work for you? There is an article in www.irt.org about outputting CF to Word, if you are interested. I have

Recovering CF Admin password?

2002-03-08 Thread Shawn Grover
I have an aquaintance who has 'misplaced' his password for their Cold Fusion Administrator. (no, it's not me). I know I've seen this issue pop up before (and am searching the archives as I type this), so am hoping someone can give me some info on how to recover/change the admin password. (He has

Re: Recovering CF Admin password?

2002-03-08 Thread kellymconf
Too funny I had to do this 20 minutes ago here is the fix. Run RegEdit. Go To: HKEY_LOCALMACHINE/SOFTWARE/ALLAIRE/COLDFUSION/CURRENTVERSION/SERVER/ Scroll down and right click the UseAdminPassword key. Click Modify. Set it to ZERO (the number 0 not the word) Click Ok. Then go to this URL:

Re: Intranet apps

2002-03-08 Thread Bruce Holm
Thanks for the reference. It appears it doesn't support proxy server authentication. Or did I miss something? Bruce - Original Message - From: Pete Freitag [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, March 08, 2002 11:42 AM Subject: RE: Intranet apps You can check

RE: CFLOOP and CFOUTPUT

2002-03-08 Thread Tyler M. Fitch
From: Plane, Nathaniel [mailto:[EMAIL PROTECTED]] -- Eek, what about cfoutput group=? And what about page includes, those would be out of the question (including a page with another cfoutput without a group parameter would throw an error). This coding method has quite a few consequences

dynamic pages to html

2002-03-08 Thread Jeff Beer
hello all, A client wants to load a number of pages from their site on a laptop for display at a conference. It's a very dynamic site - can I use CFSAVECONTENT to write out HTML files? Any caveats or concerns before I start trying to figure this out? I only need to create about 10 pages, so

RE: dynamic pages to html

2002-03-08 Thread Brunt, Michael
Jeff, you could do something simple like view source and just copy the html output for each page. Caveat is does your client want them to be linked or somehow clickable*(sorry about that awful word!*). Mike Brunt Sempra Energy 213.244.5226 A complex system that does not work is invariably

Re: Report Writer

2002-03-08 Thread Mark Leder
There is also a custom tag at DevCenter for doing Avery labels, you may want to take a look at that. Here's a link to it http://devex.macromedia.com/developer/gallery/SearchResults.cfm?keywor ds=averyx=10y=7 -- Mark Leder, [EMAIL PROTECTED] on 03/On Fri, 08 Mar 2002 15:43:00 -0500, Graham

calculate price based on lots of ages given from a form?

2002-03-08 Thread Jeff Fongemie
Hello cf-talk, I have a form, that collects up to 12 names and ages. THis is to sell admission tickets, adults are one price and children another price. On the next page, I want to get a subtotal total for the number of people who are adults, a subtotal for the number of people that

Forum or threaded app

2002-03-08 Thread Wolf, Alan
Is there a free easily configurable threaded discussion group application, no where near the level of forums that someone could recommend? Alan L. Wolf MCSE, MCP, MCP + I SAIC Frederick PO Box B Bldg 458 Frederick, Maryland 21702 [EMAIL PROTECTED] 301-846-5479 (V) 301-846-6886 (F)

Re: calculate price based on lots of ages given from a form?

2002-03-08 Thread Brian Scandale
How about this. Via Brute Force... cfset subtot1 = 0 cfset subtot2 = 0 cfif form.age1 LT 11cfset subtot2 = subtot2 + 1/cfif cfif form.age1 GT 10cfset subtot1 = subtot1 + 1/cfif cfif form.ageNth LT 11cfset subtot2 = subtot2 + 1/cfif cfif form.ageNth GT 10cfset subtot1 = subtot1 + 1/cfif or get

RE: Forum or threaded app

2002-03-08 Thread Shawn Grover
I used the javascript/dhtml one by SNITZ at one time. It seemed pretty thorough and easily integrated into a site. However, that was almost two years ago so I don't know if it's still around, or what it's like if it is. I just checked their URL (www.snitz.com - if I'm remembering right), and

Re: calculate price based on lots of ages given from a form?

2002-03-08 Thread David Schmidt
cfset adultsSubtotal=0 cfset kidsSubtotal=0 cfloop from=1 to=12 index=i cfif evaluate(Form.age#i#) GT 11 cfset adultsSubtotal = adultsSubtotal + 60 cfelse cfset kidsSubtotal = kidsSubtotal + 30 /cfif /cfloop cfset set GrandTotal = adultsSubtotal + kidsSubtotal

Re: Forum or threaded app

2002-03-08 Thread Tony Schreiber
http://www.simplemessageboard.com/ Download for 2.0 Beta 1 available shortly. Is there a free easily configurable threaded discussion group application, no where near the level of forums that someone could recommend? Alan L. Wolf MCSE, MCP, MCP + I SAIC Frederick PO Box B Bldg 458

RE: WAY OT: Virus or not GOTCHA

2002-03-08 Thread Andrew Scott
Have you tried running a virus protector, to clean the system? This appears to be a variant of the w32.hybris virus. -Original Message- From: Matthew R. Small [mailto:[EMAIL PROTECTED]] Sent: Friday, 8 March 2002 8:45 AM To: CF-Talk Subject: WAY OT: Virus or not GOTCHA Hi all...

RE: WAY OT: Virus or not GOTCHA

2002-03-08 Thread Steve Oliver
Usually those Gotcha programs disable themselves if you put the mouse in the top left or right corner. I doubt it's a virus, just a stupid program made in VB or something. You'll have to look in msconfig (regedit if your on 2K or NT) and remove the program if it runs on startup.

RE: WAY OT: Virus or not GOTCHA

2002-03-08 Thread Andrew Scott
Without the knowledge of the exact problem, it could be a virus. But if it is a program then running the task manager will help identify this. I had to recently clean a machine that the desktop icons would run away any time you moved the mouse near them, and is the reason I made my suggestion.

RE: WAY OT: Virus or not GOTCHA

2002-03-08 Thread Steve Oliver
There's a function in VB (and other languages) to remove it's entry from the task manager, so that wouldn't necessarily work. Another possibility is that it attached itself to a system program that runs on startup, which is what the system file checker is good for if your on win98. 2K and XP

Re: Forum or threaded app

2002-03-08 Thread Kay Smoljak
There's an open source Fusebox one at http://fbopenforums.sourceforge.net. It's got support for Access, SQL Server and Oracle at the moment. Kay. Wolf, Alan [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]... Is there a free easily configurable threaded discussion group