Flash Site Links Sanity Check

2008-08-19 Thread Mark Leder
Hi all, We're having reports of links not being clickable in a site: Take a look at this URL (which has been live for 3 years): http://www.mypersonalbrilliance.com Also, look at this URL (also live for 3 years): http://blog.mypersonalbrilliance.com For both sites, click a few

Recursion Output Help

2008-07-24 Thread Mark Leder
Hi All, Been working on a recursion output for several days now without success. Using a single category table with ID, Name, ParentID. The nesting is up to four layers deep. Problem is, I want to tie the results set to documents that have been posted, with the categoryID referencing the

RE: Recursion Output Help

2008-07-24 Thread Mark Leder
: Recursion Output Help Did you look at this: http://nstree.riaforge.org/ On Thu, Jul 24, 2008 at 1:36 PM, Mark Leder [EMAIL PROTECTED] wrote: Hi All, Been working on a recursion output for several days now without success. Using a single category table with ID, Name, ParentID. The nesting is up

RE: Baffling Error

2008-03-21 Thread Mark Leder
Somebody has a bad link to your site? This happens on all sites (30 or so), the beginning url is valid, it's just at the first ' (single tick), junk is automatically appended on the string. -Original Message- From: Matt Williams [mailto:[EMAIL PROTECTED] Sent: Thursday, March 20, 2008

Baffling Error

2008-03-20 Thread Mark Leder
Hi, I've been going through my error logs on CF8/IIS6, and repeatedly come up with this message (note the URL will be for any site that's on my server, this is an example): http://rosemariespeaks.com/'http:/rosemariespeaks.com/index.cfm The filename, directory name, or volume label

Baffling Error

2008-03-20 Thread Mark Leder
Hi, I've been going through my error logs on CF8/IIS6, and repeatedly come up with this message (note the URL will be for any site that's on my server, this is an example): http://rosemariespeaks.com/'http:/rosemariespeaks.com/index.cfm The filename, directory name, or volume label

RE: Baffling Error

2008-03-20 Thread Mark Leder
The problem is that there are bots pounding all my sites with malformed urls. I get anywhere from 20 to 100 per day. Is there a way to filter/regex stop that from occuring before it throws an error? -Original Message- From: C. Hatton Humphrey [mailto:[EMAIL PROTECTED] Sent: Thursday,

RE: Baffling Error

2008-03-20 Thread Mark Leder
Create a custom 404 that is caught by both CF and IIS/Apache that redirects to /index.cfm ? So, what would the regex or script look like? Because there are lots of variations in the malformed URL. Mark ~| Adobe®

Manually inserting Ajax script calls

2008-02-26 Thread Mark Leder
Been playing around with some of the new CF8 Ajax tools. I notice that when a tool is placed on a page (in this case cftooltip), the scripts needed to run the tooltip are inserted automatically at runtime in the head of the document. Since I have a CMS where I would want to control the

RE: HELP! RE: error with ColdFusion 8 ODBC Agent

2007-10-07 Thread Mark Leder
This STILL does not work. I put the file on the server in the directory CFIDE/administrator. I use terminal services to get to my server. I log into CF8 admin. Then I replace the URL string with: http://127.0.0.1/cfide/administrator/remove.cfm (remove is what I called the page). Same issue,

HELP! RE: error with ColdFusion 8 ODBC Agent

2007-09-29 Thread Mark Leder
I just did an install on a production server and cannot get this script to run. I get this error: The current user is not authorized to invoke this method What am I doing wrong? How do I fix? Uninstalling and reinstalling CF8 is not an option, since I have all the mappings, cf and cfx tags

RE: Content Placeholders

2007-08-08 Thread Mark Leder
in the i18n world, java MessageFormat's are often used for dynamic content like this. it's flexible, quick as an added bonus handles locale formatting where needed. Where would I find something like that? Mark ~| Get the

Content Placeholders

2007-08-05 Thread Mark Leder
Hi, Trying to figure out how to use a placeholder in dynamic content to pull in other content at runtime. A user is entering text on a page in a database driven CMS system. If they insert a token or Placeholder in the middle of the copy somewhere (such as %%ref01%%), I would want that

RE: Content Placeholders

2007-08-05 Thread Mark Leder
Yeah, I was thinking about some type of conditional logic that would parse the entire html to look for an instance of **image01** to trigger the replace. Mark -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: Sunday, August 05, 2007 1:17 PM To: CF-Talk Subject:

CFQuery and MySQL

2007-07-02 Thread Mark Leder
I have a new MySQL connection set up in CF7 - verifies correctly (called mysqldb). Within this connection I have a db called ABC, and then tables within this db. I can't get the cfquery to work correctly: If I use: cfquery name=insertA datasource=mysqldb I get the error: No database selected

RE: CFQuery and MySQL

2007-07-02 Thread Mark Leder
://www.oxalto.co.uk/index.cfm/2007/7/2/Setting-up-a-MySQL- database-with-Unicode--properly-in-Coldfusion-7 T On 2 Jul 2007, at 13:18, Mark Leder wrote: I have a new MySQL connection set up in CF7 - verifies correctly (called mysqldb). Within this connection I have a db called ABC, and then tables within

RegEx help

2007-03-20 Thread Mark Leder
I'm really not very good at this, so I'm grateful for any help. I've been using one of those regex editors, but I just can't seem to get my head around the way it's used (regEx buddy). What I want to do is take a URL string, such as /level-1/2nd-level/index.cfm and just keep the string which is

RE: RegEx help

2007-03-20 Thread Mark Leder
Thanks to all, Gareth's solution works great. Though I want to study Ben's more (one first glance I got bug-eyed looking at it). Thanks, Mark ~| ColdFusion MX7 and Flex 2 Build sales marketing dashboard RIA’s for

Ideas and approaches

2007-02-28 Thread Mark Leder
I have a plain text email that this pushed out when triggered by a third party app (BaseCampHQ). Inside Basecamp, I can point this email to any fixed address I choose. What I want to do is: receive this email inside CF, then parse the body, glitz it up with HTML, and resend out to a list of

RE: Ideas and approaches

2007-02-28 Thread Mark Leder
The CFPOP tag returns a query on action=getAll, which has a column BODY which presumably has the text that you want to manipulate. It sure does! I should have read the docs more thoroughly. That should solve the problem. Thanks for your input. Mark

RE: FCKeditor File Browsing question

2007-02-22 Thread Mark Leder
One option would be to install CFFM on the remote server to serve as the file manager, and disable all upload/modify/manipulate capabilities... then you could just point fckeditor to the remote instance of CFFM. CFFM 1.14has a readOnly property allowing to to use it as a public file repository..

FCKeditor File Browsing question

2007-02-20 Thread Mark Leder
Haven't used FCK much, but I'm curious, can the file browser mechanism be set to browse a public directory on a remote server (which is in another city)? In other words, could I set it to browse using a FQDN: http://www.somesite.com/assets/images/... Thanks, Mark

RE: Line Breaks in Plain Text CFMail - GRRR!

2007-02-16 Thread Mark Leder
Yes, this does work correctly in plain text email. Thanks to everyone's help with this. Mark === cfset crlf = chr(13) chr(10) cfset VARIABLES.formFieldsCopy = cfif Len(ARGUMENTS.rsvpUserBadgeName) cfset VARIABLES.formFieldsCopy = VARIABLES.formFieldsCopy Attendee Name Badge:

RE: Line Breaks in Plain Text CFMail - GRRR!

2007-01-29 Thread Mark Leder
Instead of doing all your cfifs etc within the cfmail tag - do it all prior to the cfmail tag, and build up your content within a variable, just the way you want to. That'll avoid any extra linefeeds etc. Then just spit out that variable in the cfmail tag, within the cfmailpart

Line Breaks in Plain Text CFMail - GRRR!

2007-01-27 Thread Mark Leder
I just cannot get this to work. Sending plain text email, want to force a line break. I've tried chr(10), chr(13), chr(13) chr(10), with and without pound signs, restarted CFMX7. The arguments are outputting correctly. What's the trick to this? cfset carr = chr(13) chr(10)

RE: Line Breaks in Plain Text CFMail - GRRR!

2007-01-27 Thread Mark Leder
: Line Breaks in Plain Text CFMail - GRRR! Remove your 'supresswhitespace' tag. That supresses carriage returns if I remember correctly. Dave -Original Message- From: Mark Leder [mailto:[EMAIL PROTECTED] Sent: Saturday, January 27, 2007 4:10 PM To: CF-Talk Subject: Line Breaks in Plain

RE: Line Breaks in Plain Text CFMail - GRRR!

2007-01-27 Thread Mark Leder
? savecontent should generate the line feeds for you and save the content the way it was originally. If you are outputting to a template then you need to wrap whatever in a pre tag. Doug B. - Original Message - From: Mark Leder [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com

RE: Line Breaks in Plain Text CFMail - GRRR!

2007-01-27 Thread Mark Leder
(ARGUMENTS.rsvpGuest01BadgeName)Guest Name Badge: #ARGUMENTS.rsvpGuest01BadgeName#/cfif /cfoutput /cfsavecontent /cfprocessingdirective cfset variables.formFieldsCopy = replace(variables.formFieldsCopy,carr,chr(13)chr(10),all) Let me know if that works. Dave -Original Message- From: Mark Leder

RE: Line Breaks in Plain Text CFMail - GRRR!

2007-01-27 Thread Mark Leder
Didn't work. -Original Message- From: Mark Leder [mailto:[EMAIL PROTECTED] Sent: Saturday, January 27, 2007 6:03 PM To: CF-Talk Subject: RE: Line Breaks in Plain Text CFMail - GRRR! Good call, I've been thinking along this line. Let me test out and I'll let you know. -Original

RE: Line Breaks in Plain Text CFMail - GRRR!

2007-01-27 Thread Mark Leder
Message- From: Mark Leder [mailto:[EMAIL PROTECTED] Sent: Saturday, January 27, 2007 6:10 PM To: CF-Talk Subject: RE: Line Breaks in Plain Text CFMail - GRRR! Didn't work. -Original Message- From: Mark Leder [mailto:[EMAIL PROTECTED] Sent: Saturday, January 27, 2007 6:03 PM To: CF-Talk

CFHeader No Cache Sanity Check

2007-01-10 Thread Mark Leder
I don't know if its just me or the code I've used for a while, but seems like since the first of this year (or thereabouts) IE (6 or 7) seems to ignore page caching instructions and caches pages. (I'm not seeing this behavior in FF). Wondering if a MS Patch has caused a problem or if others have

RE: CFHeader No Cache Sanity Check

2007-01-10 Thread Mark Leder
Don't know. If they are of equal value I suppose one or more should be deleted. But which one(s)? -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 10, 2007 5:43 PM To: CF-Talk Subject: Re: CFHeader No Cache Sanity Check Is there a reason to set

Cfdocument and cfloop

2007-01-04 Thread Mark Leder
I have a member directory where I'm using CFDocument to create a PDF. The query results are outputted using a cfloop around a table. Problem is, right now, I can only output one record per page before the cfdocumentitem=pagebreak occurs. If I remove the pagebreak, there will be 3 or 4 member

Counting Cfcontent Downloads

2006-12-19 Thread Mark Leder
When using CFContent, how would I write to a db AFTER a file is downloaded (such as a counter/date) in the background, without opening a new page? I do have each file listed in a db, with all the normal file scope fields (size, name, etc). [This E-mail scanned for viruses by Declude EVA]

RE: Counting Cfcontent Downloads

2006-12-19 Thread Mark Leder
at least a prompt to download the file. They could still be counted and simply hit close or concel on the download prompt or even download half of the file and then cancel though. I don't think you are going to get around that in any easy way. That's what I told the client, that I can't control

SQL Concetenation inside CFQuery

2006-12-13 Thread Mark Leder
I'm using this cfquery to pull records from an MSSQL 2005 db: SELECT U.userID, U.userFirstName, U.userMiddleName, U.userLastName, (U.userFirstName + SPACE(1) + U.userMiddleName + SPACE(1) + U.userLastName) AS assignedName FROM a_Table It works great, with one exception. In some cases, the

RE: Flash Player 8+ requirement for an App

2006-12-11 Thread Mark Leder
FYI there are corporate clients (I can think of a very large university) who administratively prevent users from downloading updated components of anything. This client in question is stuck on v7, so none of my flash v8 will play. -Original Message- From: John Dowdell [mailto:[EMAIL

Outgoing CF Mail undelivered

2006-11-30 Thread Mark Leder
For the past two days, all CF generated mail (using CF Mail or ims Mail's CFX tag) are bouncing after being sent and immediately being forwarded to the undeliverable folder. I'm using IIS SMTP server for the push out. I've checked to make sure the service is running, and we have made no changes

RE: Outgoing CF Mail undelivered

2006-11-30 Thread Mark Leder
://blog.cutterscrossing.com Mark Leder wrote: For the past two days, all CF generated mail (using CF Mail or ims Mail's CFX tag) are bouncing after being sent and immediately being forwarded to the undeliverable folder. I'm using IIS SMTP server for the push out. I've checked to make sure

DateAdd in Query Statement

2006-11-27 Thread Mark Leder
I'm attempting to filter a query set based on a date. However, it looks like the DateAdd function is not in an ODBC format, so I can't compare the current date to the filePostDate + twgFileExpDate. I've looked around CFLib without success. How would I write this? cfset

RE: SSL Providers

2006-11-27 Thread Mark Leder
ComodoGroup.com - get the reseller pricing. Thanks, Mark -Original Message- From: Matt Williams [mailto:[EMAIL PROTECTED] Sent: Monday, November 27, 2006 9:15 AM To: CF-Talk Subject: SSL Providers Anyone have any recommendations for SSL certificates? I've used Verisign and Network

RE: DateAdd in Query Statement

2006-11-27 Thread Mark Leder
Outstanding! That was it (the filePostDate value not existing problem). Thanks Jim and Ryan. Thanks, Mark -Original Message- From: Jim Wright [mailto:[EMAIL PROTECTED] Sent: Monday, November 27, 2006 9:26 AM To: CF-Talk Subject: Re: DateAdd in Query Statement Mark Leder wrote: I'm

SQL Problem

2006-11-16 Thread Mark Leder
I'm stumped on this. How to I retrieve records that do not match (I'm wanting to display orphaned Companies that are not associated with Projects). Tried and using NOT and NOT IN() without success. SELECT C.company, C.companyID, C.companyCity, C.companyState, C.companyZip, P.companyID FROM

RE: SQL Problem

2006-11-16 Thread Mark Leder
Jim, Thank you, that worked perfectly. Admittedly, I get confused by the LEFT/ON attribs in queries. Thanks, Mark -Original Message- From: Jim Wright [mailto:[EMAIL PROTECTED] Sent: Thursday, November 16, 2006 11:56 AM To: CF-Talk Subject: Re: SQL Problem Mark Leder wrote: I'm

RE: SQL Problem

2006-11-16 Thread Mark Leder
That works too. Thanks Dave. Thanks, Mark -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Thursday, November 16, 2006 11:56 AM To: CF-Talk Subject: RE: SQL Problem I'm stumped on this. How to I retrieve records that do not match (I'm wanting to display orphaned

RE: Question regarding my first consulting job

2006-11-12 Thread Mark Leder
Rate? I am thinking of charging $60 / hour for development Depends where you are. $60 is too low in my estimation, if you're in the US. Should I ask for 20% ahead of time, or just wait till completion for payment? Get minimum 50% up front before you move a mouse. This keeps people from

RE: Online Help

2006-11-07 Thread Mark Leder
, November 07, 2006 8:34 AM To: CF-Talk Subject: RE: Online Help I use RoboHelp, as buggy as it is. They have a new version due at somepoint since they put out a request for beta testers. Wish I knew more, but that is all I have. -Original Message- From: Mark Leder [mailto:[EMAIL PROTECTED

RE: WYSIWYG Text Editors

2006-11-07 Thread Mark Leder
Xstandard.com Thanks, Mark -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 07, 2006 12:20 PM To: CF-Talk Subject: WYSIWYG Text Editors I'm looking for a list of WYSIWYG text editors for forms. I'm aware of Active Edit, Tinymce and FCKeditor.

RE: Online Help

2006-11-07 Thread Mark Leder
Also, look at these lists of WYSIWYG editors: http://wysiwyg.skybuilders.com/report.html http://www.geniisoft.com/showcase.nsf/WebEditors Thanks, Mark -Original Message- From: Mark Leder [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 07, 2006 12:24 PM To: CF-Talk Subject: RE

Query when using UUID

2006-11-06 Thread Mark Leder
I'm using a cross select control on a form page, so I can select many twgCaseNumbers (varchar) at a time. This code works correctly in other logic when I employ simple integers for the FORM.caseID. However, in this scenario, I'm using UUID's as the FORM.caseID's. It breaks when more than one

RE: Query when using UUID

2006-11-06 Thread Mark Leder
Steve, Thanks, that worked. Didn't know about the undocumented list attribute of cfqueryparam. Thanks, Mark -Original Message- From: Steve Bryant [mailto:[EMAIL PROTECTED] Sent: Monday, November 06, 2006 10:59 AM To: CF-Talk Subject: Re: Query when using UUID This should be the

Online Help

2006-11-06 Thread Mark Leder
What are folks using/recommeding for online help documentation for web apps? Robohelp? Others? I'd like some ability to integrate with CF (conditional logic) and maybe some flash generation, but not mandatory. Thanks, Mark

RE: Log analyser for CF

2006-10-13 Thread Mark Leder
So where's the download link? Is it publically available? Thanks, Mark -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Friday, October 13, 2006 10:17 AM To: CF-Talk Subject: Re: Log analyser for CF Check out flogr from scott stroz: Here is the category URL

RE: Log analyser for CF

2006-10-13 Thread Mark Leder
://www.boyzoid.com/logreader/logReader, has been updated On 10/13/06, Mark Leder [EMAIL PROTECTED] wrote: So where's the download link? Is it publically available? Thanks, Mark -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Friday, October 13, 2006 10:17

Path problem

2006-10-12 Thread Mark Leder
I looking to use a flash app to display images which are read from an XML file (slideshowpro) in a password protected admin area of the site. The app requires that the path to each image be pointed as an absolute URL (for example: http://www.somesite.com/images/image1.jpg

RE: Money no Object - Best Online Editor for dealing with cut'n paste from Word

2006-10-12 Thread Mark Leder
I'll second Ben's vote for xStandard. Thanks, Mark -Original Message- From: Ben Nadel [mailto:[EMAIL PROTECTED] Sent: Thursday, October 12, 2006 11:18 AM To: CF-Talk Subject: RE: Money no Object - Best Online Editor for dealing with cut'n paste from Word I am a huge fan of xstandard.

RE: Money no Object - Best Online Editor for dealing with cut'n paste from Word

2006-10-12 Thread Mark Leder
Up til a few years ago, it was WordPerfect and nothing but WordPerfect until hell freezes over. Thanks, Mark -Original Message- From: Les Mizzell [mailto:[EMAIL PROTECTED] Sent: Thursday, October 12, 2006 11:35 AM To: CF-Talk Subject: Re: Money no Object - Best Online Editor for

RE: Path problem

2006-10-12 Thread Mark Leder
Certified Advanced ColdFusion Developer www.bennadel.com -Original Message- From: Mark Leder [mailto:[EMAIL PROTECTED] Sent: Thursday, October 12, 2006 10:26 AM To: CF-Talk Subject: Path problem I looking to use a flash app to display images which are read from an XML file (slideshowpro

RE: Path problem

2006-10-12 Thread Mark Leder
Indeed browsing directly did work. So I must be missing something inside the flash widget. Thanks for your insight, Dave. Thanks, Mark Flash, like your browser, has no ability to access files on your web server unless those files have valid URLs. What happens if you try to resolve those URLs

Date Add

2006-10-04 Thread Mark Leder
How do I take a current date/time #now()# and add a number of days to it, such as 14 days into the future, then convert to #CreateODBCDateTime()# so I can stick in a db? Can't find anything on cflib, and I'm confused by the syntax of dateAdd()... Thanks, Mark

RE: Date Add

2006-10-04 Thread Mark Leder
)# Can also be combined to one statement: #CreateODBCDateTime(DateAdd('d',14,Now()))# On 10/4/06, Mark Leder [EMAIL PROTECTED] wrote: How do I take a current date/time #now()# and add a number of days to it, such as 14 days into the future, then convert to #CreateODBCDateTime()# so I can stick

RE: CF Project Management Tool

2006-09-29 Thread Mark Leder
Ditto for proworkflow - awesome. Thanks, Mark -Original Message- From: Adkins, Randy [mailto:[EMAIL PROTECTED] Sent: Friday, September 29, 2006 10:27 AM To: CF-Talk Subject: RE: CF Project Management Tool proworkflow -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

RE: easiest/fastest to implement payment processor?

2006-09-22 Thread Mark Leder
My vote also for authorize.net - integration was easy. Thanks, Mark -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Friday, September 22, 2006 9:58 PM To: CF-Talk Subject: Re: easiest/fastest to implement payment processor? So the only person who can attest

RE: Viaklix

2006-09-18 Thread Mark Leder
Deanna, Give this a whirl - I haven't used viaklix in about 4 years with another client, worked then, params might be slightly different now. Let me know, as I'm getting ready to do on for a different client: cfsetting enablecfoutputonly=yes !--- Convert the four digit year to the last two

RE: cfform flash stopped working...

2006-09-06 Thread Mark Leder
Same problem as in CFChart that I'm whining about. I'll send this thread to adobe. I have an open incident with them. Thanks, Mark -Original Message- From: Kris Jones [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 06, 2006 11:57 PM To: CF-Talk Subject: Re: cfform flash stopped

RE: CF Updater 2 problems...

2006-09-05 Thread Mark Leder
- From: Mark Leder [mailto:[EMAIL PROTECTED] Sent: 01 September 2006 19:33 To: CF-Talk Subject: RE: CF Updater 2 problems... Kevin, I'm having the same problem here with CFChart and have opened a tech support issue with Adobe this past Monday. The only STOPGAP fix Adobe has provided has been

RE: CF Updater 2 problems...

2006-09-05 Thread Mark Leder
So why will cfchart work without the per site cfide mapping when viewed in FF, but not in IE, and, why did this break going from 7.01 to 7.02? Thanks, Mark -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 05, 2006 9:00 PM To: CF-Talk Subject: RE:

RE: CF Updater 2 problems...

2006-09-01 Thread Mark Leder
Kevin, I'm having the same problem here with CFChart and have opened a tech support issue with Adobe this past Monday. The only STOPGAP fix Adobe has provided has been to set a CFIDE virtual directory FOR EVERY SITE in IIS 6, pointing to your CFIDE directory (previously I had the CFIDE only in

RE: CFChart Breaks in IE6

2006-08-29 Thread Mark Leder
: Monday, August 28, 2006 8:37 PM To: CF-Talk Subject: Re: CFChart Breaks in IE6 Correct, GraphData.cfm is a servlet filter and shouldn't exist as a file. If the graph shows in FF but not in IE then it's not that. Can you put up an example so we can see? On 8/29/06, Mark Leder [EMAIL PROTECTED] wrote

CFChart Breaks in IE6

2006-08-28 Thread Mark Leder
Hi All, Using MX 7.02 with IIS6. Been using a cfchart routine to display simple data for some time now. Has always worked with no errors (JS or otherwise) in FF. Breaks in IE6 with a JS error message thrown stating an object expected. I was originally thinking that it was a Flash version

CFChart Breaks in IE6

2006-08-28 Thread Mark Leder
Hi All, Using MX 7.02 with IIS6. Been using a cfchart routine to display simple data for some time now. Has always worked with no errors (JS or otherwise) in FF. Breaks in IE6 with a JS error message thrown stating an object expected. I was originally thinking that it was a Flash version

RE: CFChart Breaks in IE6

2006-08-28 Thread Mark Leder
the relevant scripts from the /cfide/scripts/ folder. Look at the source of the page and you'll see what I mean. On 8/28/06, Mark Leder [EMAIL PROTECTED] wrote: Hi All, Using MX 7.02 with IIS6. Been using a cfchart routine to display simple data for some time now. Has always worked with no errors

RE: CFChart Breaks in IE6

2006-08-28 Thread Mark Leder
Here's the cfchart Flash widget generated inside FF 1.56. I've changed nothing in months, why is it now broken in IE? OBJECT classid=clsid:D27CDB6E-AE6D-11cf-96B8-44455354 codebase=http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,2 ,0

RE: CFChart Breaks in IE6

2006-08-28 Thread Mark Leder
FYI - there is no GraphData.cfm within the CFIDE directory in CFMX7.02, at least not on mine. Thanks, Mark -Original Message- From: Mark Leder [mailto:[EMAIL PROTECTED] Sent: Monday, August 28, 2006 2:05 PM To: CF-Talk Subject: RE: CFChart Breaks in IE6 Here's the cfchart Flash widget

RE: Project Management Software

2006-08-17 Thread Mark Leder
Take a look at proworkflow. www.proworkflow.com Thanks, Mark -Original Message- From: Chad McCue [mailto:[EMAIL PROTECTED] Sent: Thursday, August 17, 2006 8:25 AM To: CF-Talk Subject: Project Management Software Does anyone currently use a windows based software program that tracks

vcf (Vcard) Generation

2006-08-11 Thread Mark Leder
Any ideas/tutorials/etc. on how to generate vcards using content from a db? Thanks, Mark ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers,

RE: vcf (Vcard) Generation

2006-08-11 Thread Mark Leder
Thank your for your help! Thanks, Mark -Original Message- From: Pete Ruckelshaus [mailto:[EMAIL PROTECTED] Sent: Friday, August 11, 2006 9:29 AM To: CF-Talk Subject: Re: vcf (Vcard) Generation http://steeev.f2o.org/vcard/ On 8/11/06, Mark Leder [EMAIL PROTECTED] wrote: Any ideas

RE: Proper Case

2006-08-07 Thread Mark Leder
Try using CapFirst() from cflib.org, works great, though you will still have to write a regex for things like McMillan. Thanks, Mark -Original Message- From: Richard Dillman [mailto:[EMAIL PROTECTED] Sent: Monday, August 07, 2006 5:14 PM To: CF-Talk Subject: Proper Case Just wondering

Compare cfdirectory name

2006-06-23 Thread Mark Leder
I'm trying to compare a URL passed value to the results of a cfdirectory, then direct the user depending on whether or not the file exists in the cfdirectory list. As a simple example: url.DIRECTURL= GR newsletter vol 14 issue 5 June 06.doc dList.NAME = GR newsletter vol 14 issue

RE: Compare cfdirectory name

2006-06-23 Thread Mark Leder
I figured this out using a loop. Thanks, Mark -Original Message- From: Mark Leder [mailto:[EMAIL PROTECTED] Sent: Friday, June 23, 2006 2:17 PM To: CF-Talk Subject: Compare cfdirectory name I'm trying to compare a URL passed value to the results of a cfdirectory, then direct the user

RE: Recommendations: WYSIWYG/RTF applet that handles automatic image uploading...

2006-06-20 Thread Mark Leder
Dan, You might want to talk to xStandard directly about the word formatting issue. I've found them to be very accomodating. So far, it's the best of the bunch I've seen. Thanks, Mark -Original Message- From: Dan G. Switzer, II [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 20, 2006

RE: Recommendations: WYSIWYG/RTF applet that handles automatic image uploading...

2006-06-20 Thread Mark Leder
Here may be an answer: http://www.xstandard.com/page.asp?p=A6F1F641-E4F4-456B-8CF2-5825291010C3 Thanks, Mark -Original Message- From: Ben Nadel [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 20, 2006 4:57 PM To: CF-Talk Subject: RE: Recommendations: WYSIWYG/RTF applet that handles

CF Times Out - Going Crazy!

2006-06-20 Thread Mark Leder
I am ready to scream about this. Some weeks a cfquery works great, other times, it craps out with this statement: The request has exceeded the allowable time limit Tag. What could be some causes? I've fought with this for several months off and on - no one's made changes to the code. It's a

RE: CF Times Out - Going Crazy!

2006-06-20 Thread Mark Leder
- Going Crazy! Mark Leder wrote: I am ready to scream about this. Some weeks a cfquery works great, other times, it craps out with this statement: The request has exceeded the allowable time limit Tag. What could be some causes? I've fought with this for several months off

RE: CF Times Out - Going Crazy!

2006-06-20 Thread Mark Leder
. Thanks, Mark -Original Message- From: Denny Valliant [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 20, 2006 10:15 PM To: CF-Talk Subject: Re: CF Times Out - Going Crazy! On 6/20/06, Mark Leder [EMAIL PROTECTED] wrote: Can you see how responsive your DNS is? Is there a special method

Deleting a FILE structure

2006-06-06 Thread Mark Leder
How would I delete an entire FILE structure (which is generated from a CFFile Tag)? Maybe modify the example below somehow (the phrase fullPath is irrelevant)? cfscript if (IsDefined(SESSION.fullPath)) { StructDelete(SESSION fullPath); } /cfscript Thanks, Mark

RE: Deleting a FILE structure

2006-06-06 Thread Mark Leder
Nylon Technology 350 7th Avenue Floor 10 New York, NY 10001 212.691.1134 x 14 212.691.3477 fax www.nylontechnology.com Some people call me the space cowboy. Some people call me the gangster of love. -Original Message- From: Mark Leder [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 06, 2006

RE: Deleting a FILE structure

2006-06-06 Thread Mark Leder
, or something to be concerned about. On 6/6/06, Mark Leder [EMAIL PROTECTED] wrote: No - what I'm looking for is, immediately after a file upload is completed, using Cffile, that the resultant structure generated by cffile be deleted, not the file itself. I have to do this because

RE: Deleting a FILE structure

2006-06-06 Thread Mark Leder
, Mark Leder [EMAIL PROTECTED] wrote: Sure. cffile action=upload filefield=/locationA/ ... Do something with the 1st set of variables presented. #file.serverfile# ... On the same page, upload a second file. cffile action=upload filefield=/locationB/ ... Do something with the second set

Passing Java Applet vars back to CF

2006-05-17 Thread Mark Leder
Hi all, Using CFMX7 on Win2003. I have a java applet embedded in a CF page (page1.cfm) (using object/embed tags) which performs a file upload. Upon successful upload (no errors thrown), I redirect to a second CF page (page2.cfm) to perform additional routines on the FORM vars which should be

RE: Passing Java Applet vars back to CF

2006-05-17 Thread Mark Leder
The java applet logic passes back form params. The form method is already set to post. The form params are vanishing after the file is uploaded to CF's temp directory. What I want to know is how does one make java applet form vars get passed back to the correct session (using the URL.sessionID

RE: Passing Java Applet vars back to CF

2006-05-17 Thread Mark Leder
/17/06, Mark Leder [EMAIL PROTECTED] wrote: The java applet logic passes back form params. The form method is already set to post. The form params are vanishing after the file is uploaded to CF's temp directory. What I want to know is how does one make java applet form vars get passed

RE: Uploading multiple files - not necessarily CF

2006-04-25 Thread Mark Leder
www.aurigma.com Awesome Java tag - some of the best documentation I've seen anywhere. Thanks, Mark -Original Message- From: Everett, Al (NIH/NIGMS) [C] [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 25, 2006 3:05 PM To: CF-Talk Subject: RE: Uploading multiple files - not necessarily

RE: Uploading multiple files - not necessarily CF

2006-04-25 Thread Mark Leder
The java app I mentioned will fit directly into your html, and will accept images, docs, etc, fully configurable. Also has CF examples. Thanks, Mark -Original Message- From: Everett, Al (NIH/NIGMS) [C] [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 25, 2006 4:09 PM To: CF-Talk

CFDirectory

2006-04-19 Thread Mark Leder
Hi all, Trying to get a file listing from a directory, but only capturing the files that are older than 7 days previous to today (using the cfdirectory datelastmodified var). I'm able to retrieve the listing of all files, but I can't seem to get only the ones older than 7 days - throws an

RE: CFDirectory

2006-04-19 Thread Mark Leder
statsLevel3 WHERE dateLastModified = cfqueryparam value=#VARIABLES.dateRange# cfsqltype=CF_SQL_TIMESTAMP / /cfquery Ben Nadel www.bennadel.com -Original Message- From: Mark Leder [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 19, 2006 1:09 PM To: CF-Talk Subject

ListServ Software

2006-04-10 Thread Mark Leder
Any recommendations for listserv software? Doesn't have to be CF, but preferred. My only real criteria is that it can connect to a SQL db so that I can restrict subscribers to those listed in the db (this is for a paid membership only listserv). Thanks, Mark

Anyone have experience getting jUpload to work in CF?

2006-03-29 Thread Mark Leder
Can't seem to get the files to load to the server. Using the commercial version at jupload.biz Contact me off-list. Thanks, Mark ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:236393 Archives:

Updating JRE on MX701

2006-03-21 Thread Mark Leder
Can't find any good docs on how to do this at Adobe. I checked out Forta's blog, but it didn't make much sense. I'm not running JRUN, just a standalone standard edition. Links? Thanks, Mark ~| Message:

RE: Dynamic Form Selects and Posting Troubles

2006-03-16 Thread Mark Leder
Well we're warm: The qPermissionsCount has the moduleID's, in this case 133, 141, 151. The permissionID should be numeric from 1-5 for each ARGUMENT that is passed in, which would be A133, A141, A151. So, thisID needs to refer to each ARGUMENTS.A(x) in turn. cfloop index=i from=1

  1   2   3   4   5   6   >