RE: ARGH! - Three Months in the future query problem

2006-05-18 Thread Adrian Lynch
You might want to test the boundary cases because the time portion of datetimes can cause trouble for you. Adrian -Original Message- From: Les Mizzell [mailto:[EMAIL PROTECTED] Sent: 18 May 2006 05:28 To: CF-Talk Subject: Re: ARGH! - Three Months in the future query problem Duh! This

Re: ARGH! - Three Months in the future query problem

2006-05-18 Thread Jim McAtee
Depends on what you're trying to do. Do you want everything between today and the date three months from today? For instance 5/17/2005 to 8/17/2005. Or do you want everthing from the beginning of May through the end of July? The latter could be done with cfset startdate =

Re: ARGH! - Three Months in the future query problem

2006-05-18 Thread Jim McAtee
Whoops. Add just two months to get this month plus the next two. DateAdd(m, 3, startdate) - Original Message - From: Jim McAtee [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Thursday, May 18, 2006 3:15 AM Subject: Re: ARGH! - Three Months in the future query

Coldfusion phpBB

2006-05-18 Thread Luke Freeman
Hi to anyone that can help. I have a website with a coldfusion login system which works fine. However, i have recently intergraded a phpBB forum to the site (clients request not my idea). I have managed to link the username / password tables to my exisiting coldfusion site, so when someone

Re: Coldfusion phpBB

2006-05-18 Thread Jim
The way I understand it, since cfhttp is run on the server, not on the client, then all you are doing is logging the server into phBB. I think you will probably have to use javascript or a meta refresh to send the login variables to the server from the client, that way the client will get

Re: CFDocument - Sporadic PDF issues, text being jarbled up

2006-05-18 Thread Casey Dougall
I'm thinking this is really more system specific but also due to how the PDF is generated by Coldfusion. The odd thing in all of this, a client reports a problem with their PDF. They attach the file and when I open it, of course it looks exactly as it should. I've also tested PDF's of the same

RE: Coldfusion phpBB

2006-05-18 Thread Katz, Dov B \(IT\)
Take a look at this... http://www.houseoffusion.com/cf_lists/messages.cfm/forumid:4/threadid:57 27 If you do this approach, you will need to CFCOOKIE (set cookies) to the user, based on the CFHTTP.ResponseHeader[Cookie] which phpbb comes back, since that's how phpbb maintains sessions... If you

Re: CFDocument - Sporadic PDF issues, text being jarbled up

2006-05-18 Thread Jim Wright
On 5/17/06, Casey Dougall [EMAIL PROTECTED] wrote: CFdocument creates PDF's that open fine on most computers, there are are times when it opens with garbled text. Not legitable at all. It's only certain people and the actual version of Acrobat doesn't seem to be the issue. Anyone lock down

Re: Frameworks

2006-05-18 Thread george . earl
So what happens when you adopt a framework and you build a bunch of stuff using this framework and the framework has one of its regularly scheduled updates to a new version? What are the implications for the existing applications written using the old version of the framework? I assume you

RE: OOD/Design Patterns and ColdFusion.

2006-05-18 Thread mark
Hey there, I'm am further behind than you are...but if I wanted to learn MVC and objects I would do the quick start guide in Model Glue and then build a few really small apps. My understanding is that model glue enforces MVC and OOP. I bet you would understand alot more after a few hours of

OT: Dreamweaver, WebDAV and PHP

2006-05-18 Thread Rick Root
I'm not sure where else to post this but maybe some of you folks out there might know the answer. My web server, running IIS 6, supports both Coldfusion and PHP. I've recently enabled WebDAV for two dreamweaver users who want to transfer files securely using the check-in/check-out/sync

Re: Frameworks

2006-05-18 Thread Michael Traher
depends on the framework and the update. most framework updates try and maintain backwards compatibility, although fusebox 3 to fusebox 4 was an exception to this. Your choices are always to stay put or upgrade with any associated effort involved, same as with any software. To stay put cuts you

Re: Coldfusion phpBB

2006-05-18 Thread Rick Root
Luke, Here's some code I wrote to use CF to log into phpBB and then send a private message.. you can probably get whaty ou need out of it. http://www.opensourcecf.com/1/2006/05/Using-coldfusion-to-log-into-a-phpBB-system.cfm http://tinyurl.com/evtcg Rick

Re: OT: Dreamweaver, WebDAV and PHP

2006-05-18 Thread Rick Root
Also... even though it says an HTTP error occurred, when I look at the IIS log files, the return code is 200. Rick Root wrote: I'm not sure where else to post this but maybe some of you folks out there might know the answer. My web server, running IIS 6, supports both Coldfusion and PHP.

Re: CFHTTP Charset Question

2006-05-18 Thread Claude Schneegans
There should be another argument called 'encoding'. That would end lots of confusion between the two. I think the confusion lies in the W3C standard first, with META tags like: META HTTP-EQUIV=Content-Type CONTENT=text/html; charset=UTF-8 Most charsets are both a charset and an encoding

Re: embed image in cfmail

2006-05-18 Thread kurt schroeder
that get's me to a general docs help page. is there a specific area that has the answer i'm looking for? thanks kes check out http://livedocs.macromedia. com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp. htm?context=ColdFusion_Documentationfile=part_cfm.htm DK On 5/17/06,

CF and Quickbooks

2006-05-18 Thread Richard Dillman
I have a client that wants to integrate her Cart with her Quickbooks. I dont currently have a cart set up yet so I'm looking for suggestions. I'd like easily to implament one with: --CFMX7 --Quickbooks 2005 --SQL Server 2005 --Windows 2003 Server I have total controll of the box. -- Richard

RE: embed image in cfmail

2006-05-18 Thread Burns, John D
Look at CFMAILPARAM, especially the CONTENTID attribute of it in CFMX 7. You give it a contentID and use that in your source for your html. Look at http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/comm on/html/wwhelp.htm?context=ColdFusion_Documentationfile=part_cfm.htm And

Re: embed image in cfmail

2006-05-18 Thread kurt schroeder
just saw that. and thanks!! Look at CFMAILPARAM, especially the CONTENTID attribute of it in CFMX 7. You give it a contentID and use that in your source for your html. Look at http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/comm

Re: embed image in cfmail

2006-05-18 Thread kurt schroeder
CFmail part will do it as follows: cfmail ** type=html cfmailparam file=http://0.0.0.0/images/thsimg1.gif; contentid=myimg1 disposition=inline img src=cid:myimg1 /cfmail Thanks KES that get's me to a general docs help page. is there a specific area that has the answer i'm looking for?

RE: JRun/CFusion System Properties

2006-05-18 Thread Steve Brownlee
You'd have to write some Java code then, because you're not in ColdFusion at that point. A quick search turned up some code... http://java.sun.com/docs/books/tutorial/essential/system/properties.html Steve The Boss Brownlee http://www.orbwave.com/cfjboss -Original Message- From:

CF Admin error

2006-05-18 Thread Adkins, Randy
I am now receiving an error when attempting to access the CFMX 7 administrative page. This is just trying to get to the login page for CFADMIN. - The system has attempted to use an undefined value, which usually

Re: Best way to redirect .htm pages to .cfm?

2006-05-18 Thread Crow T . Robot
I'm digging this old-ass post out of the archives because it seems like it was never answered, and I really, really need to get one. I need to do exactly what the original poster was asking. I have an old html site that is VERY well ranked, and we need to convert to a newer, easier to

RE: QofQ error on function-generated query

2006-05-18 Thread Ben Nadel
Shot in the dark, don't use double quotes: WHERE type = asset Should be WHERE type = 'asset' See if that makes a difference. ... Ben Nadel Web Developer Nylon Technology 350 7th Avenue Floor 10 New York, NY 10001 212.691.1134 212.691.3477 fax www.nylontechnology.com

Re: CF and Quickbooks

2006-05-18 Thread Mary Jo Sminkey
I have a client that wants to integrate her Cart with her Quickbooks. I dont currently have a cart set up yet so I'm looking for suggestions. There are a number of products out there that can do Quickbooks imports with just about any shopping cart. A number of my customers use the Shopping Cart

RE: QofQ error on function-generated query

2006-05-18 Thread Brad Wood
Might also try WHERE type IS NOT NULL AND lower(type) = asset Or, specify your data types when you build the query with queryNew(columnnames,datatypes). ~Brad -Original Message- From: Ken Dunnington [mailto:[EMAIL PROTECTED] Sent: Thursday, May 18, 2006 11:19 AM To: CF-Talk Subject:

CF/Flex 2 OO/MVC/RIA/RAD Wizard = Your First Flex 2 App

2006-05-18 Thread dcooper
http://www.dcooper.org for an intro and a screencast demo by the CF team. If you ever wanted to get into RIA's as a CF developer but didn't think it was for you, or thought the on-ramp was too steep, check this out. You are guaranteed to have your first CF-powered, OO, MVC, Asynchronous,

Re: CF and Quickbooks

2006-05-18 Thread Steve Kahn
If your CF cart can handle auth.net as the payment gateway, you can get QB integration. Rates are reasonable, I have an 800 number if you want to get more info, just contact me offlist. -- Original Message -- From: Mary Jo Sminkey [EMAIL PROTECTED]

Re: CF/Flex 2 OO/MVC/RIA/RAD Wizard = Your First Flex 2 App

2006-05-18 Thread dcooper
...so people don't overwrite each other's DB RECORDS... http://www.dcooper.org for an intro and a screencast demo by the CF team. If you ever wanted to get into RIA's as a CF developer but didn't think it was for you, or thought the on-ramp was too steep, check this out. You are

RE: Replacements/alternatives for CFFILE upload?

2006-05-18 Thread Dirk Sieber
Something is wrong. I'd look at the network. Maybe setting the latency a little lower or higher or whatever that is could fix something. Really, you shouldn't have a problem, I've used cffile over a 14.4 with MB files with no problems, other than slowness, as would be expected.

Re: QofQ error on function-generated query

2006-05-18 Thread Ken Dunnington
Thanks guys, I specified the data types, renamed date and time to ftpdate and ftptime (those were backticks around them, which is the mysql way) and finally performed date formatting on the value I was setting for ftpdate and finally got it working! On 5/18/06, Brad Wood [EMAIL PROTECTED] wrote:

Create Tabs using XML vs Flash...

2006-05-18 Thread Charles E. Heizer
Hello, I have been working on an internal site and I used the tabs provided with the cfform type flash. What I want to know is, is there any way to make the tabs work using xml? The flash stuff takes to long to load and my users are now complaining about the performance. Thanks, - Charles

Re: Create Tabs using XML vs Flash...

2006-05-18 Thread Massimo Foti
I have been working on an internal site and I used the tabs provided with the cfform type flash. What I want to know is, is there any way to make the tabs work using xml? The flash stuff takes to long to load and my users are now complaining about the performance. You could try this

Re: SOT: Secure FTP and Dreamweaver

2006-05-18 Thread Damien McKenna
On May 15, 2006, at 11:10 AM, Rick Root wrote: Of the two recommendations I got (Gene6 and coreftp), only coreftp actually supports FTP over SSH. But coreftp is still in beta. I've used CoreFTP Server in production a little bit and am (hopefully today) going to be using it as our primary

Re: Create Tabs using XML vs Flash...

2006-05-18 Thread Charles E. Heizer
This is really cool, thanks! Do I have to import these tags using the CFMX admin web page? Thanks, - Charles On May 18, 2006, at 11:04 AM, Massimo Foti wrote: I have been working on an internal site and I used the tabs provided with the cfform type flash. What I want to know is, is there

Verity Search Powerpoints

2006-05-18 Thread Eric J. Hoffman
Quick feeler to see if anyone else has had such a requirement: Client needs verity to search within powerpoints, which I believe it can do. Trick is, once the keyword is found, he wants that particular slide to show up, rather than a link to the whole presentation. Has anyone dealt with such a

Re: SOT: Secure FTP and Dreamweaver

2006-05-18 Thread Rick Root
Damien McKenna wrote: So what needs do you have that you don't think it'd work for you? How many concurrent sessions do you foresee? Have you given it a test run yet? Well, I decided not to use it because it kept crashing when I installed it. Don't know why, cuz it didn't log

Re: Verity Search Powerpoints

2006-05-18 Thread Rob Wilkerson
I've never known that to be possible, but would love to know if someone's actually done it. As far as I know you can only link to a presentation, not to a slide within a presentation. It's not like you can link to presentationurl.ppt?slide=3...can you? For that matter, I'm not sure Verity can

Re: Reactor and transactions

2006-05-18 Thread Matt Williams
I just did a search on some reactor generated files and they do include cftransaction on Insert queries. ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240920 Archives:

Re: Create Tabs using XML vs Flash...

2006-05-18 Thread Massimo Foti
Do I have to import these tags using the CFMX admin web page? No. The doc and the samples use cfimport, but you can use cfmodule or cf_ as well. Download the zip and look at the source. Massimo Foti Tools for ColdFusion and Dreamweaver developers:

Re: Create Tabs using XML vs Flash...

2006-05-18 Thread Charles E. Heizer
Thanks! On May 18, 2006, at 11:55 AM, Massimo Foti wrote: Do I have to import these tags using the CFMX admin web page? No. The doc and the samples use cfimport, but you can use cfmodule or cf_ as well. Download the zip and look at the source. Massimo Foti

RE: Verity Search Powerpoints

2006-05-18 Thread Eric J. Hoffman
Yeah, its all very out there. First, I am searching with Microsoft on the bring up a slide thing; but I guess to your point it is fruitless if Verity doesn't index it in such a manner. Eric J. Hoffman Managing Partner 2081 Industrial

RE: Verity Search Powerpoints

2006-05-18 Thread Eric J. Hoffman
Supposedly you can do presentation.ppt#5 with the number being the slide. Its all rather murky reading the forums. Eric J. Hoffman Managing Partner 2081 Industrial Blvd StillwaterMN55082 mail: [EMAIL PROTECTED] www:

Re: CF and Quickbooks

2006-05-18 Thread Stan Winchester
My son Tim has developed a VB solution that works with CF. I'll send you his email off list. I have a client that wants to integrate her Cart with her Quickbooks. I dont currently have a cart set up yet so I'm looking for suggestions. I'd like easily to implament one with: --CFMX7

Re: Verity Search Powerpoints

2006-05-18 Thread Rob Wilkerson
That's actually good to know, but may not help you all that much if Verity makes no distinction about where the content is located within a document (and I'm not aware that it does). Be a nice feature, though. On 5/18/06, Eric J. Hoffman [EMAIL PROTECTED] wrote: Supposedly you can do

Here's a weird one

2006-05-18 Thread Scott Stewart
I'm installing ColdFusion MX 7.01 on a VMWare image. When I launch the installer it tells me to select a new folder to extract the files. I do this and nothing happens. It's acting like it can't see the drives in the image Any thoughts? Scott Stewart ColdFusion Developer/Administrator

Moving a div

2006-05-18 Thread Bruce, Rodney S C-E LCMC HQISEC/Signal Solutions
Sorry this might be OT. I have a header on a large table that scrolls down. The top of the header starts at about 106px. I want the header to move down, once the top of the window gets to it and then stay about 10px below the top of the window until the user scrolls back up, then for it to stop

Re: Reactor and transactions

2006-05-18 Thread Dante Orlando
I believe you have to handle transactions further up in the application stack (i.e. controller or service layer). You would wrap calls to reactor object with cftransaction. -dante ~| Message:

RE: Here's a weird one

2006-05-18 Thread Dave Watts
I'm installing ColdFusion MX 7.01 on a VMWare image. When I launch the installer it tells me to select a new folder to extract the files. I do this and nothing happens. It's acting like it can't see the drives in the image I've successfully installed it in VMs before. What OS are you

Re: Here's a weird one

2006-05-18 Thread Rob Wilkerson
I've done successful installs on Win2k, Win2k3 and several Linux distros. Are you using VMWare Workstation or Server (GSX, I think is the product designation, but I'm not certain)? On 5/18/06, Dave Watts [EMAIL PROTECTED] wrote: I'm installing ColdFusion MX 7.01 on a VMWare image. When I

Re: Reactor and transactions

2006-05-18 Thread Nathan Strutz
From what I remember reading on the Reactor list, there are a few places where transactions would be beneficial internally. By default those places include cftransactions, but when you have your own cftransaction tags, it has a boolean argument or property you can set to exclude the internal

Re: Reactor and transactions

2006-05-18 Thread Nathan Strutz
OK, here's the thread from just last month: http://www.mail-archive.com/reactor@doughughes.net/msg01241.html -nathan strutz http://www.dopefly.com/ On 5/18/06, Nathan Strutz [EMAIL PROTECTED] wrote: From what I remember reading on the Reactor list, there are a few places where transactions

RE: Here's a weird one

2006-05-18 Thread Dave Watts
I've done successful installs on Win2k, Win2k3 and several Linux distros. Are you using VMWare Workstation or Server (GSX, I think is the product designation, but I'm not certain)? It shouldn't matter which version you're using, as they're all identical internally (they even emulate the same

Re: CFHTTP Charset Question

2006-05-18 Thread Rob Wilkerson
Just to follow up, here's what I decided to do: 1. Execute a head request for the feed 2. If the head request returns a charset in the response header, store it in a variable. Otherwise, default to UTF-8 as the stored charset. 3. Execute the get request using the charset as identified in #2

RE: Here's a weird one

2006-05-18 Thread Scott Stewart
I installed CFMX 6.1 on another VM on the same box. I ran into something called DEP that was preventing the executable from firing. Once it (windows) allowed me to change the settings the installer fired. So far I haven't run into the same thing with the MX 7 installer Scott Stewart ColdFusion

RE: Here's a weird one

2006-05-18 Thread Dave Watts
I installed CFMX 6.1 on another VM on the same box. I ran into something called DEP that was preventing the executable from firing. Once it (windows) allowed me to change the settings the installer fired. So far I haven't run into the same thing with the MX 7 installer 7.0.1 is supposed

RE: Here's a weird one

2006-05-18 Thread Kev McCabe
Are you sure the install file for mx 7 is not corrupt I've seen it do the ask for extraction then? -Original Message- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: 18 May 2006 22:20 To: CF-Talk Subject: RE: Here's a weird one I installed CFMX 6.1 on another VM on the same box. I

RE: Here's a weird one

2006-05-18 Thread Dave Watts
Are you sure the install file for mx 7 is not corrupt I've seen it do the ask for extraction then? That's a great suggestion, actually. Use an md5sum program to find out - the checksums are posted on the download page. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf

complete 360 product photos

2006-05-18 Thread dave
I have a site now where we display the products in a 360 view (straight side to side), the client has asked me if when can do a global version this time, meaning not just side 2 side but completely around like it was hovering in space. I can't find anything like that out there and my

Re: complete 360 product photos

2006-05-18 Thread Jerry Johnson
Not sure what you are asking for. Display software Authoring software Graphic software 3d camera rigs What kind of objects are you displaying? How do you create the images? Also, what do you mean by in space? That you want 3 axis of control, rather than one? 2 axis of control? Do you want the

re: complete 360 product photos

2006-05-18 Thread dave
sorry wrong list ~Dave the disruptor~ From: dave [EMAIL PROTECTED] Sent: Thursday, May 18, 2006 6:38 PM To: CF-Talk cf-talk@houseoffusion.com Subject: complete 360 product photos I have a site now where we display the products in a 360 view (straight

Re: complete 360 product photos

2006-05-18 Thread dave
The items would be fly fishing reels and gear. User controlled (not movie) probably via flash or js. Best way to describe it would be if the product was in a see-thru globe hovering in the middle and you could turn it any-which way, does that make sense? Heres what it is now, go down and

Resetting a CF application.

2006-05-18 Thread Ian Skinner
How could one reset an application so that the onApplicationStart method of the application CFC can be re-run after new code has been added to it? Is there anything more elegant then restarting the entire CF Service? -- Ian Skinner Web Programmer BloodSource www.BloodSource.org

Re: Resetting a CF application.

2006-05-18 Thread Ryan Guill
Im not sure, but im pretty sure you could call the onApplicationStart() directly. Maybe add a flag to your onRequestStart(), if structKeyExists(url,reloadApplication) and url.reloadApplication EQ Truecfset onApplicationStart() //cfif On 5/18/06, Ian Skinner [EMAIL PROTECTED] wrote: How could

RE: Resetting a CF application.

2006-05-18 Thread Dave Watts
How could one reset an application so that the onApplicationStart method of the application CFC can be re-run after new code has been added to it? You can simply call onApplicationStart from within one of your other Application.cfc methods. This is actually covered in the Adobe Advanced

Re: complete 360 product photos

2006-05-18 Thread Jerry Johnson
I assume these are separate images you run through. There appear to be 40 for the full spin around (a 1 axis spin). First, you need to do the math. That will tell you alot. You could do a controlled 2 axis spin (spin left and right OR spin up and down). This would allow the user to move up and

Re: Resetting a CF application.

2006-05-18 Thread Alan Rother
I usually add a restart to the onRequest method like this cfif IsDefined(url.Init) cfset foo = onApplicationStart /cfif This is off the cuff and has not been tested or validity, so use a guideline only. -- Alan Rother Macromedia Certified Advanced ColdFusion MX 7 Developer

Re: ColdFusion and MapPoint

2006-05-18 Thread Ryan Guill
Sorry I dont have a response for you, but would be very interested if you came across a solution (for 6.1 or 7 either). On 5/15/06, James Hunt [EMAIL PROTECTED] wrote: Has anyone used MapPoint and ColdFusion MX 6.1 together? I'd like to use it to find driving distances from one address to

Re: Here's a weird one

2006-05-18 Thread Casey Dougall
If it's the DEP thing, you will see it in windows eventlog. But it does do that exact thing. Start to load then nothing... On 5/18/06, Dave Watts [EMAIL PROTECTED] wrote: Are you sure the install file for mx 7 is not corrupt I've seen it do the ask for extraction then? That's a great

Re: OT: Dreamweaver, WebDAV and PHP

2006-05-18 Thread Denny Valliant
Did the .cfm files come down alright? How about trying some .asp or .vb type files? Maybe it's a feature or something similar. Tried different webdav clients? That's all I got at the moment. :-/ ~| Message:

Re: CF Admin error

2006-05-18 Thread Denny Valliant
Not I. I didn't know there was an updater 2 though, gonna grab that. Have you checked the logs? That's where I'd start. Good Luck! ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240952 Archives:

Re: Best way to redirect .htm pages to .cfm?

2006-05-18 Thread Denny Valliant
On 5/18/06, Barney Boisvert [EMAIL PROTECTED] wrote: The best way is to use a rewriting engine like mod_rewrite (for Apache) or isapi_rewrite (for IIS). If your host refuses to give you that capability, perhaps a hosting change is in order? Another alternative is to build your CF site and

Re: Replacements/alternatives for CFFILE upload?

2006-05-18 Thread Denny Valliant
See above. :) I've just done some testing of my own - FTP transfers are fine - approx 100 KB/sec sustained transfer rates to the server. However, document uploads still time out. Hrm. Well, you could try doing some cfhttp gets of some MB+ files and see if it's just the http protocol. Maybe

Re: SOT: Secure FTP and Dreamweaver

2006-05-18 Thread Denny Valliant
Cygwin out of the question? ;-) On 5/18/06, Rick Root [EMAIL PROTECTED] wrote: Damien McKenna wrote: So what needs do you have that you don't think it'd work for you? How many concurrent sessions do you foresee? Have you given it a test run yet? Well, I decided not to use it because

Re: ColdFusion and MapPoint

2006-05-18 Thread Paul Hastings
Ryan Guill wrote: Sorry I dont have a response for you, but would be very interested if you came across a solution (for 6.1 or 7 either). the esri webservices work a treat w/cf last time i looked were way more reasonably priced than mappoint stuff. for instance:

Re: complete 360 product photos

2006-05-18 Thread Mike Kear
Dell do it. When you shop on their site for a notebook, you can see the notebook in a window, and turn it any way you like using the mouse.In all 3 dimensions. And you can zoom in and out on different features. http://dell.com But i dont know how it's done. .. Cheers Mike Kear Windsor,