RE: Other CF Communities

2000-07-05 Thread Pete Freitag
There is a IRC Channel called #coldfusoion of effnet. I've only been on a couple times, but I know some people who are on quite frequently. _ Pete Freitag ([EMAIL PROTECTED]) CFDEV.COM / NETDesign Inc. http://www.cfdev.com/ -Original Message

RE: CF XML ?

2000-06-28 Thread Pete Freitag
of these tags are fully tested, but if you NEED them, I could probably hook you up. Sun just released a Java XSLT Processor, I am going to look into writing a Java CFX for that as well. _ Pete Freitag ([EMAIL PROTECTED]) CFDEV.COM / NETDesign Inc. http://www.cfdev.com

RE: CFX API to create a structure?

2000-06-28 Thread Pete Freitag
Your best bet would be to use WDDX, since you can define a Structure with WDDX. _ Pete Freitag ([EMAIL PROTECTED]) CFDEV.COM / NETDesign Inc. http://www.cfdev.com/ -Original Message- From: Larry Meadors [mailto:[EMAIL PROTECTED]] Sent: Wednesday

RE: OT - SQL question

2000-05-04 Thread Pete Freitag
SELECT DISTINCT Name, OrderNum FROM tablename ___ Pete Freitag CFDEV.COM Cold Fusion Developer Resources http://www.cfdev.com/ -Original Message- From: PC [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 03, 2000 4:45 PM To: [EMAIL PROTECTED

RE: Resetting CF Admin Password?

2000-05-02 Thread Pete Freitag
yeah you can disable it in the registry, set a new one, then enable it again. HKEY_LOCAL_MACHINE\SOFTWARE\Allaire\ColdFusion\CurrentVersion\Server\UseAdmi nPassword = 0 That will disable the password ___ Pete Freitag CFDEV.COM Cold Fusion Developer

RE: cfhttp

2000-04-30 Thread Pete Freitag
I believe there is a timeout attribute CFHTTP timeout="number of seconds" There are also several CFX_HTTP tags in allaire's tag gallery that claim to fix problems that the native CFHTTP call has. ___ Pete Freitag CFDEV.COM Cold Fusion

RE: Tuning the webserver?

2000-04-26 Thread Pete Freitag
http://www.microsoft.com/backstage/whitepaper.htm ___ Pete Freitag CFDEV.COM Cold Fusion Developer Resources http://www.cfdev.com/ -Original Message- From: Steve Goldenberg [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 25, 2000 12:04 PM

RE: Running SQL Server on A Seperate Machine

2000-04-26 Thread Pete Freitag
No you can do it with the professional version. When you setup the datasource you specify the servername of the SQL Server. The Enterprise Version has support for Native Drivers (such as Oracle), MS SQL Server's native driver is OLE DB ___ Pete

RE: Who's on the System

2000-04-26 Thread Pete Freitag
bsite" ___ Pete Freitag CFDEV.COM Cold Fusion Developer Resources http://www.cfdev.com/ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 26, 2000 12:32 PM To: [EMAIL PROTECTED] Subject: Who's on

RE: Limit simultaneous requests to 5

2000-04-26 Thread Pete Freitag
It's an executable in your coldfusion/bin directory probably... C:\cfusion\bin\cfstat.exe ___ Pete Freitag CFDEV.COM Cold Fusion Developer Resources http://www.cfdev.com/ -Original Message- From: Adrian Cesana [mailto:[EMAIL PROTECTED]] Sent

RE: Embedded telnet client?

2000-04-26 Thread Pete Freitag
Here's one... http://www.first.gmd.de/persons/leo/java/Telnet/ There is also a telnet applet bundled with webmin http://www.webmin.com ___ Pete Freitag CFDEV.COM Cold Fusion Developer Resources http://www.cfdev.com/ -Original Message- From

RE: Data source List

2000-04-25 Thread Pete Freitag
CF_DataSource allows you to add, edit, and query databases. You can get it at http://www.cfdev.com/products ___ Pete Freitag CFDEV.COM Cold Fusion Developer Resources http://www.cfdev.com/ -Original Message- From: Richard Diolata [mailto

RE: HELP WITH CASE SENSITIVE LOGIN

2000-04-25 Thread Pete Freitag
You can use the LCase() function to convert a string to lowercase... So you could say ... cfset form.username = LCase(form.username) ___ Pete Freitag CFDEV.COM Cold Fusion Developer Resources http://www.cfdev.com/ -Original Message- From

RE: does everyone always encrypt??

2000-04-25 Thread Pete Freitag
of hiding implementation details. I am not suggesting that this is your case, I am speaking in general here. We do not encrypt templates on our websites, but we sometimes encrypt templates that go to other companies. ___ Pete Freitag CFDEV.COM C

RE: CheckBox

2000-04-24 Thread Pete Freitag
. ___ Pete Freitag CFDEV.COM Cold Fusion Developer Resources http://www.cfdev.com/ -Original Message- From: Scott M. Berry [mailto:[EMAIL PROTECTED]] Sent: Monday, April 24, 2000 3:06 AM To: [EMAIL PROTECTED] Subject: CheckBox Ok.. checkbox question: I want to check in the action page

RE: Can we hide

2000-04-24 Thread Pete Freitag
ion=Processform" input type="hidden" name="Customerid" value="999" /form a href="javascript:submitform('formname', 'Processform')"Click Here/a to process form. You might want to double check that this is cross browser compatible.

RE: avoid cached pages

2000-04-23 Thread Pete Freitag
CFHEADER Name="Expires" Value="#Now()#" _______ Pete Freitag CFDEV.COM Cold Fusion Developer Resources http://www.cfdev.com/ -Original Message- From: Nathan Chen [mailto:[EMAIL PROTECTED]] Sent: Friday, April 21, 2000 1:59 P

RE: Basic Query Question

2000-04-23 Thread Pete Freitag
WHERE Membername != '#Cookie.Memebername#' OR WHERE Membername '#Cookie.Membername#' See http://www.cfdev.com/resources/discussion/messages.cfm?id=7 For more SQL info ___ Pete Freitag CFDEV.COM Cold Fusion Developer Resources http://www.cfdev.com

RE: Error: Unable to instantiate environment for 'ODBC.'

2000-04-23 Thread Pete Freitag
Haven't come across this error myself, but if it's a database problem, you may find a solution by installing the latest MDAC download at http://www.microsoft.com/data/ ___ Pete Freitag CFDEV.COM Cold Fusion Developer Resources http://www.cfdev.com

RE: Another cookie question

2000-04-23 Thread Pete Freitag
IsDefined("cookie.beenhere") You have already been to this page. cfabort /cfif _______ Pete Freitag CFDEV.COM Cold Fusion Developer Resources http://www.cfdev.com/ -Original Message- From: Bob Hill [mailto:[EMAIL PROTECTED]]

RE: Query Cache Question

2000-04-20 Thread Pete Freitag
tput /cfif Now you can refer to a field based on your primary key, like this... cfoutput#attributes.getProductDetails[Attributes.PdtID].Price#/cfoutput _______ Pete Freitag CFDEV.COM Cold Fusion Developer Resources http://www.cfdev.com/ -Original Message

RE: Big Problems!! - VNC

2000-04-20 Thread Pete Freitag
Was that on NT? I've found that VNC runs much slower on NT than on a unix environment with X-Windows(it flies on X!). Haven't had problems running it with unix, but it was very slow on NT. I suspect this has to do with the GUI architecture. ___ Pete

RE: Question on FuseBox model

2000-04-18 Thread Pete Freitag
url scoping, and a cf_formurl2attributes call is not required. _______ Pete Freitag CFDEV.COM Cold Fusion Developer Resources http://www.cfdev.com/ -Original Message- From: Fred Sanders [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 18, 2000 9:33 PM To:

RE: CFTREE or Javascript?

2000-04-17 Thread Pete Freitag
with the recursion if you use CFX_MakeTree it sorts the query for you. I have never used it in a live environment so, I am not familiar with the pitfalls of it. ___ Pete Freitag CFDEV.COM Cold Fusion Developer Resources http://www.cfdev.com/ -Original Message

RE: Express

2000-04-12 Thread Pete Freitag
templates. ___ Pete Freitag CFDEV.COM Cold Fusion Developer Resources http://www.cfdev.com/ -Original Message- From: Computer Simplistics Support [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 12, 2000 8:06 PM To: [EMAIL PROTECTED] Subject: Express

RE: NSlookup on email domains

2000-04-07 Thread Pete Freitag
I believe there is a CFX tag that does nsloopup... All you would have to do is strip the characters before and including the @ symbol in the address. ___ Pete Freitag CFDEV.COM Cold Fusion Developer Resources http://www.cfdev.com/ -Original

RE: Cached Query's?

2000-04-06 Thread Pete Freitag
# this is an excellent way to go. You Also may not want to cache too many queries it could hog all your server memory. So you are going to need to do some testing of your own to figure out which works better for your server hardware. ___ Pete Freitag CFDEV.COM Cold Fusion

RE: Ways to improve performance?

2000-04-03 Thread Pete Freitag
PROTECTED] Pete Freitag CFDEV.COM Cold Fusion Developer Resources http://www.cfdev.com/ -Original Message- From: Ian [mailto:[EMAIL PROTECTED]] Sent: Monday, April 03, 2000 9:53 AM To: [EMAIL PROTECTED] Subject: Ways to improve performance

RE: View-Source in IE

2000-04-03 Thread Pete Freitag
Sure, Using CFHTTP cfset fileIwant = "http://me.com/hello.cfm" cfhttp url="#fileIwant#" method="get"/cfhttp cffile action="WRITE" file="myfile.htm" output="#CFHTTP.FileContent" addnewline="Yes" __

RE: outlook question

2000-04-03 Thread Pete Freitag
Probably English Query on SQL Server. ___ Pete Freitag CFDEV.COM Cold Fusion Developer Resources http://www.cfdev.com/ -Original Message- From: Stephen M. Aylor [mailto:[EMAIL PROTECTED]] Sent: Monday, April 03, 2000 2:04 PM To: [EMAIL

RE: Executing DOS command Security

2000-04-03 Thread Pete Freitag
Nicole, If you don't consider cffile to be a security concern, then cfexecute it probably in the same risk ball park, although potentially more harmful, both can do some damage. ___ Pete Freitag CFDEV.COM Cold Fusion Developer Resources http

RE: JSP vs ColdFusion

2000-04-03 Thread Pete Freitag
JSP More Scaleable JSP Developers cost more/hour, and take likely take more time to do it. JSP Much more Robust CF Limited to CFML and CFX (which hardly limits anyone!) JSP Widely used CF Not as widely used, but everyone who uses it loves it! ___ Pete

RE: Stuctures and Arrays, huh? :-)

2000-04-03 Thread Pete Freitag
more sense. ___ Pete Freitag CFDEV.COM Cold Fusion Developer Resources http://www.cfdev.com/ -Original Message- From: Jay Sudowski [mailto:[EMAIL PROTECTED]] Sent: Monday, April 03, 2000 5:49 PM To: [EMAIL PROTECTED] Subject: Stuctures and Arrays

RE: naming databases for datasources

2000-04-02 Thread Pete Freitag
t; /CFCASE CFCASE VALUE="www.domain3.com,domain3.com,123.123.123.131" CFLOCATION URL="/domain3dir/index.cfm" /CFCASE /CFSWITCH I would also incluse a Cfdefaultcase in there just in case _ Pete Freitag CFDEV.COM Cold Fusion Deve

RE: being lazy, looking for easy way out

2000-03-31 Thread Pete Freitag
attributes.url# Failed to respond at #DateFormat(Now())# #TimeFormat(Now())# /cfmail /cfif ________ Pete Freitag CFDEV.COM Cold Fusion Developer Resources http://www.cfdev.com/ -Original Message- From: Sharon DiOrio [mailt

RE: Add New Table In SQL Server

2000-03-28 Thread Pete Freitag
You use CREATE TABLE tablename (data-type column-name, etc) ___ Pete Freitag CFDEV.COM Cold Fusion Developer Resources http://www.cfdev.com/ -Original Message- From: Gary Kam [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 28, 2000 3:19 AM

RE: search a database

2000-03-28 Thread Pete Freitag
LIKE '%", "ALL")#%' /cfquery The above query will search each word (separated by a space) against the field. _____ Pete Freitag CFDEV.COM Cold Fusion Developer Resources http://www.cfdev.com/ -Original Message- From: Ryan Shrout [mailto:[E

RE: Date Query

2000-03-28 Thread Pete Freitag
SELECT whatever FROM table WHERE datefield #mydate# AND datefield #myotherdate# You may consider using the CreateODBCDateTime() function in there. Pete Freitag CFDEV.COM Cold Fusion Developer Resources http://www.cfdev.com/ -Original

RE: Sorting on data in an ARRAY

2000-03-28 Thread Pete Freitag
of the work here. The people who make database engines are smart dudes, so I have no problem with pushing the load to it db. Let's get some more details of what you are doing, there is a good chance you can do this more efficiently. __ Pete Freitag

RE: 404 checking

2000-03-28 Thread Pete Freitag
Yes, you would have to use a CFX tag, like CFX_HTTP (http://www.fsc.follett.com/cf/cfx_http/) it returns Headers __ Pete Freitag CFDEV.COM Cold Fusion Developer Resources http://www.cfdev.com/ -Original Message- From: Seth Petry-Johnson

<    1   2   3   4   5   6