Re: OT: Access 2K and MSDE Connection Problem

2001-04-10 Thread Bud
On 4/10/01, Peter Froh penned: If I choose to create a new project with a new database it does allow me to specify the IP of the server and the database does get created in SQL Server, but I can't access it from this particular workstation (mine of course) I just keep getting the above error. Do

cfform input w/rollover

2001-04-10 Thread Alan Koenig
Is there a way to do a cfform and have the submit button with rollover properties? TIA Alan ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives:

Scheduled Templates

2001-04-10 Thread Costas Piliotis
I've built a template that is supposed to run every evening. I've scheduled it to run, and the log files show it runs. This tamplate basically opens an Excel pivot table, updates the recordset and then saves it. Unfortunately, a problem occurs. When I invoke the cfm file through a browser,

AW: CF 5 Query of Query

2001-04-10 Thread Matthias P. Wiemann
If you name the query something like "application.queryname" then it 's saved in the application scope and should be availiable on page 2 also. Matthias P. Wiemann eWiemann Consulting GmbH Zentnerstr. 17 80798 Muenchen - Germany Tel: +49 (0)89 - 12 73 77 44 Fax: +49 (0)89 - 12 73 77 46

Re: CF 5 Query of Query

2001-04-10 Thread Billy Cravens
Remember that a cached query is only cached as far as htting the database is concerned.. they are not persistent variables, unless you place them in persistent scopes (session, application, etc) -- Billy Cravens HR Web Development, Sabre [EMAIL PROTECTED] William J Wheatley wrote: Ok Heres

CFFILE REAL file size limit

2001-04-10 Thread Hays, Duncan
I have data in a text file I want to read, parse and save to Oracle. It's a little over 2mb. Is CF server going to choke on this? (I'd rather not crash our test server if I can help it.) This is a 1 time import so I can always break it up if I have to. Duncan Hays Peace Corps

Thanks Bud: Re: SQL Server database restore

2001-04-10 Thread sebastian palmigiani
on 4/10/01 1:54 PM, Bud at [EMAIL PROTECTED] wrote: It's pretty easy. Right click on the databases directory in EM, go under the All Tasks menu and choose Restore Database. Hey Bud. Thanks. I knew there was an easy way to do this. Also thank you Adrian Cooper and Adrian Cesana for the

Re: cfform input w/rollover

2001-04-10 Thread Pooh Bear
yeah. just make a simple ol' image rollover with an A HREF, and link it to call a javascript that submits the form. From: "Alan Koenig" [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: cfform input w/rollover Date: Tue, 10 Apr 2001 08:58:31 -1000 Is there

OT - CFLDAP

2001-04-10 Thread Frank Gragnano
Didn't get any response before, so I'm trying again. I too have hit every major list/forum about this. Has anyone here even worked with CFLDAP? Scott helped me out briefly last time, but it was nothing I hadn't tried. I'm having difficulty getting to a certificate through the tag.

Re: CF 5 Query of Query

2001-04-10 Thread William J Wheatley
Wow =) brillantly simple!!! Thanks gessh i am dense sometimes Bill Wheatley Director of Development AEPS INC Allaire ColdFusion Consulting Partner Allaire Certified ColdFusion Developer http://www.aeps.com ICQ: 417645 954-472-6684 X303 IMPORTANT NOTICE: This e-mail and any attachment to it is

Re: cfform input w/rollover

2001-04-10 Thread Jon Hall
cfform does not inhibit a standard submit rollover javascript. Check out Mikodocs tutorial on the subject. http://www.mikodocs.com/tags/forms/index_famsupp_107.html jon - Original Message - From: "Alan Koenig" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, April 10,

RE: CFFILE REAL file size limit [READ size limit]

2001-04-10 Thread Hays, Duncan
I meant action="READ" on this. -Original Message- From: Hays, Duncan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 10, 2001 3:40 PM To: CF-Talk Subject: CFFILE REAL file size limit I have data in a text file I want to read, parse and save to Oracle. It's a little over 2mb. Is CF

TOP function not performing

2001-04-10 Thread W Luke
Why doesn't the TOP function ever work in Access? Sometimes it works, sometimes it doesn't - most of the time it seems it pulls a random record. Is there a way round this? Thanks Will -- [EMAIL PROTECTED] -=- www.lukrative.com Local-Advertising -=- www.localbounty.com

RE: CFFILE REAL file size limit

2001-04-10 Thread Dylan Bromby
nope. i've uploaded files MUCH bigger than that using CFFILE. DB -Original Message- From: Hays, Duncan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 10, 2001 12:40 PM To: CF-Talk Subject: CFFILE REAL file size limit I have data in a text file I want to read, parse and save to

AW: XML-DTD-Text to DTD-graphics converter ?

2001-04-10 Thread cf-talk
Yes somehow. I need graphics like http://idm.internet.com/articles/200011/pxml_11_01_00a.html (first chart) converted from an existing DTD. Uwe -Ursprüngliche Nachricht- Von: Michael Rosario [mailto:[EMAIL PROTECTED]] Gesendet: Dienstag, 10. April 2001 20:41 An: CF-Talk Betreff: RE:

SOLUTION: OT - Sniffing Email

2001-04-10 Thread Erika L Walker
Thank you to everyone who responded to this, I received several different ways to do this, and the solution we chose was provided by Ron Allen Hornbaker, President/CTO, Humankind Systems, Inc., over on CF-Community... (you guys should really sign up for the list...it's lots of fun over

RE: TOP function not performing

2001-04-10 Thread Simon Horwith
try the same query with ORDER BY clauses in both the query and it's sub-query, if there is a sub-query. ~Simon Simon Horwith Macromedia Certified Instructor Certified ColdFusion Developer Fig Leaf Software 1400 16th St NW, # 500 Washington DC 20036 202.797.6570 (direct line) www.figleaf.com

Re: AW: XML-DTD-Text to DTD-graphics converter ?

2001-04-10 Thread Douglas Knudsen
I know this can be done using PHP and GD with Unix/Linux as you can create GIFs on the fly. Any such 'on the fly' GIF creation tools for Windows? By 'on the fly' I mean, the GIF is created when the scipts run and are not actually stored. I suspect that the site below is using this as it is

Re: TOP function not performing

2001-04-10 Thread W Luke
try the same query with ORDER BY clauses in both the query and it's sub-query, if there is a sub-query. ORDER BY - should I be ordering by ID in this case? SELECT TOP 2 ID,Left(subject,20) AS subjects,end_date FROM advert_details ORDER BY end_date DESC Will -- [EMAIL PROTECTED] -=-

Re: TOP function not performing

2001-04-10 Thread W Luke
SELECT TOP 2 ID,Left(subject,20) AS subjects,end_date FROM advert_details ORDER BY end_date DESC - Original Message - From: ""Hayes, David"" [EMAIL PROTECTED] Newsgroups: dotcom.lists.cftalk Sent: Tuesday, April 10, 2001 9:25 PM Subject: RE: TOP function not performing Show us some

RE: OT - CFLDAP

2001-04-10 Thread Costas Piliotis
I've worked with CFLDAP... Dunno about the ports though... Wazzup? -Original Message- From: Frank Gragnano [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 10, 2001 12:53 PM To: CF-Talk Subject: OT - CFLDAP Didn't get any response before, so I'm trying again. I too have hit

RE: TOP function not performing

2001-04-10 Thread Hayes, David
Your ORDER BY field(s) should determine which records are returned; it your example, you should be getting the 2 records with the highest end_date value. If you order by ID, you'll get 2 records with the lowest (sorted ascending) or highest (sorted descending) ID. Is end_date in fact a date

Re: TOP function not performing

2001-04-10 Thread W Luke
Your ORDER BY field(s) should determine which records are returned; it your example, you should be getting the 2 records with the highest end_date value. If you order by ID, you'll get 2 records with the lowest (sorted ascending) or highest (sorted descending) ID. So my code is correct

Create DBF from CF page of Access files.

2001-04-10 Thread CF Crazy
I created Adhoc tool that would provide HTML output for my client. I would like to create one that a client, could write his/her queries and cf could output the query to a dbf that the client could download. An ideas? (Actually, I would rather find one built and skip the work.) Thanks,

OT: Creating SSL Key Request

2001-04-10 Thread Duane Boudreau
Hi All, I just went thru the process of creating an SSL key request on an NT box running IIS 4.0. I created the first copy and wouldn't you know I mispelt something. I deleted the original key from the Key Manager, but now it will not allow me to create a second request. Any ideas how to fix

NN6 frames pages with parameters in URLs

2001-04-10 Thread megan sherman
Hi everyone, There's something I don't understand about cold fusion NN6 frames pages with URL's taking parameters via a question mark. From a demo home page at http://www.digitalnature.net/demo/index.cfm, I have this link to "the store" frameset page:

Re: NN6 frames pages with parameters in URLs

2001-04-10 Thread Bryan LaPlante
Are you loading the frame tag like so, frame set FRAME SRC="#url.pagename#?anchorname=#url.anchorname#" and so on. - Original Message - From: "megan sherman" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, April 10, 2001 7:52 PM Subject: NN6 frames pages with

Creating a Logout action

2001-04-10 Thread Peter J. MacDonald
I know this was talked about recently in the list and I thought I save off the relevant messages but I can not find them. I need to create a logout procedure for my apps I am looking for pointers. Thank You, Peter Peter J. MacDonald II Creative Computing, Inc. 100 Middle Street Lincoln, RI

RE: Access 2K and MSDE Connection Problem

2001-04-10 Thread Christopher P. Maher
I had this problem at first. I updated MSDE to SP3 (use the SPs for SQL 7). If you are trying to connect to a SQL 6.5 database, I think you have to be at SP5. -Original Message- From: Peter Froh [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 10, 2001 1:57 PM To: CF-Talk Subject:

Fw: Do a CFLOCATION and all my session vars disappear?

2001-04-10 Thread Kevin Gilchrist
Hi all, Hope some people are still up and at it! I have a code section where I do a CFLOCATION to a page in caller's parent directory and it starts a brand new session. I traced through the process with the Studio debugger and as soon as I get to the Application.cfm it's as if I started a new

RE: Do a CFLOCATION and all my session vars disappear?

2001-04-10 Thread Bob Silverberg
Are you setting client cookies in your cfapplication tag? If not, the javascript redirect won't hold onto your session. I'm surprised that cflocation with addtoken=yes didn't work. I'm sure this all sounds obvious, but here's what I'd do: 1. Set client cookies in cfapplication (if you aren't

RE: Do a CFLOCATION and all my session vars disappear?

2001-04-10 Thread Bob Silverberg
Oh, you might also try the javascript redirect, but manually add the cfid and cftoken to the end of the URL. Bob -Original Message- From: Bob Silverberg [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 10, 2001 10:35 PM To: CF-Talk Subject: RE: Do a CFLOCATION and all my session vars

RE: SQL Server database restore

2001-04-10 Thread Michael Kear
Restore is the best way to do it, but in my experience, that frequently doesnt work. (Just my luck I guess). So instead you can copy the original datafiles into your SQL data folder, and use attach instead. There are details in the Books Online. i don't have that with me right now, but if I

Oracle UDF in CF Studio?

2001-04-10 Thread David Shadovitz
CF Studio's Database tab shows my Oracle data source's Tables, Views, Queries and Synonyms. Is there any way that I can have it show my user-defined Oracle functions? Thanks. -David ~~ Structure your ColdFusion code with Fusebox. Get the

CF5 Beta Program

2001-04-10 Thread dcooper
Guys, just a friendly reminderCF5 is still in Beta, and all Beta participants are still in the Non-Disclosure Period outlined in the Beta participant NDA. However, CF 5.0 *is* exciting, and there's lots to talk about, so if you're willing to participate, please do sign up for the CF5 Beta at

RE: Do a CFLOCATION and all my session vars disappear?

2001-04-10 Thread Rudy Rustam
Kevin, I got the same problem with cflocation too. Soon I realise it is in the Application.cfm cfapplication name="Tmp" clientmanagement="Yes" sessionmanagement="Yes" setclientcookies="yes" setdomaincookies="no" !--- set this to yes, all cflocation lost

RESOLUTION: Do a CFLOCATION and all my session vars disappear?

2001-04-10 Thread Kevin Gilchrist
Got it to work, (and do I feel stupid!) I forgot to comment out my cflocation which was positioned after the script. It then worked. I guess the thing to watch out for is that you can't do a CFLOCATION on the very first page you process otherwise the cookie never gets written. - Original

RE: Creating SSL Key Request

2001-04-10 Thread Duane Boudreau
Got it. Illegal caracter "," in the Organization name. Duane -Original Message- From: Duane Boudreau [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 10, 2001 8:18 PM To: CF-Talk Subject: OT: Creating SSL Key Request Hi All, I just went thru the process of creating an SSL key

Re: Registry size.

2001-04-10 Thread Neil H.
You guys don't understand this is a hosting server so I don't set the code. Understand now? Thanks, Neil - Original Message - From: "Scott, Andrew" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, April 09, 2001 10:08 PM Subject: RE: Registry size. Not if you follow

Re: cfform input w/rollover

2001-04-10 Thread Alan Koenig
Thanks Alan - Original Message - From: "Jon Hall" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, April 10, 2001 9:51 AM Subject: Re: cfform input w/rollover cfform does not inhibit a standard submit rollover javascript. Check out Mikodocs tutorial on the subject.

Re: MIME TYPE?

2001-04-10 Thread Bryan LaPlante
What I would really like to know is how do you set the download file name with cfcontent so that the saveAs dialogue box does not say thankyou.zip. - Original Message - From: "Scott, Andrew" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, April 10, 2001 1:00 AM Subject:

RE: MIME TYPE?

2001-04-10 Thread Thomas Chiverton
Has anyone found a cheaper applet ? At the moment I have CF code to do this, but it is *really* icky... -Original Message- From: Arden Weiss [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 10, 2001 5:18 AM To: CF-Talk Subject: RE: MIME TYPE? Go to http://www.infomentum.com and look for

RE: Little OT: Security on NT, IIS, and CF

2001-04-10 Thread Thomas Chiverton
SELECT * FROM MyTable WHERE MyId = #Val(form.MyId)# 'cause what you really need to do is sanatise all your strings to prevent any cross site scripting problems too. I use something like cfset attributes.string REReplaceNoCase(attributes.string,"","lt;","ALL") cfset attributes.string

RE: Passing a structure to JavaScript with wddx

2001-04-10 Thread DeVoil, Nick
Marius Looks like you have a structure member called "3" which is not a valid JavaScript variable name. The strange thing is, it's not a valid CF variable name either so I'm not sure how it got there. ? Nick -Original Message- From: Marius Milosav [mailto:[EMAIL PROTECTED]] Sent:

RE: ODBC Error

2001-04-10 Thread Craig Dudley
With MS access a system database (usually called system.mdw) holds user / workgroup and security information , and probably some other things aswell. Though I'm not exactly sure what it means in your case. -Original Message- From: CF Crazy [mailto:[EMAIL PROTECTED]] Sent: 09 April 2001

Preserve #

2001-04-10 Thread Alan Koenig
How can I preserver just a single # for a single line of code? I am using cf 4.01 on a windows platform. TIA Alan Koenig ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm

RE: Preserve #

2001-04-10 Thread Aidan Whitehall
How can I preserver just a single # for a single line of code? I am using cf 4.01 on a windows platform. http://www.thenetprofits.co.uk/coldfusion/faq/index.cfm#answer89 -- Aidan Whitehall [EMAIL PROTECTED] Netshopper UK Ltd Advanced Web Solutions Services Telephone +44 (01744) 648650 Fax

RE: Preserve #

2001-04-10 Thread Adkins, Randy
You can use double symbols ## which will display a single # or use the ASCII Code: Which I think is 35 -Original Message- From: Alan Koenig [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 10, 2001 6:28 AM To: CF-Talk Subject: Preserve # How can I preserver just a single # for a

Re: Preserve #

2001-04-10 Thread Alan Koenig
Thank you Alan - Original Message - From: "Aidan Whitehall" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, April 10, 2001 12:29 AM Subject: RE: Preserve # How can I preserver just a single # for a single line of code? I am using cf 4.01 on a windows platform.

Re: Moreover News Feed

2001-04-10 Thread Dave Hannum
www.isyndicate.com Dave - Original Message - From: "Mak Wing Lok" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, April 10, 2001 12:05 AM Subject: Re: Moreover News Feed just wondering, other than news feed from moreover, is that any other site do offer other

RE: ODBC Error Code = 37000 UGH!!!!!!!!!!!!!

2001-04-10 Thread C. Hatton Humphrey
okay, there's got to be some SQL going from CF to the database driver... either an insert into or an update. Check to make sure that the variable you're updating in the database is the propper type for what CF is trying to put there. HTH Hatton -Original Message- From: Robert Everland

CF Server Type?

2001-04-10 Thread ibtoad
Does anyone know of a tag that will display what type of CF server is running on a shared host? I am just curios because I have the same app running on several servers and it works on 1 and not the others. I am positive that the one it is working on is 4.5.1 SP2 but I am not sure what the

RE: CF Server Type?

2001-04-10 Thread Bob Silverberg
cfoutput #Server.ColdFusion.ProductVersion# /cfoutput Bob -Original Message- From: ibtoad [mailto:[EMAIL PROTECTED]] Sent: April 10, 2001 8:09 AM To: CF-Talk Subject: CF Server Type? Does anyone know of a tag that will display what type of CF server is running on a shared host? I am

IP Address

2001-04-10 Thread Nathan Stanford
I need to figure out who is at a particular IP address not the exact person but if I have a range of 5 or 6 addresses I would like to know who is viewing my website. At least what company... Thanks, Nathan Stanford Senior Programmer/Analyst [EMAIL PROTECTED]

Re: IP Address

2001-04-10 Thread Douglas Knudsen
ever heard of whois? www.networksolutions.com is one such place to do a lookup. DK From: [EMAIL PROTECTED] AT INTERNET on 04/10/2001 08:34 AM To: Douglas Knudsen/ATL/ALLTELCORP, [EMAIL PROTECTED] AT INTERNET@CCMAIL cc: Subject: IP Address I need to figure out who is at a

Re: CF Server Type?

2001-04-10 Thread net_man
#Server.ColdFusion.ProductName# #Server.ColdFusion.ProductVersion# #Server.ColdFusion.ProductLevel# These will work Thanks, Robert Filipovich - Original Message - From: "ibtoad" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, April 10, 2001 8:09 AM Subject: CF

RE: IP Address

2001-04-10 Thread Chip Griffin
Try this for IP lookups: http://www.arin.net/whois/index.html -Original Message- From: Nathan Stanford [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 10, 2001 8:35 AM To: CF-Talk Subject: IP Address I need to figure out who is at a particular IP address not the exact person but if I

Re: IP Address

2001-04-10 Thread Len Conrad
I need to figure out who is at a particular IP address not the exact person but if I have a range of 5 or 6 addresses I would like to know who is viewing my website. Have you ever looked a the report of a web log analyzer? The rate of successful (ie useful) reverse resolutions is low, fairly

CFHTTP binaries?

2001-04-10 Thread Mike Amburn
Can you CFHTTP/CFFILE binaries? I'm trying to write a page that will go out and grab an image off a web page. I thought I could just CFHTTP(get) the image and dump it into a CFFILE, but that didn't work. It seems to only save the GIF89a header, but not the actual image. Any ideas? Here's the

Re: CFHTTP binaries?

2001-04-10 Thread David E. Crawford
Use CFHTTP to save the file directly: cfhttp url="http://www.someserver.com/images/someimage.gif" method="GET" path="c:\" file="myfile.gif" resolveurl="false" DC - Original Message - From: "Mike Amburn" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, April 10, 2001

RE: CFHTTP binaries?

2001-04-10 Thread Top-Link Tech (John Ceci)
Mike, What version CF Server are you running, if I remember right in one version they broke CFHTTP and now it is fixed, I am running 4.5.2 HTH, John -Original Message- From: Mike Amburn [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 10, 2001 8:11 AM To: CF-Talk Subject: CFHTTP

RE: CFHTTP binaries?

2001-04-10 Thread Dylan Bromby
i have a CFX tag specifically for grabbing images. let me know and i'll email it to you off-list. -Original Message- From: Mike Amburn [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 10, 2001 6:11 AM To: CF-Talk Subject: CFHTTP binaries? Can you CFHTTP/CFFILE binaries? I'm trying to

Re: IP Address

2001-04-10 Thread fiachra crean
I got this really cool program recently, called "neotrace" for doing trace routes. It gives all info for IP addresses (if it's available). An evaluation version (30 days) is available at http://www.neotrace.com/ Hope it's of some use. Fiachra. --- Douglas Knudsen [EMAIL PROTECTED] wrote:

RE: IP Address

2001-04-10 Thread Nathan Stanford
Just wondering who this is? 207.179.142.36 207.179.142.41 207.179.142.43 207.179.142.47 207.179.142.49 207.179.142.60 207.179.142.63 207.179.142.66 207.179.142.68 Yes, I have heard of WHOIS.. Nathan Stanford Senior Programmer/Analyst [EMAIL PROTECTED] -Original

Using an Object for ASP in CF

2001-04-10 Thread river
I have an object called ASPHttp by ServerObjects, inc. for GET/POST/HEAD documents using http protocol and was wondering if I could use this dll with ColdFusion pretty much the same way the ASP does. Thanks for any help. ~~ Structure your

Re: IP Address

2001-04-10 Thread Howie Hamlin
Try www.samspade.org - lots of analysis tools there.. HTH, Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. www.CoolFusion.com 631-737-4668 x101 inFusion Mail Server (iMS) - the World's most configurable mail server - Original Message - From: "Nathan Stanford"

RE: IP Address

2001-04-10 Thread Len Conrad
Just wondering who this is? 207.179.142.36 mgw1# dig -x 207.179.142.36 ; DiG 8.3 -x ;; res options: init recurs defnam dnsrch ;; got answer: ;; -HEADER- opcode: QUERY, status: NXDOMAIN, id: 4 ;; flags: qr aa rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0 ;; QUERY SECTION: ;;

RE: IP Address

2001-04-10 Thread Dylan Bromby
there are a number of whois-like tags in the gallery; http://devex.allaire.com/developer/gallery/SearchResults.cfm?keywords=whois; search=search -Original Message- From: Nathan Stanford [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 10, 2001 6:37 AM To: CF-Talk Subject: RE: IP

Re: Using an Object for ASP in CF

2001-04-10 Thread David E. Crawford
Yes. There are some sample applications at http://www.wddx.org in the SDK that use AspHttp or AspTear. You should also be able to modify your ASP applications to CF to use CFOBJECT to make the calls. Dave - Original Message - From: "river" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL

RE: IP Address

2001-04-10 Thread Douglas Knudsen
Ah! As in who the bloody hell is sitting at their PC using this IP? I'm guessing you would have to contact the owners of the domain associated with the IP as in their ISP. I doubt they give that kind of info out without a warrant or perhaps a fly-by with that Navy EP3 plane. :) DK From:

Re: Using an Object for ASP in CF

2001-04-10 Thread Mark Woods
should be able too, see the cfobject tag in the CF docs. At 02:41 PM 4/10/01, you wrote: I have an object called ASPHttp by ServerObjects, inc. for GET/POST/HEAD documents using http protocol and was wondering if I could use this dll with ColdFusion pretty much the same way the ASP does. Thanks

CF Express

2001-04-10 Thread TDesimone
We have an number of applications running on servers that have CF Enterprise installed. We also have applications that could be run on a server that has CF Express installed. Are there problems or restrictions when using CF Express on a commercial site?

Re: CF Express

2001-04-10 Thread Kevin Schmidt
You lose alot of support for specific tags. There is a comparison chart on Allaire's site. - Original Message - From: [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, April 10, 2001 9:15 AM Subject: CF Express We have an number of applications running on servers that

Adnvanced Security niggles

2001-04-10 Thread Thomas Chiverton
Why might the CFIDE interface to Advanced Security die every so often with 'Security Policy Administration Security Policy action failed unexpectedly' style errors ? NT4Sp6,CF4.5SP2,IIS4. Regards, Thomas Chiverton, Intranet Architect and Desktop Analyst Office: 01565 757 909 As a GUI, reality

RE: Adnvanced Security niggles

2001-04-10 Thread Aaron Johnson
Hi Thomas, Advanced Security relies on Siteminder, which will die if it loses its connection to SQL/Oracle/LDAP. Aaron Johnson, MCSE, MCP+I Allaire Certified ColdFusion Developer MINDSEYE, Inc. phn617.350.0339 fax617.350.8884 icq66172567 [EMAIL PROTECTED] -Original Message- From:

Re: CF Express

2001-04-10 Thread Edward Smith
Are you asking from a licensing standpoint? I am not aware of any licensing issues about express wrt. commerical websites. I think that they are relying in the limited functionality to get you to buy Pro or Enterprise, not any specific licensing terms. A quick scan of the license should tell

Re: CF Express

2001-04-10 Thread TDesimone
Any idea where on Allaire's site the chart is located? I have not been able to find it. Thanks. "Kevin Schmidt" [EMAIL PROTECTED] on 04/10/2001 11:27:21 AM Please respond to [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] cc: Subject: Re: CF Express You lose alot of support for

Re: CF Express

2001-04-10 Thread Howie Hamlin
http://www.allaire.com/handlers/index.cfm?ID=13570Method=FullTitle=Edition %20Comparison%20MatrixCache=False HTH, Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. www.CoolFusion.com 631-737-4668 x101 inFusion Mail Server (iMS) - the World's most configurable mail server

RE: Adnvanced Security niggles

2001-04-10 Thread Thomas Chiverton
I'm using the default ODBCJet (Excel) configuration, so that isnt a problem (the files are local too). I've run smconcole, and confirmed it can connect to the datasource. -Original Message- From: Aaron Johnson [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 10, 2001 3:38 PM To: CF-Talk

Re: CF Express

2001-04-10 Thread Kevin Schmidt
http://www.allaire.com/handlers/index.cfm?ID=13570Method=FullTitle=Edition %20Comparison%20MatrixCache=False - Original Message - From: [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, April 10, 2001 9:43 AM Subject: Re: CF Express Any idea where on Allaire's site the

Re: IP Address

2001-04-10 Thread Eric Dawson
http://ipindex.dragonstar.net/ Also I usually do a tracert to see where they are coming from. What kind of traffic do you normally get? Any chance people coule be responding from emails, or web links you control? ie you know something about them. I have been meaning to build a little utility

ODBC Error 37000 Revisted

2001-04-10 Thread Robert Everland
Ok I found out what is causing the error. I am marking up a lot of data to insert as a client variable. Basically I am joining three queries in a structure then marking up the structure. When it is someone who only has a few customers to mark up, no error. Once I get to someone with

RE: Adnvanced Security niggles

2001-04-10 Thread Dave Watts
I'm using the default ODBCJet (Excel) configuration, so that isnt a problem (the files are local too). I've run smconcole, and confirmed it can connect to the datasource. You'll need to upsize the SiteMinder Policy Store from Access to a real database. It just doesn't work very well with

RE: ODBC Error 37000 Revisted

2001-04-10 Thread Bryan Love
Yes there are limits to client variables: 1. Cookie client vars = 4000 chars. 2. Registry client vars = ?? 2. Database client vars for ORACLE 8i using native drivers = 4000 chars 3. Database client vars for ORACLE 8i using ODBC drivers = 2000 chars 4. Database client vars for MS SQL Server 7 =

RE: CF Server Type?

2001-04-10 Thread Bryan Love
Unlikely that CF version is the problem. There are many other factors that come in to play when using other people as hosts, for example: - MDAC version - default client variable storage - permissions such as CFFILE, CFREGISTRY, CFCONTENT, etc... - custom tags directory - load balancing in

RE: update numeric SubString?

2001-04-10 Thread Hayes, David
You're using string operations on numeric values; I assume MS-SQL is able to resolve the discrepancy, but ODBC can't. This statement works through CF: SELECT LEFT(123456,3) + '1' + right(123456 , len(123456) -4) as test. You could put the whole thing in a "CAST" statement, or you could use math

RE: IP Address

2001-04-10 Thread Eric Dawson
Hmmm. Computer names (troy,cmcneil,creid,jana,jromard,exodius,achiasson,dave-woodard,aburke) NBTel (NETBLK-NBTEL-CUST) One Brunswick Square Saint John, NB E2L 4K2 CA Netname: NBTEL-CUST Netblock: 207.179.128.0 - 207.179.191.255 Maintainer: NBTL I am going to test all IPs for

CFLDAP with 512bit SSL

2001-04-10 Thread Frank Gragnano
I've tried before with no success, but I'll ask again. Does anyone know of any issues CFLDAP may have supporting a legacy system with a 512 bit key? It's a secure server, but only under 512 encryption. Does the SSL attribute of CFLDAP support anything other than 128? Because I'm having

Real Database's (was RE: Adnvanced Security niggles)

2001-04-10 Thread Thomas Chiverton
OK, so having already shelled out for CF Server, has anyone had any experience with using GPL / free RDMS's ? I leaning towards MySQL as I have set that up on Linux before... Any experiences or other suggestions ? -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent:

Re: IP Address

2001-04-10 Thread Kevin Schmidt
Eric, How did you find out who owned that block of IP Addresses? Kevin - Original Message - From: "Eric Dawson" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, April 10, 2001 10:24 AM Subject: RE: IP Address Hmmm. Computer names

Supress White Space

2001-04-10 Thread Geoff Hoffman
CF Gurus, I have CHECKED the Suppress whitespace by default option in CF Administrator. Yet when I output a WDDX packet, there's tons (at least 15 lines of misc. tabs and spaces) of white space at the front, and a little at the end. I tried using LTrim, RTrim, and Trim, to no avail. Any

RE: CF Server Type?

2001-04-10 Thread ibtoad
No it was the Service Pack as expected. SP2 works and SP1 does not. It has to do with a tag using cfhttp Thanks for the help, Rich -Original Message- From: Bryan Love [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 10, 2001 11:15 AM To: CF-Talk Subject: RE: CF Server Type? Unlikely

RE: Supress White Space

2001-04-10 Thread Bryan Batchelder
I had run accross something similiar. I believe I had to do either a Replace, or a Regular Expression to remove carriage returns (CRs and LFs) and Tabs from the particular string that I didn't want to have any whitespace. Don't have time to go looking for the exact code, but at least this

cf grid

2001-04-10 Thread Jones, Becky
is there any special code to print data from a grid? * This e-mail, including any attachments, is intended for the receipt and use by the intended addressee(s), and may contain confidential and privileged information. If you are not an

RE: update numeric SubString?

2001-04-10 Thread Caulfield, Michael
I've actually run the query successfully from 4.5 and 5.0b1 -- I'm thinking we might be in bug territory. Rename the column from switch to something else, in case there is some CF confusion regarding switch-case (i.e. a bug in 4.01). I know that sounds implausible, but I can't replicate the

Re: Supress White Space

2001-04-10 Thread Bryan LaPlante
The fastest running custom tag I have ever used for the removal of white space is CF_LessWhiteSpace, get it from the allaire tag gallery (freeware). it was written by Lee Borkman. Bryan - Original Message - From: "Bryan Batchelder" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent:

RTF display in web page

2001-04-10 Thread cassady
Hey everyone, does anyone have a solution to displaying RTF in a browser, formatted to show the headers, layout, etc., along with the rest of the web page? We have RTF text in a database, and want to include that text in a web page. We also want to maintain the formatting. Seen lots of

Expire date of CFCookie

2001-04-10 Thread Mike Schierberl
Does anybody know how CF handles the expiration of cookies if you specify the number of days before a cookie expires? Does it set the expiration date of the cookie based on the date on the server or the date on the client's machine? For example, lets say I set a cookie using the

Caching a Moreover news feed

2001-04-10 Thread C. Hatton Humphrey
Okay, I know this is a bit OT, but I need to ask. I have a site that is pulling a news feed from moreover.com for the front page. This site is on a virtual host and I need to be able to cache the results from the moreover feed and hit that cache, and I really only need the feed to refresh on a

RE: Caching a Moreover news feed

2001-04-10 Thread Zachary S. Bedell
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Have you looked at the CFCACHE tag? Chance are it could do exactly what you need for next to no code. Best regards, Zac Bedell -Original Message- From: C. Hatton Humphrey [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 10, 2001 12:57

  1   2   >