Re: Save web page

2005-04-25 Thread Daniel Mackey
CFHTTP .../CFHTTP Then use cfhttp.fileContent as your variable Regards, Dan. Robert Orlini wrote: IS there a way to save the content of a web page using cfsavecontent? Here's my script: cfsavecontent variable=intro CFLocation url=http://www.mypage.com; /cfsavecontent

Re: Stupid custom tag question

2005-08-24 Thread Daniel Mackey
You can do: cfif thisTag.executionMode eq Start Do Nothing cfelse Do your work /cfif Barney Boisvert wrote: Whoops, I screwed up. I want to skip the body, but still execute the closing tag. So that should be method=goToJustBEFOREClosingTag. Not sure what I was thinking. To complete

Re: Stupid custom tag question

2005-08-24 Thread Daniel Mackey
By referencing thisTag.generatedContent, you could possibly do what you want. This is taking the following for granted: 1) Start tag is cf_myTag 2) Body of tag is [in between start and end] 3) End tag is /cf_myTag By setting thisTag.generatedContent to i.e: Nothing, then what you have in

Re: Stupid custom tag question

2005-08-24 Thread Daniel Mackey
I think your going to have to put a CFIF to decide as I cant see an alternative. cf_myTag cfif someExpression //Run body /cfif /cf_myTag Barney Boisvert wrote: I don't want to ignore the content generated by the body, I want to skip execution of the body. In other words, it's

2 Spaces causing problems for CFMX 6.1

2005-09-26 Thread Daniel Mackey
Hi All, I have just run into something weird and I was wondering if anybody could shed some light. Not sure if it is a CF6.1 problem, CF6.1/7 or an underlying Java problem. If I try any CFFILE operation on a file that has 2 sequential spaces in the file name, CFFILE fails. Windows does not

Re: 2 Spaces causing problems for CFMX 6.1

2005-09-26 Thread Daniel Mackey
, but that might alleviate it. cheers, barneyb On 9/26/05, Daniel Mackey [EMAIL PROTECTED] wrote: Hi All, I have just run into something weird and I was wondering if anybody could shed some light. Not sure if it is a CF6.1 problem, CF6.1/7 or an underlying Java problem. If I try any CFFILE operation

RE: Need better CFX tag instead of CFHTTP tag.

2003-09-30 Thread Daniel Mackey
. Daniel Mackey Digital Crew Ltd. Pembroke House, Pembroke Street, Cork, Ireland T: 00353 21 427 7778 -Original Message- From: Ketan Patel [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 30, 2003 12:34 To: CF-Talk Subject: RE: Need better CFX tag instead of CFHTTP tag. Any Help

RE: Need better CFX tag instead of CFHTTP tag.

2003-09-30 Thread Daniel Mackey
it easier for you. Visit www.CFTagStore.com for the very best Coldfusion Custom Tags, Components and Applications. Daniel Mackey Digital Crew Ltd. Pembroke House, Pembroke Street, Cork, Ireland T: 00353 21 427 7778 -Original Message- From: Ketan Patel [mailto:[EMAIL PROTECTED] Sent

RE: Compressing Javascript

2003-10-01 Thread Daniel Mackey
Hi, Have a look at ColdFusion Compactor: http://free.cftagstore.com/index.cfm/page/viewtag/tagId/14 Regards, Dan. -Original Message- From: Brook Davies [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 01, 2003 16:30 To: CF-Talk Subject: Compressing _javascript_ Does anyone know of a

RE: Help with CF and modal window

2003-10-10 Thread Daniel Mackey
Hi, I usually put an IFRAME in the modal window: modal.cfm- cfif not isdefined(inFrame) iframe width=100% height=100% src=""> cfelse !-The main page content-- ! [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: CF Traffic Analyzer

2003-10-17 Thread Daniel Mackey
Hi Neil, Did you look at Statistex on CFTagStore.com by Shawn Wellman? http://www.cftagstore.com/index.cfm/page/viewtag/tagId/31 Regards, Dan. -Original Message- From: Bailey, Neal [mailto:[EMAIL PROTECTED] Sent: Friday, October 17, 2003 15:19 To: CF-Talk Subject: CF Traffic Analyzer

RE: A Lonely CFX - CFX_FileReadLn

2003-10-21 Thread Daniel Mackey
Hi Kym, Contact me offlist if you still require a tag of this capability. We have similar CFX tag that is ripping fast. You pass the file, lineNumber and numberOfLines to it, the result returned in a variable. Regards, Dan. -Original Message- From: Kym Kovan [mailto:[EMAIL PROTECTED]

RE: cfoutput within cfmail

2003-10-22 Thread Daniel Mackey
Hi, You can just use #findCity.city# OR #findCity.city[n]# where n is the index of the value Regards, Dan. -Original Message- From: Tim Laureska [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 22, 2003 17:20 To: CF-Talk Subject: cfoutput within cfmail Is there anyway to put a

OT : Purchasing Bens Book via PayPal

2004-03-11 Thread Daniel Mackey
Coldfusion Custom Tags, Components and Applications Daniel Mackey, Digital Crew Ltd, Pembroke House, Pembroke Street, Cork, Ireland T: 00353 21 427 7778 [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Purchasing Bens Book via PayPal

2004-03-11 Thread Daniel Mackey
Hi Mike, That would be great! If you send me your PayPal address [EMAIL PROTECTED] , I will send the funds straight through! Thanks again, and looking forward to talking to you, Regards, Dan. -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED] Sent: Thursday, March 11,

CFMyAdmin MySQL Database Manager Launched - Free Application!

2004-04-08 Thread Daniel Mackey
of potential in the future for ColdFusion Developers! Regards, Dan. - Visit www.CFTagStore.com for the very best Coldfusion Custom Tags, Components and Applications Daniel Mackey, Digital Crew Ltd, Pembroke House, Pembroke Street, Cork, Ireland T: 00353 21 427

RE: CFMyAdmin MySQL Database Manager Launched - Free Application!

2004-04-08 Thread Daniel Mackey
Launched - Free Application! Cool, I've thought a tool like phpMyAdmin would be nice. Installed it and could not get it to connect.The settings file appears to be encrypted. -Nate -Original Message- From: Daniel Mackey [mailto:[EMAIL PROTECTED] Sent: Thursday, April 08, 2004 12:20 PM To: CF

RE: Question about populating pulldown menus with queries (Beginner)

2003-11-19 Thread Daniel Mackey
Hi John, Try this code for the select bit: select name=CatergoryHeading cfoutput cfloop from=1 to=#RecordsetGetMenu.recordcount# index=i option value=#RecordsetGetMenu.LinkCatergory[i]# cfif isdefined(recordset1.CatergoryHeading) AND recordset1.CatergoryHeading eq

RE: CFHTTP url rewriting

2003-11-25 Thread Daniel Mackey
Hi, Would you be able to stick a BASE HREF into the CHTTP content? How are you using the data once grabbed? Regards, Dan. -Original Message- From: Andrew Golden [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 25, 2003 18:17 To: CF-Talk Subject: CFHTTP url rewriting I have been going

RE: CFHTTP url rewriting

2003-11-25 Thread Daniel Mackey
lto:[EMAIL PROTECTED] Sent: Tuesday, November 25, 2003 18:26 To: CF-Talk Subject: Re: CFHTTP url rewriting On Tuesday, November 25, 2003, at 12:18PM, Daniel Mackey wrote: Hi, Would you be able to stick a BASE HREF into the CHTTP content? Not following what you mean? Please explain a little m

RE: Live Chat

2004-01-08 Thread Daniel Mackey
hi, We use BoldChat on CFTagStore.com and works beautifully. It has a nice client app running in the task tray with customisable alerts. The basic package is free and well priced for extras. Contact Kent via Live Help on www.BoldChat.com Regards, Dan. -Original Message- From: Thomas

Re: popup blocker detector script

2005-05-24 Thread Daniel Mackey
http://www.visitor-stats.com/articles/detect-popup-blocker.php Dan. Connie DeCinko wrote: Just check the code of that page (view source) and see how they did it. i was on a site once and i clicked on popup and it said i had a popup blocker enabled, cant remember site, anyone have a

Re: how to cfoutput from com.allaire.cfx. methods

2005-06-20 Thread Daniel Mackey
Hi David, You can use the .write() function of the Response Object. e.g: reponse.write(This is some bbold/b text from the custom tag.); In the class declaration which inherits from the Custom Tag Interface, the Response and Request objects are passed in which you use to recieve and send data

CFMyAdmin Update - New MX compatible version available

2004-04-16 Thread Daniel Mackey
Coldfusion Custom Tags, Components and Applications Daniel Mackey, Digital Crew Ltd, Pembroke House, Pembroke Street, Cork, Ireland T: 00353 21 427 7778 [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: CFMyAdmin Update - New MX compatible version available

2004-04-16 Thread Daniel Mackey
Roger, This is fixed in the new version. Sorry about that. I have emailed you offlist also. Regards, Dan. -Original Message- From: Roger Benningfield [mailto:[EMAIL PROTECTED] Sent: Friday, April 16, 2004 21:20 To: CF-Talk Subject: Re: CFMyAdmin Update - New MX compatible version

RE: CFMyAdmin Update - New MX compatible version available

2004-04-16 Thread Daniel Mackey
Hi Roger, Could you send me the CF error offlist please? Also, was this the first installation of CFMyAdmin or did you install over the version? The application variables would be different in the new version. Regards, Dan. -Original Message- From: Roger Benningfield [mailto:[EMAIL

RE: CFMyAdmin Update - New MX compatible version available

2004-04-19 Thread Daniel Mackey
Hi Matt and all, We have taken all your comments and suggestions into consideration and the latest version uploaded today will solve any problems posted so far including the hard-coding of the port number. Update List: -Now works on Linux/Windows with support for IE/Firefox/Moz -Ability to

RE: [cftalk] forum software with other surface languages than english

2004-05-23 Thread Daniel Mackey
Hi Uwe, You may be interested in the following application : http://www.cftagstore.com/tags/cfwebboardv20.cfm Its $100 and includes full unencrypted source code, support for MySQL, MSSQL and MSAccess. The Styles and interface can be completely modified and comes packed with 3 different styles

RE: [cftalk] GMAIL - Anyone have an extra?

2004-07-01 Thread Daniel Mackey
I would love one too if anybody is willing to part with one! I am dying to check out the nifty interface, especially the spell checker! [EMAIL PROTECTED] Thank you, kind person! Dan. -Original Message- From: Frank Mamone [mailto:[EMAIL PROTECTED] Sent: Thursday, July 01, 2004 15:27 To:

RE: [cftalk] Re: Upload Utility

2004-10-19 Thread Daniel Mackey
Hi, Check out : http://www.cftagstore.com/tags/cffilemanagerv301.cfm Might be of interest to you. Regards, Dan. -Original Message- From: Dave Francis [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 19, 2004 18:17 To: CF-Talk Subject: [cftalk] Re: Upload Utility CFFTP ?? -

RE: [cftalk] errors on cf5 but not cf6.1

2004-11-07 Thread Daniel Mackey
Hi Daniel, This bit : addCart(#i+1#) on CF5 would have to be addCart(#evaluate(i+1)#) and anything similar. Regards, Dan. -Original Message- From: Daniel Farmer [mailto:[EMAIL PROTECTED] Sent: Sunday, November 07, 2004 15:08 To: CF-Talk Subject: [cftalk] errors on cf5 but not cf6.1

Coral Web Builder

2005-02-08 Thread Daniel Mackey
Hi All, This was highlighted on this list many times before and I was wondering if anybody knew anything about its current abilities future direction or whether its simply a dead duck. The last news update was *June 10, 2004* http://www.pcaonline.com/coral/ Regards, Dan. No virus found in

Re: Anyone used these tools?

2005-03-10 Thread Daniel Mackey
I know I never subscribed either and found myself on their list too. Repeatedly tried to remove and eventually it annoyed me so much, they go straight to the junk folder. Dan. Patrick Evans wrote: If you registered at our website, you are on our email list until you UNSUBSCRIBE. I'm

Re: Anyone used these tools?

2005-03-10 Thread Daniel Mackey
Have you jobs for everyone on this list so? ;-) Patrick Evans wrote: Oh good job dave now look who has showed up ;-P Honestly I have seen these power tools and the other EZtools...most of these things seem like things where code is readily available to do it free...why spend the money..i mean

Re: Dynamically Sort HTML Tables

2005-10-24 Thread Daniel Mackey
Try this one: http://webfx.eae.net/dhtml/sortabletable/sortabletable.html Ben Doom wrote: It seems to work fine on their page. Are you writing out 2-digit months days? Just a guess, though. --Ben [EMAIL PROTECTED] wrote: Howdy, I have implemented the sorttable.js script from

Re: ColdFusion Bug :- functions return additional spaces(!)

2005-10-26 Thread Daniel Mackey
Hi Mark, The whole script is below. Copy from the - to the next -- and run it. Dan. Mark A Kruger wrote: Peter, Could you post your exact code please? The whole test script without the little space here hint? -Mark -Original Message- From: Peter

CFContent failing on large files since moving to ColdFusion 9

2010-06-22 Thread Daniel Mackey
Hi All, I was wondering if somebody could help with a problem we have encountered since moving to ColdFusion 9 from ColdFusion 8. When we use CFContent to serve a file, it fails on large files (300+mb) but works on smaller (-30mb) files. It fails consistantly without a ColdFusion error, the

Re: CFContent failing on large files since moving to ColdFusion 9

2010-06-22 Thread Daniel Mackey
Hi Tom, Everything has been double-checked and request limits checked. I tried on anther CF9 server and the same thing happens. CF8 with the exact same settings works I'm at a complete loss and wondering if anyone else out there with CF9 could try a simple test and see what happens?

Re: CFContent failing on large files since moving to ColdFusion 9

2010-06-22 Thread Daniel Mackey
Ugghhh. I was secretly hoping that wasn't going to be the case... Anyone got any alternatives? Could this be performed using Java? Dan. On Tue, Jun 22, 2010 at 3:10 PM, Tom Chiverton tom.chiver...@halliwells.com wrote: On Tuesday 22 Jun 2010 14:57:12 Daniel Mackey wrote: cfheader name

Re: CFContent failing on large files since moving to ColdFusion 9

2010-06-22 Thread Daniel Mackey
That's interesting. I don't get any messages logged and the server stays up I might give the heap space a lash and see I'm always confused as to where to set the heap, perma and all that jazz and what effects it all has Dan. On Tue, Jun 22, 2010 at 3:11 PM, Tom Chiverton

Re: CFContent failing on large files since moving to ColdFusion 9

2010-06-22 Thread Daniel Mackey
Unfortunately changing the heap (to 1024) didn't make a blind bit of difference :-( Anyone got any suggestions on a possible work around? Dan. On Tue, Jun 22, 2010 at 3:24 PM, Daniel Mackey dmac...@gmail.com wrote: That's interesting. I don't get any messages logged and the server stays up

Re: CFContent failing on large files since moving to ColdFusion 9

2010-06-22 Thread Daniel Mackey
the ColdFusion service after making this change? Increasing the Maximum JVM Heap Size doesn't take effect until the cf service is restarted. How much disk space is left on your server? How much ram does your server have? -Original Message- From: Daniel Mackey [mailto:dmac...@gmail.com