Re: CFPDF + Text .... how do you change the font size?

2009-01-12 Thread Mike Chabot
Jeff, If the font size is smaller than you would like it might be due to the automatic scaling done to try to fit text into the available space. Just a guess. Can you make the font smaller but not larger? Are you using inline styles? Posting a code snippet might help. -Mike Chabot On Mon, Jan 12

Re: Problem with CFSTOREDPROC

2009-01-11 Thread Mike Chabot
Try to reproduce the problem using only one database column and a three line database query. It is easier to troubleshoot three lines of SQL than 100 lines of SQL. -Mike Chabot On Sun, Jan 11, 2009 at 6:45 PM, Mauro Luna wrote: > Hi everybody, I have a problem with cfstoredproc and Infor

Re: Comprehensive article on how CFID and CFTOKEN work?

2009-01-10 Thread Mike Chabot
? What you are describing seems like the built-in client scope feature. -Mike Chabot On Sat, Jan 10, 2009 at 12:41 PM, Pete Ruckelshaus wrote: > I'm building a cart-like application where I intend to store the > (usually anonymous) user's intra-session web site state in a databas

Re: Mail Spool TLS

2009-01-07 Thread Mike Chabot
I posted the answer to this about a month ago. It should be in the list archive. -Mike Chabot On Wed, Jan 7, 2009 at 11:35 AM, Paul Kukiel wrote: > A while ago I saw the answer to this but I can't find it. > > I have a bunch of emails in undelivered that I need to move back to sp

Setting default zoom magnification in cfdocument PDFs

2008-12-28 Thread Mike Chabot
cfpdf, but I want to make sure that I'm not overlooking something easier to implement. CF8 Standard/Windows 2003 Thank you, Mike Chabot ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to dat

Re: Locking Shared Variables

2008-12-19 Thread Mike Chabot
The ColdFusion manuals are really good and they are also free. I recommend looking there for a good description of locking. -Mike Chabot On Fri, Dec 19, 2008 at 4:24 PM, Steve LaBadie wrote: > I am using the Alagad Captcha Component and am not familiar with CFLOCK. > Is this correct for l

Re: Browsing files and directories on the server?

2008-12-17 Thread Mike Chabot
Ajax solutions are on the Web. Often HTML text area editor controls (like FCKeditor) have file explorers with them to allow for inserting images into the HTML, but these would likely be overkill to what you are asking for. -Mike Chabot On Tue, Dec 16, 2008 at 9:44 PM, Pete Ruckelshaus wrote: >

Problem with moving mail from Undelivr to Spool using Gmail SMTP

2008-12-13 Thread Mike Chabot
that says "Maintain connection to mail server." Send any new email and make sure it leaves the spool folder. Move back in all the emails in Undelivr and wait for them to be sent. Go back into CFAdmin and uncheck the Maintain connection box (assuming you don't want to keep the connecti

Re: Create PDF from hyperlink

2008-12-11 Thread Mike Chabot
Make sure it is valid HTML, specifically looking for unclosed tags. The PDF creation engine doesn't work with a bunch of CSS. If you are able to reformat the code into more simple HTML then it might behave better. -Mike Chabot On Wed, Dec 10, 2008 at 11:27 PM, Steve Sequenzia <[EMAIL P

Re: Using Coldfusion with Filemaker

2008-12-10 Thread Mike Chabot
The list archives have a good discussion on this topic. -Mike Chabot On Tue, Dec 9, 2008 at 6:10 PM, cfcom <[EMAIL PROTECTED]> wrote: > Does any one have any experience using CF with Filemaker... good, bad, etc >

Re: locking session variables in cf8

2008-12-07 Thread Mike Chabot
Lock to avoid problems with race conditions in the places where these might be an issue. Many Web applications have places where unhandled race conditions can be a problem. -Mike Chabot On Sun, Dec 7, 2008 at 4:36 PM, Matt Quackenbush <[EMAIL PROTECTED]> wrote: > In virtually every case

Re: Desperately trying to make CF-jQuery-Ajax work!

2008-12-06 Thread Mike Chabot
;t changed much recently either. -Mike Chabot On Sat, Dec 6, 2008 at 2:22 PM, Rick Faircloth <[EMAIL PROTECTED]> wrote: > Here's a follow-up concerning the results in Firebug from running the > tutorial, > "Quickstart..." ~~

Re: Excel Workbook Creators

2008-12-03 Thread Mike Chabot
ory. If part of your code is making copies and it is inside of a long loop, then you could see an exponential rise in memory usage due to the object you are copying over and over. POI has been around for a long time so there is a lot of information about it already on the Web. -Mike Chabot On Wed,

Re: Excel Workbook Creators

2008-12-02 Thread Mike Chabot
Check out this page: http://www.carehart.org/cf411/ Also maybe check the latest FAQU. http://www.fusionauthority.com/quarterly/ If you haven't already done so, try searching the list archive to see if your specific question has already been answered. Good luck, Mike Chabot On Tue, Dec 2,

Re: OT- Godaddy Website hosting problem

2008-11-26 Thread Mike Chabot
server. If you change URLs or jump servers, then your session doesn't follow. -Mike Chabot On Wed, Nov 26, 2008 at 3:22 PM, Dave Hatz <[EMAIL PROTECTED]> wrote: > We have a client that has hosted a web site on Godaddy, > http://www.pearlciuminternational.com It points

Re: cfajax broken in CF 8.0.1?

2008-11-26 Thread Mike Chabot
View source in the page, look for a path to a JavaScript file near the top of the HTML that has "cfide" in it. Copy/paste that into the browser address to see if the included file is found. Here is an example: /CFIDE/scripts/ajax/package/cfajax.js -Mike Chabot On Wed, Nov 26, 2008 a

Re: Encryption Recommendation

2008-11-25 Thread Mike Chabot
AES is considered more modern than other types of encryption. Blowfish is both fast and secure. Not all browsers allow for very long URL strings. If your encrypted and encoded string is more than 255 characters you might want to do some browser testing. -Mike Chabot On Tue, Nov 25, 2008 at 11

Re: cfajax broken in CF 8.0.1?

2008-11-25 Thread Mike Chabot
could find? If not, then you might have to make sure the directory that your Web site is using has the latest cfide files in it. -Mike Chabot On Tue, Nov 25, 2008 at 5:41 PM, Chris Hampton <[EMAIL PROTECTED]> wrote: > Mike, > > Thanks for the response. However, the only thing I

Re: cfajax broken in CF 8.0.1?

2008-11-25 Thread Mike Chabot
Ajax functionality was updated in the 8.0.1 release. The release notes have the details. -Mike Chabot On Tue, Nov 25, 2008 at 12:17 PM, Chris Hampton <[EMAIL PROTECTED]> wrote: > I recently updated our servers to CF 8.0.1 and now none of my AJAX code > works. I checked the XHR

Re: Is it possible to override that CF starts weeks on sundays?

2008-11-14 Thread Mike Chabot
Have a look at the SetLocale function and the functions that start with the letters LS to see if these will help you. -Mike Chabot On Fri, Nov 14, 2008 at 9:06 AM, Michael Christensen <[EMAIL PROTECTED]> wrote: > This affects among other this the correctness of weeknumber retu

Re: cfdocument issue - header / footer cutting off content

2008-11-14 Thread Mike Chabot
the paragraph. Maybe try counting lines/letters/words to determine how much text can show up on a page. -Mike Chabot On Thu, Nov 13, 2008 at 6:01 PM, Scott McAllister <[EMAIL PROTECTED]> wrote: > I am confronting a similar problem, although I do have values set for my > cfdocument ma

Re: Scheduled Tasks problem

2008-11-10 Thread Mike Chabot
f "redirect" in the context of a browser requesting a page from a Web server. -Mike Chabot On Mon, Nov 10, 2008 at 1:45 PM, Gary Chambers <[EMAIL PROTECTED]> wrote: > I have a unique task that involves retrieving data from one server, moving it > to another server, and then

Re: CF to .Net - recommended training?

2008-11-10 Thread Mike Chabot
choice? -Mike Chabot On Mon, Nov 10, 2008 at 10:53 AM, <[EMAIL PROTECTED]> wrote: > My company is switching to .Net. Any specific recomendations about what I > should > be looking for to get proper training? > > C Sharp? > Visual Basic? > > Any directions would be

Re: Fun with images

2008-11-08 Thread Mike Chabot
e the user can change the dimensions of the file and upload the modified file back to the server? -Mike Chabot On Sat, Nov 8, 2008 at 12:04 PM, Jake Pilgrim <[EMAIL PROTECTED]> wrote: > I'm currently doing a project for a photographer, and I know most of this has > been done bef

Re: "Pivoting" a CFLOOP'ed HTML table

2008-11-07 Thread Mike Chabot
then loop over that new data structure to create the output. Or maybe use the array syntax of cfquery and instead of looping over a query you loop over listlen(query.columnlist) and reference the datapoints like query['firstname'][1] query['firstname'][2], for the top tab

Re: "Pivoting" a CFLOOP'ed HTML table

2008-11-07 Thread Mike Chabot
You can run a pivot command in your database query before sending the results to ColdFusion so that CF receives the data in a format that can be easily looped over. -Mike Chabot On Fri, Nov 7, 2008 at 5:53 PM, Pete Ruckelshaus <[EMAIL PROTECTED]> wrote: > I'm stumped. > >

Re: creating a CSV file from a CF Query

2008-11-05 Thread Mike Chabot
If you get rid of cfconent then load the page in a browser does it render as a normal CF page such that if you view source you see exactly the content that you expect to see in a CSV file? If it is a text file then use a regular line break instead of a BR tag. -Mike Chabot On Wed, Nov 5, 2008

Re: CFC and Form Variables Question

2008-11-01 Thread Mike Chabot
function if you want to. It still seems strange to me, but many decisions in CF come down to personal preference. -Mike Chabot On Sat, Nov 1, 2008 at 5:49 PM, Rick Faircloth <[EMAIL PROTECTED]> wrote: > You're right, Mike... > > I'm just using the CFC as more of a fun

Re: CFC and Form Variables Question

2008-11-01 Thread Mike Chabot
akes more sense to call Object2.validate(Object1.data) instead of calling Object1.validate(this) since taking the latter approach might nullify your question. -Mike Chabot ~| Adobe® ColdFusion® 8 software 8 is the most important and d

Re: CFC and Form Variables Question

2008-11-01 Thread Mike Chabot
r question, avoid the variables scope inside of a CFC if you can. You can use that, but it is generally considered bad design and it can lead to problems that are hard to troubleshoot. -Mike Chabot On Sat, Nov 1, 2008 at 12:28 PM, Rick Faircloth <[EMAIL PROTECTED]> wrote: > Hi, Dominic and t

Re: CF and SharePoint

2008-10-30 Thread Mike Chabot
ts. If all the documents to search are in SharePoint and your CF Web site does more than just search these documents, then the quickest solution would be to display a URL to the new SharePoint system on the CF search page. -Mike Chabot On Thu, Oct 30, 2008 at 9:28 AM, Victor Moore <[EMAIL PROT

Re: CF and SharePoint

2008-10-29 Thread Mike Chabot
other. Are you looking for a way to search for documents located in a SharePoint system and link to the documents from a ColdFusion Web application? -Mike Chabot On Wed, Oct 29, 2008 at 6:30 PM, Victor Moore <[EMAIL PROTECTED]> wrote: > Hi, > > I have a customer who wants to move

Re: Best way to create an .xls file from a page

2008-10-27 Thread Mike Chabot
seen. -Mike Chabot On Mon, Oct 27, 2008 at 3:46 PM, Dawson, Michael <[EMAIL PROTECTED]> wrote: > You can change your content type so that the browser thinks it is > downloading an Excel file. > > Google: cfcontent Excel cfheader > > -Original Message- > From: Bria

Re: Mail Spooler Woes

2008-10-23 Thread Mike Chabot
how the network is set up. Getting rid of the router intermediary might help. -Mike Chabot On Thu, Oct 23, 2008 at 3:01 PM, <[EMAIL PROTECTED]> wrote: > These 3 servers are on the same network. Using the same mail server. I > don't see how network traffic (since they are on th

Re: Mail Spooler Woes

2008-10-23 Thread Mike Chabot
observe and how does this contrast to that equivalent network activity on the fast server? -Mike Chabot On Thu, Oct 23, 2008 at 2:26 PM, <[EMAIL PROTECTED]> wrote: > I can send 5k emails to my CF8 servers and they each deliver about 1 > piece of mail to my mail server every 3 seconds. &

Re: application.cfc and session structure

2008-10-23 Thread Mike Chabot
Yes, you should use isdefined or try/catch to help prevent errors inside of your error handler. -Mike Chabot On Thu, Oct 23, 2008 at 11:22 AM, Chad Gray <[EMAIL PROTECTED]> wrote: > Right I want to email the session variables. Should I do an inDefined first > to see if they exis

Re: Absolutely Stumped - Reallu Urgent

2008-10-23 Thread Mike Chabot
There is no easy way to convert .NET code to CF code. They are entirely different frameworks that use different approaches to creating Web pages. Rewriting that small sample of code in CF could take a couple of hours even if you were skilled in both technologies. -Mike Chabot On Thu, Oct 23

Re: application.cfc and session structure

2008-10-23 Thread Mike Chabot
If you are referring to something that will run in production as opposed to some limited debugging in a development environment, then I prefer dumping the error details to a database table or inside of an email. -Mike Chabot On Thu, Oct 23, 2008 at 9:27 AM, Chad Gray <[EMAIL PROTECTED]>

Re: CFDocument Head Scratching

2008-10-22 Thread Mike Chabot
will get squished. So if your head section is 1.5 inches, then your top margin needs to be at least 1.5 inches to avoid scaling. Maybe try hard-coding a value for the scale attribute. -Mike Chabot On Wed, Oct 22, 2008 at 4:45 PM, Ryan J. Heldt <[EMAIL PROTECTED]> wrote: > Good Afternoon

Developers Rank Best Application Servers: Cold Fusion, Apache Geronimo Top List

2008-10-22 Thread Mike Chabot
Article: Developers Rank Best Application Servers: Cold Fusion, Apache Geronimo Top List http://www.cio.com/article/print/455845 -Mike Chabot ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date

Re: basic cfc/oo design question

2008-10-21 Thread Mike Chabot
ealthy discussions on the best techniques in the cfcdev mailing list archives. If you prefer a pure OOP design for your site I think you will find ColdFusion to be limiting as you dig deeper into this topic. -Mike Chabot On Tue, Oct 21, 2008 at 6:35 PM, Judah McAuley <[EMAIL PROTECTED]> wrote: &g

Re: Mail Spooler

2008-10-21 Thread Mike Chabot
reads competing with each other without providing any meaningful improvements and stealing processing power away from servicing site visitors. -Mike Chabot On Tue, Oct 21, 2008 at 2:28 PM, <[EMAIL PROTECTED]> wrote: > Wouldn't increasing the spool interval just

Re: Mail Spooler

2008-10-21 Thread Mike Chabot
server, the ColdFusion available thread count, etc. If you have a second server that is faster then one idea is to use that second server for the bulk emails. Offloading maintenance tasks to a secondary server is a common optimization technique. -Mike Chabot On Tue, Oct 21, 2008 at 1:04 PM

Re: Mail Spooler

2008-10-20 Thread Mike Chabot
One email every five seconds is much slower then I would expect. Something is wrong somewhere. I would run typical diagnostics checks to determine where the bottleneck is. -Mike Chabot On Mon, Oct 20, 2008 at 4:18 PM, <[EMAIL PROTECTED]> wrote: > Upon the heels of my CFMail tag questio

Re: PDF into HTML?

2008-10-20 Thread Mike Chabot
Is this a one-time convert or something you want to automate on a server? -Mike Chabot On Mon, Oct 20, 2008 at 10:55 AM, Stephane Vantroyen <[EMAIL PROTECTED]> wrote: > Sorry guys I think I've posted this item first in the wrong section... > > So the question : has anybody a

Re: CFMail Alternatives

2008-10-17 Thread Mike Chabot
out retaining a copy of the email that it failed to send. This is an assumption. -Mike Chabot On Fri, Oct 17, 2008 at 12:25 PM, <[EMAIL PROTECTED]> wrote: > How can I control sending mail to the cf spooler or not from the cfmail > tag itself? This seems like it would be the best

Re: Issues with "Script Protect"

2008-10-16 Thread Mike Chabot
Are you the only person with access to CF Admin? It could be that some other server or security admin is wondering who keeps turning off that option. -Mike Chabot On Thu, Oct 16, 2008 at 11:54 PM, Alan Rother <[EMAIL PROTECTED]> wrote: > Yeah, it's disabled now in the App.cfc... &g

Re: CFMail Alternatives

2008-10-16 Thread Mike Chabot
If you are certain that the ColdFusion spooling process is the source of the slowness then turn off that feature. -Mike Chabot On Fri, Oct 17, 2008 at 12:03 AM, <[EMAIL PROTECTED]> wrote: > Yes I am sure it is the spooler. I sit there and watch it. > > > > > -Orig

Re: CFMail Alternatives

2008-10-16 Thread Mike Chabot
oling bottleneck and that an alternative won't be any faster because it would be subject to the same bottleneck. It is hard to tell. -Mike Chabot On Thu, Oct 16, 2008 at 6:57 PM, <[EMAIL PROTECTED]> wrote: > I think it would be much more cost effective to buy a mail tag than to &g

Re: cfschedule action="run" .... asynchronous or not?

2008-10-03 Thread Mike Chabot
If you are trying to run a scheduled task immediately as opposed to on a schedule, I believe that it is not asynchronous. This would be similar to pressing the execute button next to the scheduled task in CF Admin, which makes you wait. -Mike Chabot On Fri, Oct 3, 2008 at 8:56 AM, Dave Phillips

Re: cfdocument and eps graphics

2008-10-01 Thread Mike Chabot
this support I doubt that this feature will be in CF9. Might as well make the feature request: http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform -Mike Chabot On Wed, Oct 1, 2008 at 11:20 AM, Matthew VanderMeer <[EMAIL PROTECTED]> wrote: > Thanks for the replies, I didn't figure

Re: CFDocument space between header and content

2008-09-25 Thread Mike Chabot
You also might want to add this to your table tag: style="margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;" -Mike Chabot On Thu, Sep 25, 2008 at 3:17 PM, Mike Chabot <[EMAIL PROTECTED]> wrote: > To get rid of the small gap between the header and content, replace > top

Re: CFDocument space between header and content

2008-09-25 Thread Mike Chabot
To get rid of the small gap between the header and content, replace topmargin="0" with style="margin-top:0px;" -Mike Chabot On Thu, Sep 25, 2008 at 11:45 AM, Yuliang Ruan <[EMAIL PROTECTED]> wrote: > I'm trying to set up a PDF CFDocument and I'm been tr

Re: Logging to db vs txt file

2008-09-24 Thread Mike Chabot
comprehensive site-wide error tracking solution that lets you report on errors and send summary emails, then having the errors logged inside of a database helps. -Mike Chabot On Mon, Sep 22, 2008 at 5:06 PM, Nick Gleason <[EMAIL PROTECTED]> wrote: > Hi folks, > > We are planning on

Re: cfdocument and eps graphics

2008-09-20 Thread Mike Chabot
I looked into getting vector graphic images, such as EPS, embedded into a cfdocument-produced PDF and I believe that this is not possible using cfdocument in CF 8.0.1. If anyone thinks otherwise, please let me know. -Mike Chabot > I am just curious about the possibility of using a vec

Re: Sessions and more info

2008-09-20 Thread Mike Chabot
organizations pay employees and vendors out of different budgets, which I'm guessing is the problem. Good luck, Mike Chabot On Sat, Sep 20, 2008 at 12:57 AM, Gus Denton <[EMAIL PROTECTED]> wrote: > Here is my problem.. > I am working in a uni and we have multiple sites (on the same ser

Re: Alternative to using CONTAINS repeatedly?

2008-09-12 Thread Mike Chabot
This function is good: http://cflib.org/udf/SafeText -Mike Chabot On Fri, Sep 12, 2008 at 11:25 AM, Adrian Lynch <[EMAIL PROTECTED]> wrote: > Here&

Re: CF8 enterprise, CF8 Standard, CF7 Standard on same computer?

2008-09-08 Thread Mike Chabot
easy. You should be able to switch from CF7 standard to CF8 standard without changing a single line of code. Getting rid of CF7 would simplify your server setup and the code currently running under CF7 should see an immediate speed boost. -Mike Chabot On Mon, Sep 8, 2008 at 1:01 PM, Dave Watts

Re: mac address and additional protection

2008-09-08 Thread Mike Chabot
logging in with the same account. So would a clearly-worded terms of service agreement as well as monitoring IP addresses in the logs. You could also have code that only lets one person be logged in with an account at one time. -Mike Chabot On Mon, Sep 8, 2008 at 7:49 AM, Richard White <[EM

Re: CF8 enterprise, CF8 Standard, CF7 Standard on same computer?

2008-09-07 Thread Mike Chabot
standard is running fine then CF8 enterprise should run fine as well since they are the same program with the same code. -Mike Chabot On Sun, Sep 7, 2008 at 8:45 AM, Richard Steele <[EMAIL PROTECTED]> wrote: > We want to install CF8 Enterprise and want to do it with minimal disruption >

Re: CFHTTP and SSL

2008-08-25 Thread Mike Chabot
always access a well-known https page like https://mail.google.com You might want to start with a more simple example to get that working, like a single cfhttp call followed by a cfdump of cfhttp. -Mike Chabot On Mon, Aug 25, 2008 at 6:43 PM, Chad Fraser <[EMAIL PROTECTED]> wrote: > I

Re: Setting base url in application.cfc

2008-08-15 Thread Mike Chabot
Try setting application.urlBase in the OnApplicationStart section, unless you really want this to be in the variables scope. -Mike Chabot On Fri, Aug 15, 2008 at 7:07 PM, Barney Boisvert <[EMAIL PROTECTED]> wrote: > You can only set to the variables scope from onRequest, which

Re: Homebrew logging solutions

2008-08-09 Thread Mike Chabot
Based on what you described, go with a database. A database would likely have higher performance and the data would be easier to analyze. -Mike Chabot On Sat, Aug 9, 2008 at 6:16 PM, Pete Ruckelshaus <[EMAIL PROTECTED]> wrote: > All of my sites are on shared servers, and I don't

Re: CDN and Cookies

2008-08-06 Thread Mike Chabot
security issues. Clearly I'm speculating here. My experience with these CDNs mainly comes from caching static files like images or JavaScript files, which don't have any cookie issues. Someone else on this list might have more experience with this reverse proxy setup. Good luck, Mike Chab

Re: CDN and Cookies

2008-08-06 Thread Mike Chabot
I would assume the answer is "no," but I would certainly test this if it is a concern for you. -Mike Chabot On Wed, Aug 6, 2008 at 3:07 PM, Josh Nathanson <[EMAIL PROTECTED]> wrote: > Hello, > > We are set to start using a Content Delivery Network shortly. For those not &

Re: (ot) Best FTP Software 4 Windows

2008-08-01 Thread Mike Chabot
I switched from Smart FTP to FileZilla as my primary FTP program a few years back. -Mike Chabot On Wed, Jul 30, 2008 at 9:07 AM, Che Vilnonis <[EMAIL PROTECTED]> wrote: > Just curious as to what y'all use. In the past I've used Smart FTP, but it > has grown into 'blo

Re: Anyone played with WPF (Windows Presentation Framework)?

2008-07-07 Thread Mike Chabot
learn the technology. The most recent July 4th Hanselminutes podcast is a good discussion about developing in XAML. -Mike Chabot On Mon, Jul 7, 2008 at 4:26 PM, C. Hatton Humphrey <[EMAIL PROTECTED]> wrote: > (Cross-posting from CF-Community, sorry if you get this twice) > > I'm

Re: Session and Request variables are being shared between users

2008-05-31 Thread Mike Chabot
your own secure session management code that doesn't use the standard cookie values that CF creates. Good luck, Mike Chabot On Sat, May 31, 2008 at 12:39 AM, Dustin Martin <[EMAIL PROTECTED]> wrote: > Hmmm...ok. So, how do I find out for sure if I have a proxy or cache between &g

Re: Where is cfcookie stored?

2008-05-26 Thread Mike Chabot
It might be stored in RAM until the browser is closed, at which point a persistent cookie would be written to the disk. -Mike Chabot On Mon, May 26, 2008 at 7:42 PM, Richard Steele <[EMAIL PROTECTED]> wrote: > I've looked in C:\Documents and Settings\Administrator\Local > S

Re: Is this possible - and the best way possible

2008-05-17 Thread Mike Chabot
That is definitely possible and the method of display you suggested seems good to me. A graph would be a nice touch. The decision of how best to display the data might rest with the person who has to view it. -Mike Chabot On Sat, May 17, 2008 at 10:34 PM, Toby King <[EMAIL PROTECTED]>

Re: Help! Can't I set a specific time zone for a CF App?

2008-05-12 Thread Mike Chabot
pendent JVM settings. -Mike Chabot > It's very unlikely that you'll be able to change JVM arguments on a shared > server. > > Dave Watts, CTO, Fig Leaf Software > http://www.figleaf.com/ ~| Adobe® ColdF

Re: Help! Can't I set a specific time zone for a CF App?

2008-05-12 Thread Mike Chabot
The easy fix is to change the time zone on the server, which you say you cannot do. I think you can pass a different timezone id as an argument to the jvm in cfadmin, but this wouldn't impact the database or anything else where the time zone is important. Google for Duser.timezone. -Mike C

Re: Securing (SSL/HTTPS) CFID and CFTOKEN

2008-05-08 Thread Mike Chabot
treat the public portion as a different application (having its own Application.cfc). There are other ways to go about this as well, such as maintaining sessions without storing cfid and cftoken directly in the cookie, which would be an added layer of security on top of SSL. -Mike Chabot On Wed,

Re: CFHTTP resolving URLS?

2008-05-03 Thread Mike Chabot
nt. If you do a dump of the cfhttp variable, and the new location isn't there, then that data point isn't available. You could always use an alternative to cfhttp, such as some Java function or maybe calling a program like wget using cfexecute. Good luck, Mike Chabot On Sat, May 3, 2008

Re: Flex3 and CF 8 connection problem

2008-05-03 Thread Mike Chabot
You also might want to start with the Hello World Flex/CF tutorial app that is on Adobe.com to make sure that works. The "remote" access level should be an attribute of the functions you want to expose that are in the CFC. -Mike Chabot On Sat, May 3, 2008 at 8:20 AM, James Holmes <[

Re: Flex3 and CF 8 connection problem

2008-05-02 Thread Mike Chabot
? What are some of the things you have tried so far that didn't work? -Mike Chabot On Fri, May 2, 2008 at 8:22 PM, <[EMAIL PROTECTED]> wrote: > Hi list, > I try to get Flex3 to get to be working > with CF8 and I can't figure out, why it is not working

Re: MS Excel ODBC source not available in 64 bit Windows Server?

2008-04-30 Thread Mike Chabot
whatever goal you are trying to accomplish. Maybe there is some third party driver that is available. -Mike Chabot On Tue, Apr 29, 2008 at 4:48 PM, Bruce Sorge <[EMAIL PROTECTED]> wrote: > So I googled the hell out of this, and unless I am missing something, > Microsoft again assumed th

Re: Scheduled jobs runs twice

2008-04-29 Thread Mike Chabot
Try deleting the task and readding it. Are all the hotfixes for the server installed? -Mike Chabot On Tue, Apr 29, 2008 at 7:46 PM, Tarea Ponder <[EMAIL PROTECTED]> wrote: > My scheduled job runs twice (CF7)This happened after file migration to > application server. > See sche

Re: 8.0.1 upgrade & Flex broken?

2008-04-26 Thread Mike Chabot
If you don't get the familiar white screen, what do you get in its place? I just checked a CF 8.0.0 server and see a blank white page. -Mike Chabot On Sat, Apr 26, 2008 at 10:04 PM, jonese <[EMAIL PROTECTED]> wrote: > I just did an 8.0.1 upgrade and now when i try to use s

Re: Remove everything but numbers and letters from a string

2008-04-20 Thread Mike Chabot
The regex to use would look like this "[A-Za-z0-9 ]" -Mike Chabot On Sun, Apr 20, 2008 at 5:17 PM, Mike Chabot <[EMAIL PROTECTED]> wrote: > ReReplace() would work. > > -Mike Chabot > > On Sun, Apr 20, 2008 at 4:57 PM, Steve Sequenzia <[EMAIL PROTECTED]> wro

Re: Remove everything but numbers and letters from a string

2008-04-20 Thread Mike Chabot
ReReplace() would work. -Mike Chabot On Sun, Apr 20, 2008 at 4:57 PM, Steve Sequenzia <[EMAIL PROTECTED]> wrote: > I am trying to figure out how to remove all characters from a string besides > numbers, letters and spaces. > > Can anyone point me in the right direction. >

Re: Coldfusion Array help

2008-04-17 Thread Mike Chabot
mensional array or a structure of arrays since you are storing two different types of data points. Good luck, Mike Chabot On Fri, Apr 18, 2008 at 12:28 AM, Brian Sheridan <[EMAIL PROTECTED]> wrote: > Im not that familiar with Coldfusion and I'm learning. I have spent alot of > time wi

Re: Open Source RIA mail client needed

2008-04-04 Thread Mike Chabot
Does it have to be programmed in CF, or will PHP be acceptable? -Mike Chabot On Fri, Apr 4, 2008 at 10:23 AM, Bosky, Dave <[EMAIL PROTECTED]> wrote: > I've been looking around for an open source RIA email client that > includes personal folders, calendars, etc... > Any reco

Re: product query - need an expert

2008-03-31 Thread Mike Chabot
1 FROM product_to_product_options ptpo WHERE ptpo.product_id = p.product_id AND ptpo.stock_level > 0 ) ) If the query returns a row, then the product is in stock. Good luck, Mike Chabot On Mon, Mar 31, 2008 at 8:45 PM, Mike Little <[EMAIL PROTECTED]> wrote: > help! i am stuck... &g

Re: Seeking Spreadsheet App Simulation in CF

2008-03-24 Thread Mike Chabot
Take a look at the cfgrid tag. What you are describing doesn't sound like a spreadsheet. It sounds more like a basic grid to me. Basic grid solutions are much easier to find than spreadsheet solutions. -Mike Chabot On Mon, Mar 24, 2008 at 12:01 AM, Colman, Richard <[EMAIL PROTECTED

Re: many JS libraries are out there, which one for CF8 is the question.

2008-03-19 Thread Mike Chabot
Microsoft completes the takeover. If you program Web applications more than Web sites, you might want to take a look at Adobe Flex, since it is more powerful than any Ajax library. -Mike Chabot On Wed, Mar 19, 2008 at 10:49 PM, Ali <[EMAIL PROTECTED]> wrote: > Hi: I decided to use a J

Re: Extra Level of Security Information

2008-03-17 Thread Mike Chabot
ctive, easy to implement, and essentially free. -Mike Chabot On Sun, Mar 16, 2008 at 8:04 PM, Graham Pearson <[EMAIL PROTECTED]> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > I am just about ready to go live with a new application that will allow > School Districts t

Re: Virtual Server: Problems Bringing Up New CF8 Server

2008-03-17 Thread Mike Chabot
I've done that. Works great. Using a 64-bit host OS lets you add lots of RAM, which lets you run a bunch of VMs on the same hardware. CF should be plenty fast within a VM. -Mike Chabot On Mon, Mar 17, 2008 at 7:36 PM, Colman, Richard <[EMAIL PROTECTED]> wrote: > So, because of the

Re: UDF function inside cffunction?

2008-03-17 Thread Mike Chabot
I would assume that you cannot do this. I don't know too many programming languages outside of JavaScript where this is allowed. Hopefully it is easy enough to add a second cffunction tag outside of the existing cffunction tag. -Mike Chabot On Mon, Mar 17, 2008 at 6:57 PM, Leitch, Oblio &l

Re: Advanced CF Certified Developer directory

2008-03-14 Thread Mike Chabot
I think Adobe abandoned this list. Last time I looked they hadn't added any names to it since it was brought over from MM.com -Mike Chabot On Thu, Mar 13, 2008 at 12:41 PM, exH <[EMAIL PROTECTED]> wrote: > Hi > > Where is the official list of certified developers theses day

Re: OT: Free HTTP traffic monitor? Anyone know of one?

2008-03-14 Thread Mike Chabot
n the free programs I mentioned work well. -Mike Chabot On Fri, Mar 14, 2008 at 6:29 PM, denstar <[EMAIL PROTECTED]> wrote: > On Fri, Mar 14, 2008 at 4:24 PM, denstar <[EMAIL PROTECTED]> wrote: > > I'm pretty sure there's a TCP/IP monitor dealie that comes with CF,

Re: FW: Help Adobe plan the future of Flex or ColdFusion

2008-03-11 Thread Mike Chabot
I completed the survey this morning with no errors encountered. -Mike Chabot On Wed, Mar 12, 2008 at 12:47 AM, James Holmes <[EMAIL PROTECTED]> wrote: > You're lucky. I answered the first couple of screens and got: > > "You are missing information in the URL. Please

Re: PDF

2008-02-20 Thread Mike Chabot
You might want to take a look at ActivePDF for that. -Mike Chabot On Feb 20, 2008 2:05 PM, Rick Sanders <[EMAIL PROTECTED]> wrote: > Hey list, > > > > I have Cold fusion 8, and I was wondering that since PDF and Cold fusion are > both adobe products, how hard is it to t

Re: Getting the difference between two times

2008-02-18 Thread Mike Chabot
es this on cflib.org. Good luck, Mike Chabot On Feb 18, 2008 7:05 PM, Steve Good <[EMAIL PROTECTED]> wrote: > Hi gang, > > I am trying to evaluate the time elapsed between two stored ODBC dates. > I thought that dateDiff() would be my answer, but I get some very > strange

Re: Lean cf8 standard for windows?

2008-02-18 Thread Mike Chabot
asked to help speed up Web sites, the problem comes down to poorly designed databases or sub-optimal database queries. Although increasingly I am seeing Web services as being a bottleneck. Good luck, Mike Chabot On Feb 18, 2008 6:52 PM, Don L <[EMAIL PROTECTED]> wrote: > ok, let's

Re: Lean cf8 standard for windows?

2008-02-18 Thread Mike Chabot
many people have taken a look at this approach. -Mike Chabot On Feb 18, 2008 6:05 PM, Don L <[EMAIL PROTECTED]> wrote: > I'm curious to know, if we are able to not load some of the stuff that a > given cf server does not need, for instance, in my case, I don't need the &g

Re: reinit application variables

2008-02-17 Thread Mike Chabot
StructKeyExists is faster since it targets a specific variable scope instead of incrementally searching though all scopes. You should use structKeyExists unless you are searching for a variable that can be in multiple scopes. -Mike Chabot On Feb 17, 2008 6:38 PM, Ricardo Russon <[EMAIL PROTEC

Re: CF & .NET

2008-02-07 Thread Mike Chabot
S and the CSS. The downside is that if the navigation bar changes, you have to change it in two locations, but I'm not sure if that is an issue for you or not. Good luck, Mike Chabot On Feb 7, 2008 5:55 AM, ColdFusion <[EMAIL PROTECTED]> wrote: > Sorry, but I am trying to share the sa

Re: CF & .NET

2008-02-07 Thread Mike Chabot
iting your own custom code? -Mike Chabot On Feb 6, 2008 8:05 PM, ColdFusion <[EMAIL PROTECTED]> wrote: > I have a JS menu that is configured using a CFM file. The CFM file is the > one that creates all the menu items based on security permissions. > > > > Question is

Re: Users setting up Scheduled Tasks

2008-01-24 Thread Mike Chabot
Yes. cfschedule. -Mike Chabot On Jan 23, 2008 10:24 PM, Rob Parkhill <[EMAIL PROTECTED]> wrote: > Good Evening(or morning or day) > > I am setting up a mailing list on CF7 and I want a user to be able to > configure what they want to send (file/text/etc) and then schedule W

<    1   2   3   4   5   >