install Error

2003-04-03 Thread Justin MacCarthy
Hi, Mate of mine getting this error installing CFMX onto NT4. Anyone seen it b4? Error Occurred While Processing Request Unable to load library The Error Occurred in C:\CFusionMX\wwwroot\CFIDE\administrator\login.cfm: line 26 Called from

generating cfstoredproc from a stored Procs

2003-03-19 Thread Justin MacCarthy
Has anyone got a script for generating the cf code CFSTOREDPROC etc... from SQL Stored Procs ? CF/Perl/Java whatever.. Thanks WG ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: Automated RDS file copy over SSL i.e. secure backup

2003-01-07 Thread Justin MacCarthy
how about this Use rsync, tcpwrappers, and ssh. Easy to automatic (command line) This will give you, a very fast (rsnyc will only transfer the bits u need) secure (ssh) , portable (linux/windows everything) and free All opensource... -Original Message- From: Mark W. Breneman

Command line

2002-12-16 Thread Justin MacCarthy
Hi, What is the syntax to run a cfm template from the command line in CF MX? I want to generate Static HTML docs from my cfcs (via util.cfcToHTML) and cfm (using UDF Doc). WG

RE: RegEx Question

2002-11-26 Thread Justin MacCarthy
I'll explain why this doesn't work. !--s1--[*]!--e1-- This replaces !--s1-- followed by anything followed by !--e1--. The problem is that Regexs are greedy so this replaces !--s1-- followed by anything _including_ !--e1-- What you want is to replace !--s1-- followed by anything UNTIL !--e1--.

CSVtoQuery problem

2002-11-19 Thread Justin MacCarthy
Have you got cflock s around the cfx? Justin Date: Tue, 19 Nov 2002 18:28:25 +1100 From: Michael Kear [EMAIL PROTECTED] Subject: Anyone have any ideas why this happens? CSVtoQuery problem Message-ID: [EMAIL PROTECTED] Does anyone else have any idea why my CSVtoQuery tag might be crashing

POST / TCP IP

2002-08-12 Thread Justin MacCarthy
Hi, Please cc [EMAIL PROTECTED] as I'm on digest I am trying to use a TCPIP com object to post form variable but I don't know what the packet should look like. Does anyone know the syntax for a POST? Thanks, Neil First of all - are you looking for trouble?? :-) Can't you use some

Re: ORDER BY in a UNION Query

2000-07-19 Thread Justin MacCarthy
I would say the issue is possibly a reserved word or a quotation mark Can you output the SQL the is generated ~Justin When I stick the Order By statement at the end of the second Select clause, Oracle returns the error: "[Microsoft][ODBC driver for Oracle][Oracle]ORA-00904:

Re: Sticky variables

2000-07-19 Thread Justin MacCarthy
HI Joel, Marc from Advantex has an Excellent article here : http://www.advantex.net/ColdFusion/CFClustering.htm There are a few extra things you could add to it, for example using WDDX to store data you would have stored in a session.structure, but the basics are there ... ~Justin MacCarthy

Re: CF 5.0 and misc questions...

2000-07-19 Thread Justin MacCarthy
.. ~Justin MacCarthy -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a message to [EMAIL PROTECTED

Re: new PDF license

2000-07-18 Thread Justin MacCarthy
Have a look at www.activePDF.com and also the FDF tags in the Tag Gallery (or the Dev exchange as they call these days.) ~Justin - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, July 18, 2000 4:44 PM Subject: new PDF license with the new adobe

Re: Accessing a SQL Server 7.0 DTS Package Via ColdFusion

2000-06-19 Thread Justin MacCarthy
use CFExecute (CF4.5) and dtsrun OR Write a Sproc that uses xp_cmdshell OR run it on a Schedule using sp_add_jobschedule That help? ~JustinMacCarthy - Original Message - From: Marc Lippman [EMAIL PROTECTED] To: cftalk [EMAIL PROTECTED] Sent: Monday, June 19, 2000 2:16 PM Subject:

Re: CFIF syntax debate (kind of...)

2000-06-18 Thread Justin MacCarthy
In fact Cfif Len(trim(Form.Var)) is better as it is faster or if doing a string comparison cfif (FindNoCase(Form.Val,Whatever)) ~JustinMacCarthy - Original Message - From: Phil Labonte [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, June 18, 2000 2:41 PM Subject: CFIF syntax

Re: Weird Prepend

2000-06-18 Thread Justin MacCarthy
You check your application.cfm file ??? ~Justin MacCarthy - Original Message - From: [ W E B D i V A ] [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, June 18, 2000 2:10 PM Subject: Weird Prepend All cfm pages on our server seem to get this: !--!DOCTYPE HTML PUBLIC "-

Re: CFIF syntax debate (kind of...)

2000-06-18 Thread Justin MacCarthy
Second, it removes a bit of overhead. If you don't scope a variable, CF has to search through all of the variable scope types to figure out which one this relates to. Obviously if you tell CF where to look, CF doesn't have to work so hard. True ... Jeff

Re: CMDSHELL ??

2000-06-17 Thread Justin MacCarthy
It basically means, retrieve execute the DTS package DTS__2 from the server called CFUSIONSVR You will have to look at the DTS package to get more info, use the DTS Designer or look up DTS in SQL Server books online in get more info on DTS in general ~Justin MacCarthy - Original

Re: inserting a character between elements of a string

2000-06-17 Thread Justin MacCarthy
Try using a Regular expression with backreferences something like #REReplace("=93STOP=94 ","([A-Za-z])([a-zA-z])","\1-","ALL")# That won't work but it might point you the general direction ~Justin MacCarthy - Original Message - From: Jonatha

Re: One more form question

2000-06-17 Thread Justin MacCarthy
You can only do this in Version4 browser + , unless you relaod the page. Look at the disabled property in IE4 ~JustinMacCarthy - Original Message - From: Les Mizzell [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, June 17, 2000 3:36 PM Subject: One more form question Is this

Re: CFMAIL Alternatives

2000-06-08 Thread Justin MacCarthy
Hi Sean, Look at iMS server from www.coolfusion.com It's cheap, if you just want the 'post' server. Otherwise,there is a COM on serverobjects.com for sending mail.I haven't used this though... ~Justin MacCarthy - Original Message - From: Sean Daniels [EMAIL PROTECTED] To: Cf-Talk

Re: Cold Fusion-based email server...?

2000-05-30 Thread Justin MacCarthy
get at their mailbox with out another logon?) or use cfx_imap from the tag gallery... ~Justin MacCarthy At 11:36 PM Tuesday, you wrote: Hi all, I've seen this thread before, but can't find the info - what's everyone's CF email system of choice? Ian Portent Interactive http

Re: How do you make the Cursor Default to the First Input Field

2000-05-26 Thread Justin MacCarthy
document.forms[0].elements[0].focus() will do it first for first form ,first field ~Justin MacCarthy - Original Message - From: sam komolafe [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, May 26, 2000 5:19 PM Subject: How do you make the Cursor Default to the First Input Field

Re: Credit Card Payment - Java or Perl ?

2000-05-24 Thread Justin MacCarthy
You should be able to do anything that you can do in ActivePerl, you should be able to do in CF. Unless your Java is good , I'd either go with rewritten the activePerl in CF or Calling the Perl cgis with CFHTTP ~Justin - Original Message - From: Ken M. Mevand [EMAIL PROTECTED] To: 02

Re: IIS,Virtual Directorys and CF?

2000-05-24 Thread Justin MacCarthy
Hi Malcolm, I' m a little confused by the first part of the question - however I have some suggestions of the no2. a) Don't include the cfinlcude etc in your Word Template , instead create a handler which includes the middle bit (the HTML created by your users) in between the cfincludes . this

Re: SQL 7 Functions

2000-05-23 Thread Justin MacCarthy
From BOL- mathematical functions Using RAND The RAND function calculates a random floating point number between 0 and 1, and can optionally take a tinyint, int, or smallint value for the starting point of the random number to calculate. This example calculates two random numbers. The first

Re: web based email client : reinventing the wheel

2000-05-23 Thread Justin MacCarthy
You should have a look at iMS from Coolfusion.com ~Justin MacCarthy - Original Message - From: Adam Cantrell [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, May 23, 2000 4:15 PM Subject: web based email client : reinventing the wheel I was wondering if anybody has put a lot

Re: web based email client : reinventing the wheel

2000-05-23 Thread Justin MacCarthy
, forward, attach). Has anyone ran across something like this, or done one theirselve? And if you don't have the source, I would appreciate any pointers or tricks you used to make it faster/better. +-Original Message- +From: Justin MacCarthy [mailto:[EMAIL PROTECTED]] +Sent: Tuesday, May

Re: Reformatting number

2000-05-19 Thread Justin MacCarthy
sorry to post the same message again but its Friday afternoon and my brain is tired. I've got a value 16,511.00 which although it looks like an int, CF believes its a string. So I can't use NumberFormat. I need to turn 16,511.00 into the integer 16511. How? Try this: cfset num=

Re: Wherefor art thou, CGI?

2000-05-18 Thread Justin MacCarthy
From the docs : Request CGI.AUTH_TYPE CGI.CONTENT_LENGTH CGI.CONTENT_TYPE CGI.PATH_INFO CGI.PATH_TRANSLATED CGI.QUERY_STRING CGI.REMOTE_ADDR CGI.REMOTE_HOST CGI.REMOTE_USER CGI.REQUEST_METHOD CGI.SCRIPT_NAME Server CGI.GATEWAY_INTERFACE CGI.SERVER_NAME CGI.SERVER_PORT CGI.SERVER_PROTOCOL

Re: CF and Encryption

2000-05-17 Thread Justin MacCarthy
... ~ Justin MacCarthy ~Irish CFHead Coming soon http://www.CFFAQ.org - Original Message - From: Chris Montgomery [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, May 17, 2000 5:04 AM Subject: CF and Encryption Howdy folks, I am looking for info on what kind of encryption CF

When Failure IS not an option

2000-05-16 Thread Justin MacCarthy
http://www.genekranz.com/ ( former flight director of NASA ) using Cold Fusion :-) Great analogy !!! ~Justin MacCarthy ~CF Astrounaut -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit http

Re: Dynamic Multiple Choice Box

2000-05-16 Thread Justin MacCarthy
I think you can use the TWO_selects_related (from the dev exchange)tag to do this ... ~Justin MacCarthy - Original Message - From: Dave Hannum [EMAIL PROTECTED] To: [EMAIL PROTECTED] [EMAIL PROTECTED] Sent: Tuesday, May 16, 2000 1:55 PM Subject: OT: Dynamic Multiple Choice Box OK JS

Re: Member database with access levels -=- CF4.0.1+Access97

2000-05-15 Thread Justin MacCarthy
te..otherwise the cfid cftoken are set as cookies Hope that helps :-) ~ Justin MacCarthy ~ Irish CF Head you said username and password against the database and sending them to a page once they have successfully logged in. The thing is, how do you make it so someone cant just copy the URL they we

Re: REVERSE QUESTION --- Is there anything that Cold Fusion can do that ASP can't do?

2000-05-12 Thread Justin MacCarthy
in cfscript + more functionally in cfscript generally. ~Justin MacCarthy -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send

Re: [OT] ASP equivalent of CFCONTENT?

2000-05-12 Thread Justin MacCarthy
You need to use the FileSystem Object with % Response.ContentType = "Whatever" % ~Justin MacCarthy - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, May 12, 2000 5:19 PM Subject: [OT] ASP equivalent of CFCONTENT? Sorry for the OT post, but d

.jml Anyone know what language this is ?

2000-05-12 Thread Justin MacCarthy
Hi does anyone know what language uses the extension .jml ? ~ Justin Mac Carthy -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit

Re: How to secure PDF file?

2000-05-10 Thread Justin MacCarthy
Use cfcontent to serve the file Look at alive.allaire.com for egs. ~Justin MacCarthy - Original Message - From: Christian Labrecque [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, May 10, 2000 2:09 PM Subject: How to secure PDF file? Hi, I have some PDF files inside

Quick Question

2000-05-10 Thread Justin MacCarthy
I got a CFM page with form(A) with textarea's hidden fields etc which is submitted to another page with a form(b) and the values from formA are set as hidden fields on form(b) which is submitted or whatever. The question: because users can put any charactors into the formA's textarea , I'm

Re: CFX_IIS ? (and CF limitation ASP doesn't have)

2000-05-10 Thread Justin MacCarthy
version :-) if you use it ... Hope that helps ... ~Justin MacCarthy - Original Message - From: William James [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, May 10, 2000 3:22 PM Subject: Re: CFX_IIS ? (and CF limitation ASP doesn't have) Another possibility that I'm looking

Re: Basic: number of rows returned?

2000-05-07 Thread Justin MacCarthy
Hi, Use the following #queryname.recordcount# so in your case #localads.recordcount# Have a look at these too queryname.CurrentRow queryname.RecordCount queryname.ColumnList ~Justin MacCarthy - Original Message - From: WL [EMAIL PROTECTED] To: Cold Fusion Talk [EMAIL PROTECTED] Sent

Re: group email application

2000-05-05 Thread Justin MacCarthy
Have a look at iMS from CoolFusion.com - Original Message - From: Dan Schueler [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, May 05, 2000 5:27 PM Subject: group email application Does anyone have a corporate workgroup email application available? What I'm thinking about is

Re: Making a unique ID

2000-04-28 Thread Justin MacCarthy
Has anyone noticed that the uuid returned by CF CreateUUID function isn't the right format ??? Why? _ Justin - Original Message - From: James Sleeman [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, April 28, 2000 10:44 AM Subject: RE: Making a unique ID ---Reply to mail

CF on ASPToday - eh yesterday....

2000-04-28 Thread Justin MacCarthy
as that offered by VBScript running in ASP" "...considered to be highly optimized in terms of processing time" I like it !!! ~Justin MacCarthy ~Irish CF Head -- Archives: http://www.eGroups.com/list/cf-t

Re: Directory Security

2000-04-27 Thread Justin MacCarthy
You would be a hundred times better off using an isapi filter to do this. There are lots out there that can authenticate from a ODBC source ... Check out http://www.genusa.com/isapi/authfilt.zip for the source code to do this (from microsoft) Sometime CF is not always the anwser... ~Justin

RE :OT: Embedded telnet client?

2000-04-26 Thread Justin MacCarthy
As usual, there is a cf tag to do this :) Go to www.intrafoundation.com and check out CFX_TCPClient ~Justin - CFHead -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit

Re: CFENCODE!

2000-04-25 Thread Justin MacCarthy
You chould read the header of the file to see if it is encypted Also you chould add your own header to the file using th /h option ... ~Justin MacCarthy - Original Message - From: Daive [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, April 25, 2000 1:32 PM Subject: CFENCODE

Re: Sorting search results: revisited

2000-04-25 Thread Justin MacCarthy
You need to pass the product variable on to the next page like this : a href="search2.5.cfm?orderby=ManufacturerProduct=#product#" Sort by Manufacturer./a ~Justin -- Archives: http://www.eGroups.com/list/cf-talk To

Re: HELP WITH CASE SENSITIVE LOGIN

2000-04-25 Thread Justin MacCarthy
What database are you authenticating against??? ~Justin - Original Message - From: Internet Gold Coast Properties [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, April 24, 1999 6:27 PM Subject: HELP WITH CASE SENSITIVE LOGIN This is a multi-part message in MIME format.

converting word docs - you might be kicking yourself

2000-04-23 Thread Justin MacCarthy
Hi Greg, Are you sure the filter is installed ??? I run this and got a HTML convertor! ~Justin Thanks Justin. This sounded perfect, but it still didn't work. I converted to CF: CFOBJECT ACTION="Create" NAME="WordApp" CLASS="Word.Application" cfset WordApp.Visible = FALSE cfloop

Re: commas in strings

2000-04-20 Thread Justin MacCarthy
Yeah change the custom tag delimiter to a pipe or something else.. shouldn't be too hard? ~Justin - Original Message - From: graham lewis [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, April 20, 2000 2:30 PM Subject: commas in strings I writing the results of a query to a

Re: li'l OT - SQL Server

2000-04-20 Thread Justin MacCarthy
nearly ... UPDATE table SET field = (field + 1) WHERE foobar Is there a way to increment a value in SQL server with one database call - sort of like UPDATE mytable SET foofield = foofield++ WHERE fooid = 2 ? --

Re: converting word docs to HTML [still not working]

2000-04-20 Thread Justin MacCarthy
Hi guys, There is .bas script for homesite that does this. In the code the author notes that quote ' find the index of the HTML converter (this works around a bug in ' MS Word that prevents accessing the HTML converter by name) ' /quote he does a loop over the .FileConverters

SQL 4 Smarties

2000-04-19 Thread Justin MacCarthy
PS - Make sure to get the 2nd Edition version of Joe Celko's SQL for Smarties. According to the liner notes, there are big differences between the two versions. Apparently 1st Edition doesn't cover hierarchical trees to the depth that 2nd Edition does. -Dan Looks like I'll have to get the

Re: twoselectsrelated

2000-04-19 Thread Justin MacCarthy
# { or something like thatI haven't got time to test it , but I did something like that and it worked find... BTW Allaire have nothing to do with the tags on the gallery - nate weiss wrote that tag. ~Justin MacCarthy - Original Message - From: Deanna L. Schneider [EMAIL PROTECTED

Re: Automatically Processing Email in CF

2000-04-13 Thread Justin MacCarthy
a stock symbol and you will get a quote for the symbol emailed back... ~Justin MacCarthy ~Irish ColdFusion Developer -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit http://www.houseoffusion.com

Re: DB update with email notification

2000-04-13 Thread Justin MacCarthy
Using SQLServer You could try SQLMail (yuck!) with a trigger ... ~Justin - Original Message - From: Kevin Marshall [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, April 13, 2000 5:36 PM Subject: Re: DB update with email notification Karen, Is there any reason that you

Re: Netscape! Hidden fields?

2000-04-07 Thread Justin MacCarthy
You sure you have the closing /form tag - Original Message - From: Chris Tazewell [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, April 07, 2000 10:23 AM Subject: Re: Netscape! Hidden fields? This is the resolved source in the Nutscrape browser, the values are from 2 CF

[MSAccess] Getting column names in a table

2000-04-06 Thread Justin MacCarthy
Can some remind me how to get the column names from an Access Table, I never use access so I've forgotten :-) something alone the lines of "Select * from Systable" of something ??? ~Justin who hates MsAccess but has to use it today

Re: query.recordcount woes...

2000-04-05 Thread Justin MacCarthy
It's because you have the CheckLogin.recordcount within the cfoutput q=CheckLogin tags, therefore if there are no row returned nothing with the cfoutput's will run ~ Justin Irish CF Head - Original Message - From: McDonald, David [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday,

Re: being lazy, looking for easy way out

2000-03-30 Thread Justin MacCarthy
There is cfx which allows you to do tcp/ip stuff , telnet , etc... @ www.intrafoundation.com by Lewis .. ~Justin - Original Message - From: Doug Ford [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, March 30, 2000 5:46 PM Subject: RE: being lazy, looking for easy way out