Re: Q about CFEclipse

2006-03-10 Thread Mark Drew
There is an FTP function in CFEclipse under the File Explorer which allows you to edit things directly on a remote server. The way DW does the synching is also awesome (well as of version 8) and that is something I am thinking about putting in CFE but not sure how I shall implement it yet. MD

MySQL question

2006-03-10 Thread James Smith
One of my fields has had a collection of line breaks inserted in between first and second names. I think I have solved the problem but I now need to remove all of the line breaks that have been inserted so far. I could query the db then use CF to replace chr(13) chr(10) with , but is there a

Re: FCKeditor and the TMT validation javascript library.

2006-03-10 Thread Massimo Foti
input type=hidden id=teaser name=teaser value= style=display:none / input type=hidden id=teaser___Config value= style=display:none / iframe id=teaser___Frame src=admin/includes/fckeditor/editor/fckeditor.html?InstanceName=teaseramp; Toolbar=Basic width=100% height=100 frameborder=no

References for Beginners

2006-03-10 Thread Martin Thorpe
I have been asked to compile a list of references by my boss for a Webmaster type who is looking to move to Coldfusion, I have quite a list already just wondering if there are any that you feel should be added? Cheers Martin The list so far

Re: Q about CFEclipse

2006-03-10 Thread Douglas Knudsen
use ant perhaps? DK On 3/10/06, Mark Drew [EMAIL PROTECTED] wrote: There is an FTP function in CFEclipse under the File Explorer which allows you to edit things directly on a remote server. The way DW does the synching is also awesome (well as of version 8) and that is something I am

Re: Q about CFEclipse

2006-03-10 Thread Mark Drew
There is a Team extension point that if you use CVS you will know about, I think this is the way to do it in Eclipse. You would assign an FTP/RDS site to your project and sort out the paths etc then you can synch. You CAN do it with ant with the FTP ant extension so that you upload stuff in the

Re: Q about CFEclipse

2006-03-10 Thread Scott Stroz
The FTP functionality in Eclipse is not very good though. I use FIleZilla as my FTP server and when I try to connect with Eclipse, all the files always show as read only. I have accessd the server with other FTP clients, including DW, without issue. -- Scott Stroz Boyzoid.com

RE: Flash form popup window

2006-03-10 Thread Bobby Hartsfield
That wouldn’t be a popup. It'd be a normal window (without a target, it should probably not even be a NEW window) This is in the archives somewhere. You'll find more detail if you find the old posts but for the most part you want to do something like...

Re: Q about CFEclipse

2006-03-10 Thread Michael Traher
Despite being a great CFE fan, I have to agree that the ftp facilities within CFE file explorer are a weak point and I also use FileZilla. However. For anyone not used to Eclipse the thing is if you think of a feature that you need there is probably several plugins out there to do the job.

Re: SQL-generated primary keys

2006-03-10 Thread Chris Mueller
Thanks everyone for all your help! I am using SQL server, and have reworked my queries to use SCOPE_IDENTITY(). Chris If it is SQL Server, do this cfquery Insert into () Values (); SELECT SCOPE_IDENTITY() AS id /cfquery That will give you the correct identity id Sandra Clark

Re: References for Beginners

2006-03-10 Thread S . Isaac Dealey
Well if you're going to include fusebox.org you might also want to include some other frameworks for variety: http://www.mach-ii.com http://www.model-glue.com http://www.fusiontap.com Did I leave out any popular frameworks? I would also recommend stopping the livedocs url's above 6.1 ... have

Re: Q about CFEclipse

2006-03-10 Thread S . Isaac Dealey
Seems like it'd be weak integration... What I'm looking for has to integrate with ctrl+s while I'm editing a template, the file-save menu (or more appropriately any save operation regardless of the interface widget that triggers it), and a collection of file-browser context-menu entries. Does

RE: FCKeditor and the TMT validation javascript library.

2006-03-10 Thread Andy Matthews
Massimo... That's where I think it should go too. The problem is that the creation code for the FCK editor obfuscates me from direct contact with that hidden field. !//-- andy matthews web developer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//-

RE: References for Beginners

2006-03-10 Thread Andy Matthews
www.kodefusion.com !//-- andy matthews web developer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Martin Thorpe [mailto:[EMAIL PROTECTED] Sent: Friday, March 10, 2006 3:51 AM To: CF-Talk Subject: References for

RE: MySQL question

2006-03-10 Thread Horne, Jeff
...is there a better, faster was to do this in SQL directly, preferably replacing \s*\r\n\s* so that it replaces the line break and any leading or trailing whitespace replacing it with one single space character. I'm not sure if this will work with the spaces but it seems it might. Doing a mass

simple cfmail question...

2006-03-10 Thread Che Vilnonis
User = Tom Jones User Email = [EMAIL PROTECTED] Using the cfmail tag, how do I write the from= line so that when I get an email from Tom that the From line in my email client says Tom Jones and not [EMAIL PROTECTED] Am I making sense? Thanks, Che.

Re: Q about CFEclipse

2006-03-10 Thread Rick Root
Scott Stroz wrote: The FTP functionality in Eclipse is not very good though. Neither is Homesite's FTP functionality, but I still use it ;) rick ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:235000 Archives:

cfdocument header/footer

2006-03-10 Thread Patrick Whittingham
Hi All, I am having a problem which will display field descriptions in each of the header (ie., Employee, Address, City ...) on every page and the data (1000 rows). for pdf/flashpaper. Any help will be appreciated. ~|

Re: simple cfmail question...

2006-03-10 Thread Mingo Hagen
I think this is what you mean? cfmail from='Tom Jones [EMAIL PROTECTED]' Mingo. Che Vilnonis wrote: User = Tom Jones User Email = [EMAIL PROTECTED] Using the cfmail tag, how do I write the from= line so that when I get an email from Tom that the From line in my email client says Tom Jones

Re: Strip Email function

2006-03-10 Thread Rick Root
S. Isaac Dealey wrote: Why would you strip those characters out rather than just use an isEmail() function and refuse to accept invalid input? How about: isVALID(email,#form.email#) Damn it, looks like I need to read the CFMX7 function and tag list again! I didn't know about this one. What a

RE: simple cfmail question...

2006-03-10 Thread Robert Redpath
from=Tom Jones [EMAIL PROTECTED] From: Che Vilnonis [mailto:[EMAIL PROTECTED] Sent: Fri 3/10/2006 9:22 AM To: CF-Talk Subject: simple cfmail question... User = Tom Jones User Email = [EMAIL PROTECTED] Using the cfmail tag, how do I write the from= line so

Re: simple cfmail question...

2006-03-10 Thread Mingo Hagen
what he said Robert Redpath wrote: from=Tom Jones [EMAIL PROTECTED] From: Che Vilnonis [mailto:[EMAIL PROTECTED] Sent: Fri 3/10/2006 9:22 AM To: CF-Talk Subject: simple cfmail question... User = Tom Jones User Email = [EMAIL PROTECTED] Using the cfmail tag,

Re: cfquery and insert help needed

2006-03-10 Thread Rick Root
James Holmes wrote: Use cfqueryparm as should be done in every query. QFT. Get in the habit now before it's too late =) Rick ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:235006 Archives:

Re: OT: Styling form inputs

2006-03-10 Thread Rick Root
Les Mizzell wrote: dave wrote: input:focus,textarea:focus { background-color: #CCFF99; border: 1px dashed #E92D68; } Ooo - that's nice. I've never thought abour trying that one. I've been working on a bunch of government sites lately, so accessibility is important. Looks like a cool

RE: simple cfmail question...

2006-03-10 Thread Che Vilnonis
thanks. wasn't sure if it were that simple or not. -Original Message- From: Mingo Hagen [mailto:[EMAIL PROTECTED] Sent: Friday, March 10, 2006 9:35 AM To: CF-Talk Subject: Re: simple cfmail question... what he said Robert Redpath wrote: from=Tom Jones [EMAIL PROTECTED]

Re: simple cfmail question...

2006-03-10 Thread Charlie Hanlon
This is usually how I code it cfmail to= from=[EMAIL PROTECTED] subject= cfmailparam name=from value=Tom Jones [EMAIL PROTECTED] /cfmail hth charlie hanlon - Original Message - From: Mingo Hagen [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent:

RE: cfquery and insert help needed

2006-03-10 Thread Andy Matthews
QFT? !//-- andy matthews web developer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Friday, March 10, 2006 8:38 AM To: CF-Talk Subject: Re: cfquery and insert help needed

Using CF to redirect incoming email blast clicks.

2006-03-10 Thread Andy Matthews
I'm trying to code a quick and dirty way to track email blasts for a client. In the email is a link which looks like this: http://www.theDomainName.com/email.cfm?track=WTHG5link=index.html Each email blast has a different code, in this case it's WTHG5. The link key is the page to which the user

IsUserInRole - question

2006-03-10 Thread Edward Chanter
I can't seem to get the IsUserInRole function to accept dynamic data, eg. cfset dynData = '15' cfif IsUserInRole(#dynData#) User is in this role /cfif Am I being dumb here or am I missing something or is this deliberate? best wishes, -= Ed

RE: OT: Styling form inputs

2006-03-10 Thread Andy Matthews
No... Attribute selectors only work in IE7 and FF (maybe Safari too). !//-- andy matthews web developer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Friday, March 10,

Re: simple cfmail question...

2006-03-10 Thread Mingo Hagen
Charlie Hanlon wrote: This is usually how I code it cfmail to= from=[EMAIL PROTECTED] subject= cfmailparam name=from value=Tom Jones [EMAIL PROTECTED] /cfmail wow, and why? ~| Message:

RE: Determine Visitors OS

2006-03-10 Thread Munson, Jacob
You could use BrowserHawk if you don't mind paying for this. It will tell you what OS, along with TONS of other stuff about every client that hits your site. -Original Message- From: jonese [mailto:[EMAIL PROTECTED] Sent: Thursday, March 09, 2006 5:31 PM To: CF-Talk Subject: Re:

RE: Flash form popup window

2006-03-10 Thread Kevin Aebig
FYI PopUp Manager Class is for *Flash* based popup windows, not HTML ones. Cheers, !k -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: March 10, 2006 7:45 AM To: CF-Talk Subject: RE: Flash form popup window That wouldn't be a popup. It'd be a normal window

Re: Using CF to redirect incoming email blast clicks.

2006-03-10 Thread Ken Ferguson
well, you could set up your log analyzer to parse the logs with respect to the track parameter... As for using CF, just test for the existence of the track url variable. If it exists, insert a record to a table in your db all of the pertinent information. You could store the website, tracking

Re: simple cfmail question...

2006-03-10 Thread Charlie Hanlon
That's how I learned. I'll assume that you're implying that the cfmailparam is unneccessary. Is this so? thanks, charlie hanlon - Original Message - From: Mingo Hagen [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Friday, March 10, 2006 9:53 AM Subject: Re: simple

Re: Determine Visitors OS

2006-03-10 Thread Ken Ferguson
Well, if you just need someone to write it for you... cfset usersOS = CGI.HTTP_USER_AGENT jonese wrote: Yea i was just hoping to avoid writing the code myself if someone else has already done it. jonese On 3/9/06, Dave Watts [EMAIL PROTECTED] wrote: Anyone have a function which will

Re: overflow attack return-to-libc when starting CFMX 7

2006-03-10 Thread Chris Norloff
Just to followup (and for the archives). This was fully an Entercept issue - in one of the reports it said it throws this error when starting virtual machines (kinda like a JVM, maybe!). thanks for the responses, Chris Norloff -- Original Message --

RE: References for Beginners

2006-03-10 Thread Munson, Jacob
shameless plug http://techfeed.net/cfQuickDocs/ /shameless plug -Original Message- From: Martin Thorpe Sent: Friday, March 10, 2006 2:51 AM I have been asked to compile a list of references by my boss for a Webmaster type who is looking to move to Coldfusion, I have quite a

Re: Flash form popup window

2006-03-10 Thread Steve Milburn
I guess I'm being stupid here, but I cant see how the getURL function provides what I am looking for. I've tried using it, with various options, but cannot emulate what I am seeing on other flash forms. It is a new browser window, that I can move anywhere on my screen. The flash form on Ben's

Re: simple cfmail question...

2006-03-10 Thread Mingo Hagen
Well, 'unneccessary' I don't know, I just don't see a reason why it should be there. But If you have a good one, please do share! m. Charlie Hanlon wrote: That's how I learned. I'll assume that you're implying that the cfmailparam is unneccessary. Is this so? thanks, charlie hanlon

Re: Determine Visitors OS

2006-03-10 Thread Mingo Hagen
Ken Ferguson wrote: Well, if you just need someone to write it for you... cfset usersOS = CGI.HTTP_USER_AGENT What sort of license is that under? can we use that? do we need to pay you? how much? all these questions. M.

Re: simple cfmail question...

2006-03-10 Thread Jochem van Dieten
Charlie Hanlon said: That's how I learned. I'll assume that you're implying that the cfmailparam is unneccessary. Is this so? Just put it in the From. If the friendly name you want the user to see has any characters other then alfanumeric and spaces, enclose the friendly name in double

Re: cfquery and insert help needed

2006-03-10 Thread Rick Root
Andy Matthews wrote: QFT? Quoted For Truth ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:235026 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription:

Re: simple cfmail question...

2006-03-10 Thread Charlie Hanlon
Thanks Jochem. - Original Message - From: Jochem van Dieten [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Friday, March 10, 2006 10:06 AM Subject: Re: simple cfmail question... Charlie Hanlon said: That's how I learned. I'll assume that you're implying that the

You know...

2006-03-10 Thread Damien McKenna
You know its bad when you're sick for a week and you finally look at your CF-Talk mailbox to discover 2400 messages. Urk. Back to your previously scheduled entertainment... -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Company - http://www.thelimucompany.com/ - 407-804-1014

RE: You know...

2006-03-10 Thread Munson, Jacob
lol In those cases, I hate to say it, but this is what I usually do: ctrl+a delete -Original Message- From: Damien McKenna Sent: Friday, March 10, 2006 8:14 AM You know its bad when you're sick for a week and you finally look at your CF-Talk mailbox to discover 2400 messages.

Re: cfdocument header/footer

2006-03-10 Thread Rick Root
Patrick Whittingham wrote: I am having a problem which will display field descriptions in each of the header (ie., Employee, Address, City ...) on every page and the data (1000 rows). for pdf/flashpaper. Any help will be appreciated. What exactly is the problem? If I had to guess, I'd

Re: You know...

2006-03-10 Thread Rick Root
Damien McKenna wrote: You know its bad when you're sick for a week and you finally look at your CF-Talk mailbox to discover 2400 messages. Urk. Back to your previously scheduled entertainment... That's what I love about cf-talk! Rick

Re: Determine Visitors OS

2006-03-10 Thread Ken Ferguson
LOL, yeah, I will be accepting royalties off of that code. I mean, I think I'm owed by everyone who uses that bit of genius and infinitely complex code for their own benefit. Would you expect me to just GIVE the code away for free??? And if you'd like even better code worth even higher

Re: IsUserInRole - question

2006-03-10 Thread Raymond Camden
No, your code is right, although I'd write it like so: cfif isUserInRole(dynData) You want to double check to see what you are setting your roles too. Unfortunately, the CFLOGIN system does not provide a getRoles() function. You will need to just add some debug output to where you set the roles.

Re: References for Beginners

2006-03-10 Thread Martin Thorpe
Thanks for the links but concerning the CF 7 we are stuck to cfmx 6.1 the hosting is dictated by the client and it does not look like we are going to move to 7 for a looong time. I had a problem recently with a developer who wrote a project in CFMX 7, using lots of cfform stuff such as

RE: Using CF to redirect incoming email blast clicks.

2006-03-10 Thread Andy Matthews
I see... At this point I'm relying on our stats engine to track those unique URLs. What you're saying is that it would be better to store that hit in the database? !//-- andy matthews web developer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//-

RE: Determine Visitors OS

2006-03-10 Thread Munson, Jacob
cfif cgi.http_user_agent neq cfset usersOS = CGI.HTTP_USER_AGENT cfelse cfset usersOS = unknown /cfif Now, if you're not sufficiently advanced in CF development, I'd suggest asking for help with this one! Seriously Jonese, I'm sorry to be having fun with this at your

Re: Flash form popup window

2006-03-10 Thread Steve Milburn
Hi Kevin Thats what I'm looking for. I am displaying a flash form. When a button is clicked, I want to display another flash form (contained in another cfm template) as a popup. I am using the popup manager class, and get a popup window. However, I cant get it to display my other form. I

Re: Q about CFEclipse

2006-03-10 Thread Scott Stroz
Its kind of hard to edit files when Eclipse keeps telling you they are 'Read Only' ;-) On 3/10/06, Rick Root [EMAIL PROTECTED] wrote: Scott Stroz wrote: The FTP functionality in Eclipse is not very good though. Neither is Homesite's FTP functionality, but I still use it ;) rick

Re: Determine Visitors OS

2006-03-10 Thread Mingo Hagen
Okay, I personally usualy use some combinations of cgi.user_agent, which do count on the cgi.user_agent string being correct, and not faked, like u can do in most browsers either through a plugin or nativly. So for instanct cfif cgi.user_agent contains 'mac' and not cgi.user_agent contains

Re: You know...

2006-03-10 Thread Casey Dougall
I joined CF Talk because I'm attempting to fill my gmail account. 17,184 inbox messages and growing!!! ;-) On 3/10/06, Rick Root [EMAIL PROTECTED] wrote: Damien McKenna wrote: You know its bad when you're sick for a week and you finally look at your CF-Talk mailbox to discover 2400

RE: You know...

2006-03-10 Thread Andy Matthews
:) I've got 18445. You are currently using 277 MB (10%) of your 2702 MB. !//-- andy matthews web developer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Casey Dougall [mailto:[EMAIL PROTECTED] Sent: Friday, March

SOT: Return Confirm

2006-03-10 Thread Orlini, Robert
I would like to include two onclick in the Input type below one is: input type=checkbox onclick=if ( this.checked ){copyData()}else{document.forms[0].reset();} name=Spare value=Yes Can I add: onSubmit=return confirm('Are you sure?'); to the top Input type? Do I put between them? Thanks.

RE: Flash form popup window

2006-03-10 Thread Kevin Aebig
Do you have the URL for the example? I can probably tell you how to do it if I see what's going on... !k -Original Message- From: Steve Milburn [mailto:[EMAIL PROTECTED] Sent: March 10, 2006 9:57 AM To: CF-Talk Subject: Re: Flash form popup window Hi Kevin Thats what I'm looking for.

Re: SOT: Return Confirm

2006-03-10 Thread Charlie Griefer
onsubmit would go in your form tag. form onsubmit=return confirm('Are You Sure?'); On 3/10/06, Orlini, Robert [EMAIL PROTECTED] wrote: I would like to include two onclick in the Input type below one is: input type=checkbox onclick=if ( this.checked

RE: SOT: Return Confirm

2006-03-10 Thread Orlini, Robert
Thanks, however, this is not a form submit. When a user clicks the checkbox, then I would like a Are you sure confirm box to appear not when they already submit. -Original Message- From: Charlie Griefer [mailto:[EMAIL PROTECTED] Sent: Friday, March 10, 2006 11:55 AM To: CF-Talk Subject:

Re: Q about CFEclipse

2006-03-10 Thread Spike
Have you tried webDrive? http://www.webdrive.com/products/webdrive/index.html Haven't used it, but in principle it ought to work with CFEclipse. Spike On 3/10/06, Scott Stroz [EMAIL PROTECTED] wrote: Its kind of hard to edit files when Eclipse keeps telling you they are 'Read Only' ;-) On

RE: Flash form popup window

2006-03-10 Thread Bobby Hartsfield
You're not being stupid... just unclear ;-) Most people see the owrd popup and assume the equivalent of a javascript popup BROWSER window. I've seen what you are talking about before though. Kevin can probably put you on the right track with it. ..:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield

Re: SOT: Return Confirm

2006-03-10 Thread Charlie Griefer
you've lost me :) if you want to include multiple items in an event, simply separate them with semi-colons: input type=checkbox onclick=doThis(); doThat(); doTheOtherThing(); / are you saying that you want it to do the confirm() on submit if the checkbox is checked? On 3/10/06, Orlini, Robert

Re: SOT: Return Confirm

2006-03-10 Thread Bryan Stevenson
onClick=if (confirm('Confirm delete of hail record #FORM.act_id#?')) window.location='hailindet.cfm?act_id=#FORM.act_id#trip_id=#FORM.trip_id#delHail=1'; The above asks Confirm delete of hail record 5? If they click OK then the window.location firesif they hit cancel nothing happens and

RE: Return Confirm

2006-03-10 Thread Bobby Hartsfield
You put the onsubmit on the form tag, and leave the input as is (although id break it out into a function but that’s just me) ..:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Orlini, Robert [mailto:[EMAIL PROTECTED] Sent: Friday, March

Re: Return Confirm

2006-03-10 Thread Charlie Griefer
it's not just you. i'd break it out into a function also :) On 3/10/06, Bobby Hartsfield [EMAIL PROTECTED] wrote: You put the onsubmit on the form tag, and leave the input as is (although id break it out into a function but that's just me) ..:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield

Re: Flex 2 and Ben Forta

2006-03-10 Thread Mark Drew
Rick, That is not the plan for CFEclipse, it wont (as far as I am concerned) do any WYSIWYG functions in the near future but there will be a lot of improvements and functions going in over the next few months. Its simply not our focus, since we dont particularly want to compete with DW

Re: Determine Visitors OS

2006-03-10 Thread Ken Ferguson
You're absolutely right; I was kidding. It is Friday after all and I think most people are at their silliest near lunchtime on Friday. I, of course, meant no offense to jonese and with all of this, I'm sure jonese will have no trouble whipping up some script to parse the browser, OS, version

Re: Determine Visitors OS

2006-03-10 Thread jonese
Ok even after ken's misguided poking (funny stuff really). i coded up my own OS function based off an older PHP one i used to use. I can only test it on Win XP, Win 2k, Win 2k3 and an ancient Mac. If you can test on other OS's I'd really appreciate it. just email me here or off list and I'll

Re: Dynamic form creation

2006-03-10 Thread Matt Robertson
I did something rather similar to what Casey did in my CMPro CMS. User is presented with an interface and can build their form using it instead of coding. Main table holds form description data (form type, page form is tied to, whether form is secure, pass/fail values if its a test-type form)

Re: MySQL question

2006-03-10 Thread John Paul Ashenfelter
You want to look at the REGEXP operator built into MySQL. You should be able to do what you wish. http://dev.mysql.com/doc/refman/5.0/en/regexp.html On 3/10/06, James Smith [EMAIL PROTECTED] wrote: One of my fields has had a collection of line breaks inserted in between first and second names.

OT: Why can't web browsers view JPG's with exif data?

2006-03-10 Thread Jon Block
In one of the web systems I operate, we just imported a bunch of JPG's. The JPG's are viewable with programs like windows picture viewer, but when embeded in a web page, they appear as broken graphics. What's the best way for me to make these JPG's work when used in web pages? Thank you, Jon

Re: OT: Why can't web browsers view JPG's with exif data?

2006-03-10 Thread Robert Everland III
The one thing that comes to mind is that the jpg are CMYK and that's why they are coming up as broken graphics. Check to see what type they are, RGB is what will enable the graphics to display in the browser. Browsers don't have a problem displaying EXIF data. Bob

RE: Why can't web browsers view JPG's with exif data?

2006-03-10 Thread Paul
I know if the jpg is CMYK this happens; maybe it's not to do with exif? -Original Message- From: Jon Block [mailto:[EMAIL PROTECTED] Sent: Friday, March 10, 2006 10:50 AM To: CF-Talk Subject: OT: Why can't web browsers view JPG's with exif data? In one of the web systems I operate, we

Re: Site-wide error trapping

2006-03-10 Thread Matt Robertson
I wrote up how to do one here: http://mysecretbase.com/Building_A_ColdFusion_Error_Handler.cfm HtH, -- mattRobertson Janitor, MSB Web Systems http://mysecretbase.com ~| Message:

Re: Site-wide redirect?

2006-03-10 Thread Matt Robertson
That tutorial I linked you to in the other thread also has a quickee 2-line 404 handler: |*cfset variables.GoPage=http://; CGI.SERVER_NAME CFLOCATION URL=#variables.GoPage# ADDTOKEN=No if the page doesn't exist, the visitor is redirected to the web site's home. Simple. You can get more

Re: OT: Styling form inputs

2006-03-10 Thread dave
Works on my ie6 but what I didnt think about is that site has the ie7 hack on it. ~Dave the disruptor~ From: Rick Root [EMAIL PROTECTED] Sent: Friday, March 10, 2006 9:41 AM To: CF-Talk cf-talk@houseoffusion.com Subject: Re: OT: Styling form inputs

Re: MySQL question

2006-03-10 Thread Barney Boisvert
REGEXP is a regular expression-compaible LIKE (also known a RLIKE). That is, it's for matching strings, not for modifying them. I don't believe there is any way to do a regular expression replace with MySQL, but I haven't gone looking in a while. cheers, barneyb On 3/10/06, John Paul

Re: Determine Visitors OS

2006-03-10 Thread Ken Ferguson
The REAL ? here is, how much do I owe you for that nugget!!! LOL, Happy Friday everyone. I'm headed out to the Big XII tourney in just a few to drink beer and watch some hoops. --Ferg jonese wrote: Ok even after ken's misguided poking (funny stuff really). i coded up my own OS function based

RE: Query Problem - sorting

2006-03-10 Thread Dennis Powers
Mike, Thank you. I always forget about the case statement. Best Regards, Dennis Powers UXB Internet- A Website Design and Hosting Company 690 Wolcott Road - P.O. Box 6028 Wolcott, CT 06716 Tel: 203-879-2844 http://www.uxbinternet.com http://dennis.uxb.net -Original Message- From:

RE: SOT: Return Confirm

2006-03-10 Thread Orlini, Robert
Works great...thanks Rick and suggestions and ideas from others as well! -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Friday, March 10, 2006 1:21 PM To: CF-Talk Subject: Re: SOT: Return Confirm Orlini, Robert wrote: I would like to include two onclick in the Input

RE: Page visit counter

2006-03-10 Thread Larry Juncker
Why not log their IP number in the database and check it for return visits? -Original Message- From: Ken [mailto:[EMAIL PROTECTED] Sent: Friday, March 10, 2006 12:40 PM To: CF-Talk Subject: Page visit counter Hi. I have pages that get called from a db with pageid=xx and I need to keep

Re: Page visit counter

2006-03-10 Thread Charlie Griefer
IP address could change. How about a cookie? On 3/10/06, Larry Juncker [EMAIL PROTECTED] wrote: Why not log their IP number in the database and check it for return visits? -Original Message- From: Ken [mailto:[EMAIL PROTECTED] Sent: Friday, March 10, 2006 12:40 PM To: CF-Talk

Re: OT: Styling form inputs

2006-03-10 Thread Les Mizzell
Browse here: http://www.it.dev.duke.edu/temp/inputcss.cfm 1. Your browser: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.8.0.1) Gecko/20060111 Firefox/1.5.0.1 The text box works. The text area doesn't (Firefox) 2. Your browser: Mozilla/4.0 (compatible; MSIE 6.0; Windows

Re: Page visit counter

2006-03-10 Thread Ken
guys. actually want the visit unique per page per visitor. If the same visitor comes the next day, i don't mind if he gets counted again. Unique per page/per visitor for that day/session. On 3/10/06, Charlie Griefer [EMAIL PROTECTED] wrote: IP address could change. How about a cookie? On

Re: SOT: Return Confirm

2006-03-10 Thread Rick Root
Orlini, Robert wrote: I would like to include two onclick in the Input type below one is: input type=checkbox onclick=if ( this.checked ){copyData()}else{document.forms[0].reset();} name=Spare value=Yes This is what you're looking for: !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01

Createquery and numbers that are strings

2006-03-10 Thread Robert Everland III
I am creating a huge structure so that I can get data from many different tables that I can't join (don't ask long story). The key of my structure is a SSN, now I need to order the records to be in alphabetical on the name, i can't use the name as the key since some people could potentially

RE: Page visit counter

2006-03-10 Thread Munson, Jacob
Yeah, a cookie that exires at end of session should do the trick. You could create a unique cookie for each page, which should give you the granularity you want. -Original Message- From: Ken [mailto:[EMAIL PROTECTED] Sent: Friday, March 10, 2006 11:54 AM To: CF-Talk Subject: Re:

Re: OT: Styling form inputs

2006-03-10 Thread Rick Root
dave wrote: Works on my ie6 but what I didnt think about is that site has the ie7 hack on it. Browse here: http://www.it.dev.duke.edu/temp/inputcss.cfm It doesn't work for me.. here's my user agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1)

RE: Createquery and numbers that are strings

2006-03-10 Thread PINE Phyo Z
May be I am over-simplifying your problem but adding empty string () might solve?? Just curious what data type is SSN being returned from the query (number ,integer , string)? Pine -Original Message- From: Robert Everland III [mailto:[EMAIL PROTECTED] Sent: Friday, March 10, 2006 10:01

RE: Site-wide error trapping

2006-03-10 Thread Andy Matthews
Thanks. I'll take a look at it. This might be just what I need to learn it myself. !//-- andy matthews web developer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Matt Robertson [mailto:[EMAIL PROTECTED] Sent:

Re: Createquery and numbers that are strings

2006-03-10 Thread Robert Everland III
I could try putting an empty string in front, but even if that works I would still have to take out the empty space later because I still need the ssn for the primary key of the structure. The SSN is returned as a string. Bob

Re: OT: Styling form inputs

2006-03-10 Thread Rick Root
I wonder why mine doesn't work right (the textarea didn't work because I had a typo in the textarea css declaration) Rick Les Mizzell wrote: Browse here: http://www.it.dev.duke.edu/temp/inputcss.cfm 1. Your browser: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.8.0.1)

Page visit counter

2006-03-10 Thread Ken
Hi. I have pages that get called from a db with pageid=xx and I need to keep a visit counter for each page. But again, it should not be incremented if the same visitor from that session revisits that page. I am thinking of setting a session variable, but that means, I'll need a unique session

Forums - Galleon Enhanced

2006-03-10 Thread Rick Root
So, I've been making enhancements to Ray's Galleon Forums to suit my most important wants and desires... Here are some things that I've done to this version of Galleon: - BBML/BBCode Support similar to phpBB (configurable option) - Make Sticky option on topic entry - phpBB Style Message

Re: Forums - Galleon Enhanced

2006-03-10 Thread Rick Root
Rick Root wrote: So, I've been making enhancements to Ray's Galleon Forums to suit my most important wants and desires... BTW this is NOT going to be RabidGalleon ;) I'll be offering all my enhancements back to the community. Rick

Re: Page visit counter

2006-03-10 Thread Claude Schneegans
I am thinking of setting a session variable, but that means, I'll need a unique session variable for each page visited. How about keeping a list of all visited pages in the session variable? -- ___ REUSE CODE! Use custom tags; See

Re: Page visit counter

2006-03-10 Thread Claude Schneegans
You could create a unique cookie for each page, I can't tell by heart how many, but there is a limit on the number of cookies per domain. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam

  1   2   >