Re: mac cfm ?

2005-06-22 Thread dave
remember what happened last time I installed cfm on my mac? haha was trying to not put you thru that again! which I owe u some tunes still for! but you know I got the one mac and just bout another and I want to use the new one and give old one to one of the kids and was just thinking just in ca

Re: mac cfm ?

2005-06-22 Thread Sean Corfield
On 6/22/05, dave <[EMAIL PROTECTED]> wrote: > I got new mac and was wonderin if you can transfer the cfmx7 server istall > from one to another? Not sure what you're asking here Dave. As Simeon says, the only install on a Mac is the J2EE version. I have Enterprise on my PowerBook G4. Several Enter

mutiple selection in flash form

2005-06-22 Thread Ida Chen
I am working on a flash form that displays query results. Is there any way to multi-select the records so that when I submit the form, selected records will be passed into another query? I have tried to use cfselect and enabled multiple selection, but it is not a good option from user perspecti

Re: getDate()

2005-06-22 Thread Simeon Bateman
Its benificial for code portablitly, but on the other side of things, mysql doesnt have anything built in to do the default date in your field. So if mysql is a target platform its the only path :) simeon On 6/22/05, Parker, Kevin <[EMAIL PROTECTED]> wrote: > Thanks Eric - I can see how that app

Re: mac cfm ?

2005-06-22 Thread Simeon Bateman
What did you deploy on before? if its a j2ee install you may be able to copy the server instance and move it to the mac. But on the mac the j2ee install is the only install available so if you are running the win/lin standalone server you chances for a smooth conversion are slim. However you can

Re: OT: Registrar that does DNS management?

2005-06-22 Thread Stephen Lapointe
I like BulkRegister. They do charge an annual fee ($50 for first year, $100 annually thereafter), but if you have enough domains it's still a good deal because the annual domain fees are so low ($7-$12) and because they offer a range of quality business-focused services that would be more expens

mac cfm ?

2005-06-22 Thread dave
I got new mac and was wonderin if you can transfer the cfmx7 server istall from one to another? I doubt it but ya never know tia ~Dave the disruptor~ "A criminal is a person with predatory instincts who has not sufficient capital to form a corporation." ~~~

RE: Blackberry calendar integration

2005-06-22 Thread Robert Munn
iCalendar format: http://www.prism.gatech.edu/~gte267v/iCalendarFormat.html There are some issues with .ics formatted attachments and Exchange. See a sample thread about it on the Evolution forums: http://galactus.ximian.com/pipermail/evolution-hackers/2005-March/005196.html I believe the prop

RE: getDate()

2005-06-22 Thread Parker, Kevin
Thanks Eric - I can see how that approach would be beneficial. Thanks for the tip. ++ Kevin Parker Web Services Consultant WorkCover Corporation p: 08 8233 2548 m: 0418 806 166 e: [EMAIL PROTECTED] w: www.workcover.com ++ -Original Message- From: eric.creese [mailto:[E

Re: CF + FCKeditor

2005-06-22 Thread Stephen Lapointe
I've seen this problem when there there is no Application.cfm in the FCK install path to enable application variables -- which the image/file browser needs. Seems to me that is the most common cause of the XML Request Error you may see when you attempt to use the FCK file/image browser, in parti

Re: getDate()

2005-06-22 Thread eric.creese
I believe it is Now() Actually waht I do for all my CF apps is set a var to Now() and insert that instead of being dependent on the database default that way my code is portable across other RDBMS Oracle = sysdate Access = now() mysql= now() sql = getdate() - Original Message - From: "Pa

getDate()

2005-06-22 Thread Parker, Kevin
I usually use SQL Server to do stuff and as a matter of practice I create a DateTimeStamp field in each table and give it a default of getDate() so that each row added to each table records the date and time it was added. I have to do a little thing with mySQL but for the life of me can not find

RE: Filemaker Pro and Cold Fusion

2005-06-22 Thread Vince Bonfanti
Your best bet is a product called Lasso: http://www.omnipilot.com/ Vince Bonfanti http://blog.newatlanta.com New Atlanta Communications, LLC http://www.newatlanta.com > -Original Message- > From: Les Mizzell [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 22, 2005 8:01 PM

RE: J2EE Session Sharing without Cluster? <-- more frustration

2005-06-22 Thread Dave Watts
> * No CFCs in session scope (Has this changed in CFMX7? Guess > I can look it up.) I'm pretty sure that hasn't changed. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in Washingto

RE: group by date, missing something - SOLVED, thx

2005-06-22 Thread mayo
Thx barneyb for the hint: The solution is: SELECT MONTH(saleDate) AS theMonth, YEAR(saleDate) AS theYear, sum(total) as dailyTotal FROM sale GROUP by MONTH(saleDate), YEAR (saleDate) ORDER BY YEAR(saleDate), MONTH(saleDate) -- thx, gil -Original Message-

RE: group by date, missing something

2005-06-22 Thread mayo
Thanks eric, but that gives a total for every day. June 21 10,000 June 20 9,555 June 19 11,200 That's useful but I'm trying to get the total sales for each month and need to do a group by for the month June ... 250,000 May ... 430,000 Apr ... 380,000 It should be so

Re: cfform_flash in shared hosting environment && cfform_flash: invalid xhtml

2005-06-22 Thread Will Tomlinson
On the xhtml compatibility, use the id attribute instead of name in the cfform. That should fix that part. Will ~| Find out how CFTicket can increase your company's customer support efficiency by 100% http://www.houseoffusion.

RE: group by date, missing something

2005-06-22 Thread Dawson, Michael
This will work, but it will group by dates down to the second. So that means the query won't return any grouped records unless they actually occurred on the exact same second. You need to use DATEPART() or a similar function, to group by the Year and the Month such as MM. That is the onl

Filemaker Pro and Cold Fusion

2005-06-22 Thread Les Mizzell
I've got a potential client that has a huge honking Filemaker Pro database that they wish to have a web application built on top of. I've not yet been able to look at the underlying structure yet, so I don't have all the details. They basically want a rather complicated search interface. I kno

Re: group by date, missing something

2005-06-22 Thread eric.creese
SELECT sum(saleTotal), saledate FROM sales GROUP BY saledate - Original Message - From: "mayo" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Wednesday, June 22, 2005 6:29 PM Subject: group by date, missing something > I'm trying to do a group by date on an access db. > > I have a list of sal

Re: group by date, missing something

2005-06-22 Thread Barney Boisvert
Did you try putting MONTH(saleDate) directly in the GROUP BY clause? cheers, barneyb On 6/22/05, mayo <[EMAIL PROTECTED]> wrote: > I'm trying to do a group by date on an access db. > > I have a list of sales and want to group by month and year. I can't get > even a test run to work > > SQL belo

group by date, missing something

2005-06-22 Thread mayo
I'm trying to do a group by date on an access db. I have a list of sales and want to group by month and year. I can't get even a test run to work SQL below: SELECT MONTH(saleDate) AS theMonth, sum(saleTotal) as dailyTotal FROM sales GROUP by theMonth Thx

RE: Blackberry calendar integration

2005-06-22 Thread Russ
How do you push calendar events into exchange? Is it possible to do this through ColdFusion? -Original Message- From: Robert Munn [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 22, 2005 4:32 PM To: CF-Talk Subject: Blackberry calendar integration My company has a Blackberry Server in

Re: cfform_flash in shared hosting environment && cfform_flash: invalid xhtml

2005-06-22 Thread Simeon Bateman
The person having problems on the link you refer to suggests the batch install because they have many sites on the server and dont want to have the scripts files copied to each of them. If you only have one site then this should not be a problem for you. Even if you have more its only a problem i

Re: SQL

2005-06-22 Thread Eddie
On 6/22/05, Elena Aminova <[EMAIL PROTECTED]> wrote: > I have 2 integer columns, each has 3 digit numbers from 111 to 555. > I need to compare the 2 columns and in a third column display some kind of an > indication whether the second column number is higher or lower then the first > column numbe

RE: SQL

2005-06-22 Thread Mark A Kruger
You can use case / when to do this... depending on your db platform. select col1, col2, newcoltoAdd = CASE WHEN col1 < col2 THEN 'higher' WHEN col1 = col2 THEN 'Equal' WHEN col1 > col2 THEN 'lower END FROM myTable. --- S

RE: Query of Queries error

2005-06-22 Thread Mark A Kruger
ok... in your "querySetCell( )" call try doing something "stringlike". For example, try Javacast('string',myVar) - or try trim or something like myVar & '' - anything to make the script aware of the type so it doesn't have to guess. -Mark -Original Message- From: Jeff Langevin [mailto:[E

SQL

2005-06-22 Thread Elena Aminova
I have 2 integer columns, each has 3 digit numbers from 111 to 555. I need to compare the 2 columns and in a third column display some kind of an indication whether the second column number is higher or lower then the first column number, saying higher, lower or equal. For example: column1 c

Re: cfform_flash in shared hosting environment && cfform_flash: invalid xhtml

2005-06-22 Thread Sebastian Mork
Hi, I'd no luck this evening. but I read an interesting thread in the mm-forums : Can't use CFFORM's Flash type on a shared hosting server http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=143&threadid=978084&highlight_key=y&keyword1=scriptSrc something about reainstalling i

Re: cfform_flash in shared hosting environment && cfform_flash: invalid xhtml

2005-06-22 Thread Simeon Bateman
I think you might be going further than this than you need to. I literally created a "scripts" folder at the root of my site. Uploaded the files from /CFIDE/administrator/scripts/ into it. Then on my cfform i set scriptsrc="scripts/". Thats all it took for me to get it working. Now granted I a

OT: Huge Macromedia Book Discount

2005-06-22 Thread Dave Carabetta
Sorry for the off-topic... Just thought I'd pass along some info from bookpool.com where all Macromedia Press books are currently 45% off (along with some other publishers). Some titles of interest are Ben's CF 7 WACK (usually $55 USD, now $29.95 USD) and the CF 7 Advanced WACK (same) along with t

Re: cfform_flash in shared hosting environment && cfform_flash: invalid xhtml

2005-06-22 Thread Sebastian Mork
Its me once again.. May the error that flash-forms are not generated, but xml-forms are.. occur because I get an error when trying to access cfform.swc?? http://friendcom.de/cfidescripts/cfform.swc I've created a virtual directory /cfidescripts that points to /cfide/scripts/ There directory-brows

Re: CF linux questions

2005-06-22 Thread Steven Erat
On 6/22/05, Scott Mulholland <[EMAIL PROTECTED]> wrote: > I was involved in a discussion earlier today about the feasibility of > building a control panel like solution to allow for users to maintain items > like domains, emails, etc. (think cpanel) on the linux platform. Not being > a linux perso

RE: CF linux questions

2005-06-22 Thread Scott Mulholland
Thanks for the info Jordan. I checked out the web manager but what they are looking to do is more of a hosting control panel (add/edit domains, mail accts, etc.) I was just looking to do some fact finding. My first thought was possibly recommending using something like PERL to do the system func

Blackberry calendar integration

2005-06-22 Thread Robert Munn
My company has a Blackberry Server integrated with Exchange. All we do is push calendar events into Exchange and they copy over. From what I have read, the only way to achieve calendar integration is through the Enterprise Server. http://www.blackberryforums.com/showthread.php?t=9678&highlight=

Re: J2EE Session Sharing without Cluster? <-- more frustration

2005-06-22 Thread jacksonj
>I actually have session sharing off now, using sticky sessions. Yeah, it was >pretty kewl when I had it enabled. The issue we had was with the charting >engine and we had one app where the developer stored CFCs in the session >scope. The charting engine will not work with session sharing on and

Re: cfform_flash in shared hosting environment && cfform_flash: invalid xhtml

2005-06-22 Thread Sebastian Mork
Hi, thanks, now I read more about that attribute scriptSrc. Didn't know about it first, then I was glad it exists, but .. I don't get it working with flash-forms. xml(+skin) works. flash not. strange.. (http://www.friendcom.de/test.cfm) Anybody has an idea, or may there be a problem with the serv

Blackberry calendar integration

2005-06-22 Thread Russ
We have a fairly simple calendar/events module in our cf application, and management wants to see if it could be integrated with Blackberry calendar. Does anyone have any experience doing something like this? I'm assuming we'll need something like Blackberry Enterprise Server for the blackberry sy

Re: Getting CFMX7 code sample access

2005-06-22 Thread Rey Bango
That did it bud. Don't know why I didn't bother to look. I just assumed they were encrypted. duh! Rey,,, Dawson, Michael wrote: > Did you try removing the conditional logic in the application.cfm/cfc > file? In earlier versions, that is where this was controlled. I > haven't tried it with CF7

Re: Query of Queries error

2005-06-22 Thread Jeff Langevin
The problem is that the offending data is in the csv file which is being turned into a query result using QuerySetCell(). That doesn't support setting a type. If I do the cast in the other query, QoQ throws an error saying that the comparison of the two different data types is not supported...

Re: CF linux questions

2005-06-22 Thread Jordan Michaels
Scott Mulholland wrote: >I was involved in a discussion earlier today about the feasibility of >building a control panel like solution to allow for users to maintain items >like domains, emails, etc. (think cpanel) on the linux platform. Not being >a linux person myself I was trying to find resou

RE: Getting CFMX7 code sample access

2005-06-22 Thread Dawson, Michael
Did you try removing the conditional logic in the application.cfm/cfc file? In earlier versions, that is where this was controlled. I haven't tried it with CF7 yet, however. M!ke -Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 22, 2005 2:44 PM

RE: ColdFusion Error Messages

2005-06-22 Thread Damien McKenna
> Personally I don't find printing them very useful. Me either, but most people feel they have to print something or forward you an entire email (the original of which you already received) to say "I agree" or "make it so". -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Company -

Re: JRUNSVC + coldfusion 6.1 Mx + mysql 4.0.24 CPU 100%

2005-06-22 Thread Nathan Strutz
That brings up a good point, Doug. The best way to troubleshoot a stalled CF server is to take a thread dump/stack trace. You do this by starting CF from command line, something like this on windows: c:/> cfusionmx\bin\cfstart.bat > c:\cf_output_log.txt Take a normal dump (ctrl+break) when the

Re: search broken on house of fusion?

2005-06-22 Thread Michael Dinowitz
Can you send me an exact example of what your searching for? The search is based on Google and it might be that the code going to Google is broken. Thanks > Anyone else notice that the search on this site doesnt seem to work > anymore? > > Search for previous posts that you've been tracking or

Re: ColdFusion Error Messages

2005-06-22 Thread Ray Champagne
I don't either, but back in the day (..cringe..) before I knew better, before learning about error handling, my clients would print and fax the error to me when they came across one. It was a nightmare to decipher what was going on. And, since I sucked, there were a lot of faxes coming in. N

CF linux questions

2005-06-22 Thread Scott Mulholland
I was involved in a discussion earlier today about the feasibility of building a control panel like solution to allow for users to maintain items like domains, emails, etc. (think cpanel) on the linux platform. Not being a linux person myself I was trying to find resources speaking to the followin

search broken on house of fusion?

2005-06-22 Thread dan martin
Anyone else notice that the search on this site doesnt seem to work anymore? Search for previous posts that you've been tracking or posting to doesnt work even with quotes. ~| Discover CFTicket - The leading ColdFusion Help Des

Re: cfform_flash in shared hosting environment && cfform_flash: invalid xhtml

2005-06-22 Thread Simeon Bateman
The quick and dirty solution for you in this case is to upload the scripts directory from your cf admin. Then use the scriptsrc attribute on your cfform to point it at it locally. Then you dont have to worry about the admin and what they will map. I use this on my servers and it works great. Go

Re: Getting CFMX7 code sample access

2005-06-22 Thread S . Isaac Dealey
> Hi Issac. This is a fully licensed server and not a > developer edition. > Would you happen to know if in the full version there's a > way to get > around this limitation? It was implemented in CF 5.0 to > prevent access > to sample code after a big security issue cropped up. Oh okay... I hadn't

Re: ColdFusion Error Messages

2005-06-22 Thread S . Isaac Dealey
> I have had the same problem - with several versions of CF > - CF4.5, > CF5.0, CF6.1, they all do it. I thought it was some kind > of > functionality thing that I didn't understand the point of, > but was > necessary for some reason or another. > I would think that if it were a bug, then it woul

cfform_flash in shared hosting environment && cfform_flash: invalid xhtml

2005-06-22 Thread Sebastian Mork
Hi, I just started releasing my application, got some problems that I didn't expect (like dsnUser,dsnPass..), mostly because it's running in a shared hosting-environment.. Well, I googled about some things, but I've still two questions, maybe someone knows.. My flashForms are not generated, I th

Re: JRUNSVC + coldfusion 6.1 Mx + mysql 4.0.24 CPU 100%

2005-06-22 Thread Steven Erat
The hourly nature of the high CPU sounds like client variable purging. You could try turning off client variable purge for a few hours to see if that changes the behavior. If it does, then that means that your client variable entries in the datebase (or registry, ugh) might be extremely high, s

Re: ColdFusion Error Messages

2005-06-22 Thread Ray Champagne
I have had the same problem - with several versions of CF - CF4.5, CF5.0, CF6.1, they all do it. I thought it was some kind of functionality thing that I didn't understand the point of, but was necessary for some reason or another. I would think that if it were a bug, then it would have been f

RE: ColdFusion Error Messages

2005-06-22 Thread Bob Clingan
Figures- just tried to report it as such and the email bounced back- their bug reporting form points to a invalid email address. >Sounds like a bug then. ~| Find out how CFTicket can increase your company's customer support eff

Re: Getting CFMX7 code sample access

2005-06-22 Thread Rey Bango
Hi Issac. This is a fully licensed server and not a developer edition. Would you happen to know if in the full version there's a way to get around this limitation? It was implemented in CF 5.0 to prevent access to sample code after a big security issue cropped up. Rey... S. Isaac Dealey wrote:

Re: Getting CFMX7 code sample access

2005-06-22 Thread S . Isaac Dealey
> I have CFMX 7 sitting on a development server and I > purposely installed > the samples and docs so I could have internal access to > them. This is > not a production server, solely for development. > When I try to hit the url for the "Getting Started > Experience", it halts > saying that I'm tr

RE: Getting CFMX7 code sample access

2005-06-22 Thread Dawson, Michael
I think this is controlled in the application.cfm/cfc file. M!ke -Original Message- From: Rey Bango [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 22, 2005 2:10 PM To: CF-Talk Subject: Getting CFMX7 code sample access I have CFMX 7 sitting on a development server and I purposely insta

ColdFusion server crashes every few days

2005-06-22 Thread Kwang Suh
Try this out: http://www.robisen.com/index.cfm?mode=entry&entry=FD4BE2FC-55DC-F2B1-FED0717CC1C7E0AF ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spen

Getting CFMX7 code sample access

2005-06-22 Thread Rey Bango
I have CFMX 7 sitting on a development server and I purposely installed the samples and docs so I could have internal access to them. This is not a production server, solely for development. When I try to hit the url for the "Getting Started Experience", it halts saying that I'm trying to acces

Re: J2EE Session Sharing without Cluster? <-- more frustration

2005-06-22 Thread Douglas Knudsen
I actually have session sharing off now, using sticky sessions. Yeah, it was pretty kewl when I had it enabled. The issue we had was with the charting engine and we had one app where the developer stored CFCs in the session scope. The charting engine will not work with session sharing on and sti

RE: ColdFusion Error Messages

2005-06-22 Thread Bob Clingan
Sounds like a bug then. >> If a user gets an error message, they usually either take a >> screenshot or print it out- but printing it out yields some >> ugly results. > >I have the same problem here - but only with IE. > >-- >Damien McKenna - Web Developer - [EMAIL PROTECTED] >The Limu Company

Re: J2EE Session Sharing without Cluster? <-- more frustration

2005-06-22 Thread jacksonj
>by CFMX cluster you are speaking of SOFTWARE based clustering in JRun, not a >load balancer correct? Try this code below, it will tell you what instance >you are on. I use this. Its a real PITA though to make sure you are on >instance foo or goo. > > > > >JRun Server Name: #servername#Now, ano

RE: Query of Queries error

2005-06-22 Thread Mark A Kruger
Jeff, One of your original queries (that pull from the DB) sees the join column as a numeric type. re-cast it as a string type in the original query. Here's an MS SQL example. cast(realPartNumber AS varchar(12)) AS realPartnumber What DB are you using? This "should" cause the recordset object t

RE: Query of Queries error

2005-06-22 Thread Ian Skinner
Upgrade to CFMX 7? I know, that is not really an answer, but this is one of the many improvements in MX 7, the ability to type QofQ columns which did not exist in previous versions. Assuming this is not an option, you are going to have to do something to force the issue, can you possible sor

Re: J2EE Session Sharing without Cluster? <-- more frustration

2005-06-22 Thread Douglas Knudsen
by CFMX cluster you are speaking of SOFTWARE based clustering in JRun, not a load balancer correct? Try this code below, it will tell you what instance you are on. I use this. Its a real PITA though to make sure you are on instance foo or goo. Untitled JRun Server Name: #servername#

Query of Queries error

2005-06-22 Thread Jeff Langevin
I am trying to join two sets of data using query of queries. I've read the livedocs and search the HoF archives and haven't been able to figure out a way to handle this. My problem is that I run the query at the end of this massage and get the following error: Query Of Queries runtime error.

Re: JRUNSVC + coldfusion 6.1 Mx + mysql 4.0.24 CPU 100%

2005-06-22 Thread Douglas Knudsen
does it spike before requests come in? Or after? Is it spiking under heavy load or light load? Have you turned on 'log slow pages taking x seconds"?? Turn this on and set to say 10 to 20 seconds and see what pages are hogging up CF. DK On 6/22/05, Jean-Michel DE FILIPPI <[EMAIL PROTECTED]> w

RE: ColdFusion Error Messages

2005-06-22 Thread Damien McKenna
> If a user gets an error message, they usually either take a > screenshot or print it out- but printing it out yields some > ugly results. I have the same problem here - but only with IE. -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Company - http://www.thelimucompany.com/ -

ColdFusion Error Messages

2005-06-22 Thread bob
Maybe its just my printer, but when I try and print out a page with a ColdFusion generated error on it, I get the HTML not the message... has anyone else noticed this? If a user gets an error message, they usually either take a screenshot or print it out- but printing it out yields some ugly

ColdFusion server crashes every few days

2005-06-22 Thread Michael Dinowitz
Are you caching any information or the webservice connection? > Can someone tell me what would make a coldfusion server to crash every > few days or so. It seems the CF server memory utilization on the > server keeps increasing and we need to restart the coldFusion server > before anything woul

ColdFusion server crashes every few days

2005-06-22 Thread amy chiu
Can someone tell me what would make a coldfusion server to crash every few days or so. It seems the CF server memory utilization on the server keeps increasing and we need to restart the coldFusion server before anything would work. I do have a coldFusion scheduled job that runs every 5 minutes

JRUNSVC + coldfusion 6.1 Mx + mysql 4.0.24 CPU 100%

2005-06-22 Thread Jean-Michel DE FILIPPI
Hello every body, I need help, I've a big problem under my configuration about jrunsvc (jrun service). Every 1 hour since 15 minutes the jrunsvc takes 100% cpu time. I've try lot of things to fix like update (updater 5 from macromedia, j2se 1.4.2, etc .) but the problem persiste. An other thi

RE: testing for undefined

2005-06-22 Thread Jim Davis
> -Original Message- > From: daniel kessler [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 22, 2005 12:48 PM > To: CF-Talk > Subject: RE: testing for undefined > > >You can display everything as you want using just the query - why waste > the > >time to convert the query to something el

Re: application.cfm includes

2005-06-22 Thread Barney Boisvert
Do it the other way. In your subdirectory have this: and then in your root have this: Sorry, I was't very clear with whether I was talking about 'sessionTimeout' the variable, or 'sessionTimeout' the CFAPPLICATION attribute. That make more sense now? I believe the multiple CFAPPLICATION

RE: set headers in CFHTTP?

2005-06-22 Thread Dave Watts
> Yeah, I was too quick to reply. I saw "headers" in the > message and thought method="HEAD". Sorry about that. No need to apologize, we all make mistakes. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at

Re: set headers in CFHTTP?

2005-06-22 Thread Dave Carabetta
On 6/22/05, Dave Watts <[EMAIL PROTECTED]> wrote: > > Does method="HEAD" get you where you need to be? > > I don't see how that would help - that won't automatically add HTTP request > headers, it'll simply ask for information about the page instead of asking > for the page itself. > Yeah, I was

RE: OT: comments on HostNexus? DAMIEN

2005-06-22 Thread Damien McKenna
> fyi~ you can get imap at hms Thanks, Dave. Yes, I worked out a deal with them for IMAP mail itself (which they normally charge $10/mo for), but they don't provide a version of PHP with IMAP support compiled in without paying $50/mo for a VPS. So far I'm very happy with HostNexus. -- Damien

RE: testing for undefined

2005-06-22 Thread daniel kessler
>You can display everything as you want using just the query - why waste the >time to convert the query to something else to do this? I'm trying to make it reusable so that I can include it wherever I need it. If I use the same name everywhere, db_info and then use that in all my queries, then

Re: query help

2005-06-22 Thread S . Isaac Dealey
> It's the first time in some years though that I'm not > the one responsible for making the guidelines and I'm > finding it's a welcome relief. I'm sure It'll get old > at some point, but for now it's much less stressful > to be the worker bee instead of the manager and main > dev lead. I'm tryin

RE: set headers in CFHTTP?

2005-06-22 Thread Dave Watts
> Does method="HEAD" get you where you need to be? I don't see how that would help - that won't automatically add HTTP request headers, it'll simply ask for information about the page instead of asking for the page itself. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Softw

Re: set headers in CFHTTP?

2005-06-22 Thread Dave Carabetta
On 22 Jun 2005 11:51:01 -0400, Chase Seibert <[EMAIL PROTECTED]> wrote: > Sorry for the double-post. I meant to start a new thread. > > > Is there any way to set a header item in an outgoing CFHTTP request? I'm > working with an API that needs a custom header item inserted in a GET > request. I

RE: set headers in CFHTTP?

2005-06-22 Thread Dave Watts
> Is there any way to set a header item in an outgoing CFHTTP > request? I'm working with an API that needs a custom header > item inserted in a GET request. I'm thinking something like: > > http://server1/xmlnotify.asp"; method="GET"> > HTTP_AUTHORIZATION: Digest userName="cseibert" > nonce="

Re: query help

2005-06-22 Thread Aaron Rouse
That is an interesting requirement although when I look back I think almost every system I ever worked with had a column named ID in each table. Here at work the inhouse framework they make use us, pretty much requires the PK of a table be just ID and numeric. There are ways around it but they a

set headers in CFHTTP?

2005-06-22 Thread Chase Seibert
Sorry for the double-post. I meant to start a new thread. Is there any way to set a header item in an outgoing CFHTTP request? I'm working with an API that needs a custom header item inserted in a GET request. I'm thinking something like: http://server1/xmlnotify.asp"; method="GET"> HTTP_AUT

RE: testing for undefined

2005-06-22 Thread Chase Seibert
Is there any way to set a header item in an outgoing CFHTTP request? I'm working with an API that needs a custom header item inserted in a GET request. I'm thinking something like: http://server1/xmlnotify.asp"; method="GET"> HTTP_AUTHORIZATION: Digest userName="cseibert" nonce="a1faa6e2b8a217

Re: query help

2005-06-22 Thread Ken Ferguson
Yeah, I'm working with a guy who has, as part of his coding guidelines, the requirement that every table in the database have a column named ID that is set as an auto-increment. That's only one of the many fun little guidelines to which we're strictly adhering. As a developer used to working al

RE: testing for undefined

2005-06-22 Thread Jim Davis
> -Original Message- > From: daniel kessler [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 22, 2005 11:24 AM > To: CF-Talk > Subject: RE: testing for undefined > > That's ok. This is just going to loop through the recordset and display > the data so I use the same struct for each recor

Re: Should we support Access?

2005-06-22 Thread Wei Dai
>The original gig was rewriting a couple of templates for them every >week or so. I pointed out the issues with Access and made some >recommendations and now this is going to be a major part of what is >very likely going to be -- slowly but surely -- a rewrite of their >entire system. Maybe HXTT A

Paradox Database

2005-06-22 Thread Wei Dai
> So I believe what I need is a paradox JDBC driver for coldfusion to > communicate with the client's database (right?). Does anyone know > where I might be able to find one? HXTT Paradox, a type 4 JDBC driver, is at www.hxtt.net . ~~~

Re: How do you tell ColdFusion to execute .html files?

2005-06-22 Thread S . Isaac Dealey
> I knew I was right about that. Here are the links you'll > need to get it > working in either pre or post MX CF installations. > Pre-mx: > http://www.macromedia.com/cfusion/knowledgebase/index.cfm? > id=tn_18214 > Post-mx > http://www.macromedia.com/cfusion/knowledgebase/index.cfm? > id=tn_182

RE: testing for undefined

2005-06-22 Thread daniel kessler
>Well - first off you don't need the evaluates in there - you can use normal >notation. I'll try that, thanks. I try to not use it when I can('t). >Something like this. > this should've been: for it's use below. > > > > > > >Once that's set I'm confused... you're looping over a

Re: query help

2005-06-22 Thread S . Isaac Dealey
> Isaac, thanks man, that works too and looks better than my > case statements. Shame on you for thinking I'd even have > Access installed on my machine though! It's MySQL. lol... Well it was a random guess based on the use of now() and "ID" as a column name because that's real common with Access

Re: Can CFMX 6.1 and CFMX 7 co-exist?

2005-06-22 Thread S . Isaac Dealey
Even without J2EE... I use the standalone versions at home, connect them both to IIS with no problems... I had some issues getting the webserver connector to work with 6/6.1 when it came out... I discovered later they were due to my firewall ([EMAIL PROTECTED]) -- the damn thing was "turned off" w

J2EE Session Sharing without Cluster? <-- more frustration

2005-06-22 Thread jacksonj
> Is it possible to share sessions without clustering? > > (I'd like to be able to know that when I'm hitting Server A, that the > application I'm seeing is coming from Server A. This is for hardware > load-balancing and fail-over reasons.) Here's a real world example: Sometimes, I need to "rel

RE: OT: Developers little helper

2005-06-22 Thread Steve Brownlee
Ah then I'm not the only lazy developer around :) > -Original Message- > From: Qasim Rasheed [mailto:[EMAIL PROTECTED] > Sent: Tuesday, June 21, 2005 11:11 PM > To: CF-Talk > Subject: Re: OT: Developers little helper > > Here is a similar tool. Pretty handy and useful > > http://www.s

Syncing Data between Websites

2005-06-22 Thread Graham Pearson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I am creating an application which will have 2 separate websites with one being a Live Server with MySQL and the other one being a Tablet PC with CF and Access. The Idea at present time is if the Tablet had a connection to the Internet via Wireless wh

Re: How do you tell ColdFusion to execute .html files?

2005-06-22 Thread Ken Ferguson
I knew I was right about that. Here are the links you'll need to get it working in either pre or post MX CF installations. Pre-mx: http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_18214 Post-mx http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_18289 --Ferg Ken F

Re: How do you tell ColdFusion to execute .html files?

2005-06-22 Thread Ken Ferguson
This was true prior to MX, but I think I remember some changes needing to be made in one of CF's xml config files to get it to work. I'm fairly certain that only making the webserver change will not work. When GWPC upgraded from CF5 to 6.1, I had to make some changes for this. I'll try to dive

Re: How do you tell ColdFusion to execute .html files?

2005-06-22 Thread S . Isaac Dealey
> People used to eat that stuff up and thought it was > the coolest thing in the world that I could name all > of their files something they liked and something > they came up with. It may be a very sill and simple > thing, but so is sending your customers a birthday > card or something like that.

  1   2   >