RE: (ot) Transact-SQL Help

2009-09-10 Thread brad
Original Message Subject: (ot) Transact-SQL Help From: Rick Root rick.r...@webworksllc.com Date: Thu, September 10, 2009 12:25 pm To: cf-talk cf-talk@houseoffusion.com I'm hoping someone here can point me in the right direction. I'm doing something in CF that I

RE: (ot) Transact-SQL Help

2009-09-10 Thread Leigh
As long as you are only dealing with a dozen or so records from the database it should perform fine and and I think it will be a heck of a lot simpler than trying to make your SQL server take a row-based list of  people and pivot them out into columns.  Assuming the example is actually

(ot) SVN Question

2009-09-09 Thread Phillip Vector
Just a quick question. I know this isn't a SVN list, but perhaps one of you knows the answer. I have an SVN server. I'd like to set it up so that when I check in files and commit them to the repository, the files on the production server get updated as well without me having to FTP them over in

Re: (ot) SVN Question

2009-09-09 Thread Cameron Childress
What you are looking for is called a post-comit hook: http://svnbook.red-bean.com/nightly/en/svn-book.html#svn.reposadmin.create.hooks However, I would use caution when updating a *production* server automatically on checkin. If you check anything in that's wrong you're going to see the

Re: (ot) SVN Question

2009-09-09 Thread Phillip Vector
Thank you. and so noted on caution when updating the production server. It's already tested on the development server and when we update to the production server, it's always followed by an update to the SVN. Also, I read that having SVN on an outward facing server may not be the smartest thing

Re: (ot) SVN Question

2009-09-09 Thread Jason Fisher
Totally agree with Cameron on this. One of the great benefits of version control is that you can continue to monitor development changes while still only pushing updates to production when the whole set of changes is ready to go. I may have a set of changes that takes several days to code,

Re: (ot) SVN Question

2009-09-09 Thread Cameron Childress
On Wed, Sep 9, 2009 at 1:28 PM, Phillip Vector vec...@mostdeadlygame.com wrote: Also, I read that having SVN on an outward facing server may not be the smartest thing to do. :) So we will have to consider if it's worth the extra effort to do so. :) As far as an outward facing server goes, if

Re: (ot) SVN Question

2009-09-09 Thread Dominic Watson
I also agree with Jason and Cameron and I would think more than twice about this. Having your production code automatically in sync with the head revision of your repository negates the major benefits of version control. The code that is being tested against should be committed into the

Re: (ot) SVN Question

2009-09-09 Thread Jason Fisher
+1 for Visual SVN Server. Took our network admin about 10 minutes to install it, and the updates have been just as painless. ~| Want to reach the ColdFusion community with something they want? Let them know on the House of

Re: (ot) SVN Question

2009-09-09 Thread Dan Skaggs
Definitely look into creating a tag and deploying to your production server from that tag rather than the head revision of your repo. If something breaks with the deploy, you can very easily re-deploy the tag immediately prior to your new one and be right back where you started in just a few

RE: (ot) SVN Question

2009-09-09 Thread brad
http://www.codersrevolution.com/index.cfm/2008/9/15/Creating-a-postcommit-hook-for-Subversion Original Message Subject: (ot) SVN Question From: Phillip Vector vec...@mostdeadlygame.com Date: Wed, September 09, 2009 12:10 pm To: cf-talk cf-talk@houseoffusion.com

(ot) International countries and states/provinces/administrative div. database

2009-09-09 Thread Jake Pilgrim
For the life of me I cannot find a complete international Countries/States database... The best I have found is the GeoDataSource World Cities database, but I'm having a hard time feeling comfortable with assuming a SELECT DISTINCT state,country would return a match for EVERY state,country in

Re: (ot) International countries and states/provinces/administrative div. database

2009-09-09 Thread Roger Austin
Jake Pilgrim jpilg...@snapfitness.com wrote: For the life of me I cannot find a complete international Countries/States database... The best I have found is the GeoDataSource World Cities database, but I'm having a hard time feeling comfortable with assuming a SELECT DISTINCT

Re: (ot) International countries and states/provinces/administrative div. database

2009-09-09 Thread Jake Pilgrim
What about the UN list? http://unstats.un. org/unsd/methods/m49/m49alpha.htm Thanks for the reply Roger. This does help with the country side of the data, do you know of a list like this for the states within a country (with abbreviations)?

Re: (ot) International countries and states/provinces/administrative div. database

2009-09-09 Thread Roger Austin
Jake Pilgrim jpilg...@snapfitness.com wrote: What about the UN list? http://unstats.un. org/unsd/methods/m49/m49alpha.htm Thanks for the reply Roger. This does help with the country side of the data, do you know of a list like this for the states within a country (with

Re: (ot) International countries and states/provinces/administrative div. database

2009-09-09 Thread Mike Kear
There would be a maintenance issue on such a database too, since there are so many changes all the time. You'd want to either be prepared to keep updating it yourself, or look for some kind of subscription service. And dont forget to provide for countries that have no

Kinda OT: Anybody else having any HostMySite issues right now?

2009-09-06 Thread Les Mizzell
I had a number of sites that suddenly stop sending email from forms around 9:00am Friday morning. Looking at the databases for this site, over 200 emails worth of insurance purchase confirmations, class registrations, and other stuff. After emailing about the problem, and calling on the

Re: OT Simple URL Rewrite

2009-09-05 Thread Matthew Allen
Or indeed: ^/test/www/(\d+)$ /test/www/index.cfm?id=$1 They way we are using *ionic* ISAPI rewrite means that it will always start from the root of the domain. Perhaps lookup editing your hosts file so that you can have like: By the way I'm using ISAPI rewrite 3.0...in all it seems my initial

Re: OT Simple URL Rewrite

2009-09-05 Thread Dominic Watson
The syntax looks fine to me, I have not used ISAPI rewrite 3.0 fully though - just MOD rewrite and Ionic's ISAPI rewrite (excellent and free). I do now recall though that you can put your rewrite file anywhere with ISAPI rewrite - so my bad on that one; I assume your rewrite rules sit in

Re: OT Simple URL Rewrite

2009-09-05 Thread Matthew Allen
The syntax looks fine to me, I have not used ISAPI rewrite 3.0 fully though - just MOD rewrite and Ionic's ISAPI rewrite (excellent and free). I do now recall though that you can put your rewrite file anywhere with ISAPI rewrite - so my bad on that one; I assume your rewrite rules sit in

OT Simple URL Rewrite

2009-09-04 Thread Matthew Allen
I've just been dabbling in URL rewriter using ISAPI rewrite version 3, I'm not really sure what I'm doing wrong. All I'm trying to do is rewrite http://127.0.0.1/test/www/index.cfm?id=450 to http://127.0.0.1/test/www/450, so getting rid of index.cfm, ? and id Looking from past experience I

Re: OT Simple URL Rewrite

2009-09-04 Thread Dominic Watson
Seems to me that you want: ^/(\d+)$ index.cfm?id=$1 [NC,L] No? Dominic 2009/9/4 Matthew Allen a.matthe...@yahoo.com I've just been dabbling in URL rewriter using ISAPI rewrite version 3, I'm not really sure what I'm doing wrong. All I'm trying to do is rewrite

Re: OT Simple URL Rewrite

2009-09-04 Thread Matthew Allen
Seems to me that you want: ^/(\d+)$ index.cfm?id=$1 [NC,L] No? Dominic 2009/9/4 Matthew Allen a.matthe...@yahoo.com Will try posting again... Just tried your example but didn't work... RewriteBase / RewriteRule ^/(\d+)$ index.cfm?id=$1 [NC,L]

Re: OT Simple URL Rewrite

2009-09-04 Thread Dominic Watson
Or indeed: ^/test/www/(\d+)$ /test/www/index.cfm?id=$1 They way we are using *ionic* ISAPI rewrite means that it will always start from the root of the domain. Perhaps lookup editing your hosts file so that you can have like: http://localhost.mysite1/ http://localhost.mysite2/ etc. Then an

Re: (ot) automatical re-diretion from youtube

2009-09-02 Thread Dave l
.. including me... oops.. now no code for for the PITA. However, I did give the code to someone and told them that if they felt you should have it then they will post it if not then oh well, at least I have it. and another (ot).. priceless Dominic, have you implemented the API for this purpose

(ot) automatical re-diretion from youtube

2009-09-01 Thread Don L
hi all, I'm wondering if there's a way to automatically launch/redirect to a url at the end of a youtube video (flash content) play, yeah, crazy. Thanks. ~| Want to reach the ColdFusion community with something they want?

Re: (ot) automatical re-diretion from youtube

2009-09-01 Thread Dave Watts
I'm wondering if there's a way to automatically launch/redirect to a url at the end of a youtube video (flash content) play, yeah, crazy. I would certainly hope not. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized

Re: (ot) automatical re-diretion from youtube

2009-09-01 Thread Phillip Vector
It's a kludge, but if you know how long the video is, then remove the controls and have it start as the page opens. Use a meta redirect to redirect the page after so many seconds. On Tue, Sep 1, 2009 at 8:12 AM, Dave Wattsdwa...@figleaf.com wrote: I'm wondering if there's a way to

Re: (ot) automatical re-diretion from youtube

2009-09-01 Thread Dominic Watson
There's a full js API to the YouTube player. Ideally, you'd hook into that, listen for a FinishedPlaying event and then do as you wish. http://tinyurl.com/noptmw :p Dominic 2009/9/1 Don L do...@yahoo.com hi all, I'm wondering if there's a way to automatically launch/redirect to a url at

Re: (ot) automatical re-diretion from youtube

2009-09-01 Thread Don L
There's a full js API to the YouTube player. Ideally, you'd hook into that, listen for a FinishedPlaying event and then do as you wish. http://tinyurl.com/noptmw :p Dominic Thanks but it seems a mess to have this little thing available, I mean, doing all the implementation for it. more

Re: (ot) automatical re-diretion from youtube

2009-09-01 Thread Don L
It's a kludge, but if you know how long the video is, then remove the controls and have it start as the page opens. Use a meta redirect to redirect the page after so many seconds. sorry not an option, the control has to be there, for one thing, for the existing users...

Re: (ot) automatical re-diretion from youtube

2009-09-01 Thread Don L
I'm wondering if there's a way to automatically launch/redirect to a ... I would certainly hope not. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ hey dave ~| Want to reach the ColdFusion community with

Re: (ot) automatical re-diretion from youtube

2009-09-01 Thread Dominic Watson
Using the API would clearly be the *clean* option - but the problem is of course one of time. However, I can't see another way of doing this; i.e. detecting the end of a youtube video playing. I'd suggest you'd spend more time figuring out a hack than you would picking up the API. Dominic

Re: (ot) automatical re-diretion from youtube

2009-09-01 Thread Jason Fisher
+1 @Dominic I gotta believe that working with a published and documented API is, by definition, the LEAST messy option out there. If YouTube gives you exactly what you need to get to where you want to be with a few lines of JS, I would recommend doing that!

Re: (ot) automatical re-diretion from youtube

2009-09-01 Thread Dave l
I certainly wouldn't worry about redirecting them at the end of the video.. I have seen the said video and you are better off figuring out how to capture a browser close during the first 10 seconds if you plan on getting any of those people.

Re: (ot) automatical re-diretion from youtube

2009-09-01 Thread Don L
Using the API would clearly be the *clean* option - but the problem is of course one of time. However, I can't see another way of doing this; i.e. detecting the end of a youtube video playing. I'd suggest you'd spend more time figuring out a hack than you would picking up the API. Dominic Yes,

Re: (ot) automatical re-diretion from youtube

2009-09-01 Thread Don L
I certainly wouldn't worry about redirecting them at the end of the video.. I have seen the said video and you are better off figuring out how to capture a browser close during the first 10 seconds if you plan on getting any of those people. Yes, you're right, the quality of the video

Re: (ot) automatical re-diretion from youtube

2009-09-01 Thread Don L
+1 @Dominic I gotta believe that working with a published and documented API is, by definition, the LEAST messy option out there. If YouTube gives you exactly what you need to get to where you want to be with a few lines of JS, I would recommend doing that! The word,mess is loose on

Re: (ot) automatical re-diretion from youtube

2009-09-01 Thread Charlie Griefer
On Tue, Sep 1, 2009 at 2:25 PM, Don L do...@yahoo.com wrote: +1 @Dominic I gotta believe that working with a published and documented API is, by definition, the LEAST messy option out there. If YouTube gives you exactly what you need to get to where you want to be with a few lines

Re: (ot) automatical re-diretion from youtube

2009-09-01 Thread Dave l
Come on now, we know that's not gunna happen. Just put a frame at the end that says free naked chix click here, would get a better conversion rate. I have to think that with all of the time you're wasting trying to figure ~|

Re: (ot) automatical re-diretion from youtube

2009-09-01 Thread Don L
Using the API would clearly be the *clean* option - but the problem is of course one of time. However, I can't see another way of doing this; i.e. detecting the end of a youtube video playing. I'd suggest you'd spend more time figuring out a hack than you would picking up the API. Dominic

Re: (ot) automatical re-diretion from youtube

2009-09-01 Thread Gerald Guido
I have to think that with all of the time you're wasting trying to figure out how to do it another way, you could have been done doing it the proper way via the provided API. Yeah, what Charlie said. Google has given you the keys to the kingdom. I looked at the code samples. Not all that

Re: (ot) profanity filter

2009-08-27 Thread Tom Chiverton
On Wednesday 26 Aug 2009, Peter Boughton wrote: It's idiotic that words can be considered offensive and blocked without context - yet I hope you suffer an eternity of burning agony will be allowed past just fine. You should have seen the bizzare errors I had to deal with as a sys. admin for

(ot) profanity filter

2009-08-26 Thread Rick Root
Okay, sorry but this kind of amuses me. Someone on this list isn't receiving certain email because we use profanity. I'll * the word in question below so this email isn't blocked =) The word blocked was d-a-m-n lol Microsoft Forefront Security for Exchange Server has matched a filter. Filter

Re: (ot) profanity filter

2009-08-26 Thread Roger Austin
Rick Root wrote: Okay, sorry but this kind of amuses me. Someone on this list isn't receiving certain email because we use profanity. I'll * the word in question below so this email isn't blocked =) The word blocked was d-a-m-n lol There are policies about behavior at a lot of

Re: (ot) profanity filter

2009-08-26 Thread Phillip Vector
It also comes under upbringing. For example, Damn is not an issue for me. For others, apparently, they consider it a curse word.. So ... Yeah. :) On Wed, Aug 26, 2009 at 2:09 PM, Roger Austinraust...@nc.rr.com wrote: Rick Root wrote: Okay, sorry but this kind of amuses me.  Someone on this

Re: (ot) profanity filter

2009-08-26 Thread Peter Boughton
There are policies about behavior at a lot of companies. Profanity falls under policies about respecting people. Many people find it very offensive. I find censorship far more offensive than swearing. And damn is a good example of why it's stupid - it's not even considered mild swearing over

(ot) jQueryGrid

2009-08-20 Thread Rick Root
So I'm using this jquerygrid plugin () and it's working pretty well. I'm trying to use the inline edit feature to edit a couple fields in the row using checkboxes... the values in the DB are 1 and 0. So in my colModel, I have this: {name:'ISOWNER',index:'ISOWNER', width:50,

Re: (ot) How to call a .cfm page from a MS SQL Server trigger or stored procedure

2009-08-15 Thread Don L
Sound like what needs to be done can't be done or very inconvenient to be done at db end hence you need to run some cfm page from db end. Not sure if it's efficient, doable though. call sp_shellcmd, (look it up for sp for shell command), have some utility like wget, then, wget http://yourURL;

Re: (ot) How to call a .cfm page from a MS SQL Server trigger or stored procedure

2009-08-15 Thread Mike Chabot
I have a vbs script that takes a URL as an input that I can call from SQL Server to execute Web code. However, I wouldn’t call this script inside of a trigger and would be concerned about holding open the database transaction. You would probably want a solution that would allow the transaction to

(ot) How to call a .cfm page from a MS SQL Server trigger or stored procedure

2009-08-14 Thread Michael Reick
I've done a ton of Googling, (is that a word??) and so far I can't find the answer, so I figured I'd ask here. I've got a trigger that runs when certain tables are updated, which updates some other tables, but I'd like it to call a .cfm page (either on the database box or a different box)

RE: (ot) How to call a .cfm page from a MS SQL Server trigger or stored procedure

2009-08-14 Thread brad
be routed through your application's service layer. ~Brad Original Message Subject: (ot) How to call a .cfm page from a MS SQL Server trigger or stored procedure From: Michael Reick mich...@widgethq.com I've done a ton of Googling, (is that a word??) and so far I can't

Re: (ot) sql server 2005 express sp3 installation onto vista os

2009-08-12 Thread Jason Fisher
Actually, I run SQL 2005 Express on my Vista box at home for dev work, and it's actually been fine. SQL Express has its own problems (what do you mean I can't move data with it??), but that's not a Vista issue. ~| Want to

Re: (ot) sql server 2005 express sp3 installation onto vista os

2009-08-12 Thread Jochem van Dieten
On Wed, Aug 12, 2009 at 5:19 AM, Don L wrote: Mysql, sql lite, h2, derby = no install sql lite is eliminated for it's not a dbms but a c library for a dbm.  of the remaining 3, which one is most compatiable with ms sql server 2005 syntax and feature-wise? PostgreSQL. Supports silent

Re: (ot) sql server 2005 express sp3 installation onto vista os

2009-08-12 Thread Don L
Actually, I run SQL 2005 Express on my Vista box at home for dev work, and it's actually been fine. SQL Express has its own problems (what do you mean I can't move data with it??), but that's not a Vista issue. Could you look up Windows Installer version from registry on your Vista box for

Re: (ot) sql server 2005 express sp3 installation onto vista os

2009-08-12 Thread Jason Fisher
Looks like it's still Vista SP1, Home Premium Edition. No clue what version of the Installer is in place. There are no entries in those keys that are specific to the installer itself, at least not on my OS. ~| Want to reach

Re: (ot) sql server 2005 express sp3 installation onto vista os

2009-08-12 Thread Don L
Looks like it's still Vista SP1, Home Premium Edition. No clue what version of the Installer is in place. There are no entries in those keys that are specific to the installer itself, at least not on my OS. Good to know, thanks. Those two registry branches are pretty standard for XP

Re: (ot) sql server 2005 express sp3 installation onto vista os

2009-08-12 Thread Don L
On Wed, Aug 12, 2009 at 5:19 AM, Don L wrote: Mysql, sql lite, h2, derby = no install sql lite is eliminated for it's not a dbms but a c library for a dbm.  of the remaining 3, which one is most compatiable with ms sql server 2005 syntax and feature-wise? PostgreSQL. Supports

Re: (ot) sql server 2005 express sp3 installation onto vista os

2009-08-12 Thread Emmit Larson
Out of curiosity, after all the problems you have had with MSSQL Express and all the alternatives that have been offered. Are you going to continue to use MSSQL Express? Or will you try using one of the alternatives? Best Regards. Emmit On Wed, Aug 12, 2009 at 6:27 PM, Don L do...@yahoo.com

Re: (ot) sql server 2005 express sp3 installation onto vista os

2009-08-12 Thread Don L
FYI, a) Project deadline is days away. One should probably not to change horse while crossing a river (of course another could argue should you really need to cross the river?) b) The randomly reported error may not accurately reflect sql server 2005 express sp3 installation success or

(ot) sql server 2005 express sp3 installation onto vista os

2009-08-11 Thread Don L
I'd like to hear people's experience on this, my users/customers reported tons of problem with it while generally positive on XP. I don't have vista box myself, can't test it on my own. thks. ~| Want to reach the ColdFusion

Re: (ot) sql server 2005 express sp3 installation onto vista os

2009-08-11 Thread Gerald Guido
Mysql, sql lite, h2, derby = no install All of which have rich SQL dialects and are very capable. Problem solved! G! On Tue, Aug 11, 2009 at 9:47 PM, Don L do...@yahoo.com wrote: I'd like to hear people's experience on this, my users/customers reported tons of problem with it while

Re: (ot) sql server 2005 express sp3 installation onto vista os

2009-08-11 Thread Don L
sql lite is eliminated for it's not a dbms but a c library for a dbm. of the remaining 3, which one is most compatiable with ms sql server 2005 syntax and feature-wise? do they all support quiet installation? do h2 and derby support dll as well? how about creating datasource connection to

(ot) Twitter down

2009-08-06 Thread Mark Kruger
H I just tried to tweet on one of my blog posts and noticed that twitter is down and I've heard facebook is having problems as well. In a completely unrelated story palid teenagers are emerging from basement hideaways and over-garage bedrooms by the thousands, blinking and squinting at

Re: (ot) Twitter down

2009-08-06 Thread Phillip Vector
That was pretty funny. One sec while I tweet about that. :) On Thu, Aug 6, 2009 at 9:55 AM, Mark Krugermkru...@cfwebtools.com wrote: H I just tried to tweet on one of my blog posts and noticed that twitter is down and I've heard facebook is having problems as well. In a completely

RE: (ot) Twitter down

2009-08-06 Thread Josh Nathanson
CNN says Twitter is being hit with a DOS attack. When I try to login to Facebook I get a blank white screen. -- Josh -Original Message- From: Phillip Vector [mailto:vec...@mostdeadlygame.com] Sent: Thursday, August 06, 2009 9:58 AM To: cf-talk Subject: Re: (ot) Twitter down

RE: (ot) Twitter down

2009-08-06 Thread Jacob
DOS attack since 9am EDT -Original Message- From: Mark Kruger [mailto:mkru...@cfwebtools.com] Sent: Thursday, August 06, 2009 9:55 AM To: cf-talk Subject: (ot) Twitter down H I just tried to tweet on one of my blog posts and noticed that twitter is down and I've heard

RE: (ot) Twitter down

2009-08-06 Thread Robert Harrison
It's a self-fulfilling problem. Spread enough news there's a DOS attack so everyone goes to check it out, and there is a DOS attack. Robert B. Harrison Director of Interactive Services Austin Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788 P : 631.231.6600 Ext. 119 F : 631.434.7022

Re: (ot) Twitter down

2009-08-06 Thread David McGuigan
I think you mean DOSN attack. On Thu, Aug 6, 2009 at 11:50 AM, Robert Harrison rob...@austin-williams.com wrote: It's a self-fulfilling problem. Spread enough news there's a DOS attack so everyone goes to check it out, and there is a DOS attack. Robert B. Harrison Director of

Re: (ot) Twitter down

2009-08-06 Thread Bryan Stevenson
LMAOthanks...needed thatyes the world is spinning out of control with social networking isn't it ;-) - Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail:

Re: (ot) Twitter down

2009-08-06 Thread Nathan Strutz
On Thu, Aug 6, 2009 at 11:58 AM, David McGuigan davidmcgui...@gmail.comwrote: I think you mean DOSN attack. If that's a joke, I don't get it. http://en.wikipedia.org/wiki/Denial-of-service_attack I've heard it also called DDOS, distributed denial of service, which is more in reference to

Re: (ot) Twitter down

2009-08-06 Thread Charlie Griefer
I think the joke was Denial of Social Networking. They would've gotten it on cf-community (hint, hint) :) On Thu, Aug 6, 2009 at 12:27 PM, Nathan Strutz str...@gmail.com wrote: On Thu, Aug 6, 2009 at 11:58 AM, David McGuigan davidmcgui...@gmail.com wrote: I think you mean DOSN attack.

RE: (ot) Twitter down

2009-08-06 Thread Mark Kruger
[mailto:charlie.grie...@gmail.com] Sent: Thursday, August 06, 2009 2:30 PM To: cf-talk Subject: Re: (ot) Twitter down I think the joke was Denial of Social Networking. They would've gotten it on cf-community (hint, hint) :) On Thu, Aug 6, 2009 at 12:27 PM, Nathan Strutz str...@gmail.com wrote

(ot) FedEx Webservices SSL Changes

2009-08-01 Thread Dave Hatz
We use FedEx web services and it looks like they switched to a new Chained Secure Socket Layer (SSL) Production Certificate today and of course no on my IT staff new about it, which makes for a lovely Saturday afternoon Anyways, I installed the Intermediate Certs on our IIS6 server and we

OT javascript

2009-07-30 Thread Chad Gray
Say I have two select inputs on one page and they are named the same. select name=ID option value=Please Select/option option value=11/option /select select name=ID option value=Please Select/option option value=11/option /select I want to write javascript to check that both of these are not

Re: OT javascript

2009-07-30 Thread JediHomer
You could set different IDs for them, then reference these... Something like select name=ID id=sel1 option value=Please Select/option option value=11/option /select select name=ID id=sel2 option value=Please Select/option option value=11/option /select

Re: OT javascript

2009-07-30 Thread Cutter (ColdFusion)
Why would you have two selects with the same name? Radio Buttons? Sure. But not selects... Steve Cutter Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer Co-Author of Learning Ext JS http://www.packtpub.com/learning-ext-js/book _

RE: OT javascript

2009-07-30 Thread Adrian Lynch
Gray [mailto:cg...@careyweb.com] Sent: 30 July 2009 16:20 To: cf-talk Subject: OT javascript Say I have two select inputs on one page and they are named the same. select name=ID option value=Please Select/option option value=11/option /select select name=ID option value=Please

RE: OT javascript

2009-07-30 Thread Andy Matthews
Message- From: Chad Gray [mailto:cg...@careyweb.com] Sent: Thursday, July 30, 2009 10:20 AM To: cf-talk Subject: OT javascript Say I have two select inputs on one page and they are named the same. select name=ID option value=Please Select/option option value=11/option /select select name=ID

RE: OT javascript

2009-07-30 Thread Chad Gray
Message- From: Cutter (ColdFusion) [mailto:cold.fus...@cutterscrossing.com] Sent: Thursday, July 30, 2009 11:38 AM To: cf-talk Subject: Re: OT javascript Why would you have two selects with the same name? Radio Buttons? Sure. But not selects... Steve Cutter Blades Adobe Certified

Re: OT javascript

2009-07-30 Thread Andy Matthews
Chad... Here's what I'd suggest...leave the name value as is, even though that's not the best idea. Add an ID attribute to each, with an increasing numeric value: cb1, cb2, cb3, etc. Give each combobox the same class, comboBox or something like that. Then, you could try something like this:

RE: OT javascript

2009-07-30 Thread Adrian Lynch
That's ok. Having duplicate names is cool. Adrian -Original Message- From: Chad Gray [mailto:cg...@careyweb.com] Sent: 30 July 2009 16:46 To: cf-talk Subject: RE: OT javascript When you submit it makes a comma delimited list of ID's that we loop over and use. Some pages

(ot) Protecting Files

2009-07-28 Thread Scott Mulholland
I imagine this is a common issue : Let's say you have bunch of PDFs in a directory: /pdfs and the links to the files in the site are behind a login so non-registered users cannot access them. If a users knew the link to the file: http://www.mysite.com/pdfs/sample.pdf they could still get to

Re: (ot) Protecting Files

2009-07-28 Thread Dave Sueltenfuss
One thing you could do is write a CF page to retrieve the files for the user. That way, they wouldnt know the actual location of the file on the file system. You would then make sure they were logged in before letting them retrieve the file. Dave On Tue, Jul 28, 2009 at 2:11 PM, Scott

RE: (ot) Protecting Files

2009-07-28 Thread Justin Scott
them. If a users knew the link to the file: http://www.mysite.com/pdfs/sample.pdf they could still get to it in the browser without signing in. Is there any way outside of windows authentication at the directory level to prevent this? What is the standard way of dealing with this (if

Re: (ot) Protecting Files

2009-07-28 Thread Alan Rother
Typically, the best way to secure downloadables is to have them stored above the web root, thus not being directly accessible by the browser. Then when an authnticated user wants to download one, you provide it to them progrmatically Here is a rough example a href=download.cfm?file=abc.pdfClick

Re: (ot) Protecting Files

2009-07-28 Thread Barney Boisvert
I put stuff like that on S3, with read access denied. When someone wants to view the resource, they're sent to a proxy page (written in CF or whatever) that will build a signed URL that will allow them read access to the resource for a period of time (a few minutes, a couple hours, whatever is

(ot) Javascript Help

2009-07-09 Thread Michael Muller
Ok, I need some Javascript help. I just cannot get this script (residing in an iframe)... script parent.thisMovie('studio_loader_embed').reloadClipart(); parent.thisMovie('studio_loader_embed').showTab(2); /script ...to go through this script... script function thisMovie(movieName) { if

Re: (ot) Javascript Help

2009-07-09 Thread James Holmes
There's probably something in jquery that'll do it on one line of cross browser code... mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ 2009/7/9 Michael Muller mich...@mullertech.com: Ok, I need some Javascript help. I just cannot get this script (residing in

Re: (ot) Javascript Help

2009-07-09 Thread Dave Watts
Someone told me that IE cannot talk to an embed tag, only an object tag, but I believe the ID vs NAME issue is tripping me up. I don't think IE uses the EMBED tag at all. Give your OBJECT an ID of its own, and use that when you're in IE. Dave Watts, CTO, Fig Leaf Software

OT DNS cname vs dname question

2009-07-06 Thread Ian Skinner
Not a ColdFusion question, but there are just so many smart people here. We have an old server named jolie [jolie.cdpr.ca.gov] . This server is being replaced by our new apps server [apps.cdpr.ca.gov]. What do I want to tell our DNS host to do with the old jolie.cdpr.ca.gov entry to have it

Re: OT DNS cname vs dname question

2009-07-06 Thread Judah McAuley
DNAME is for aliasing an entire domain, not a single resource, so you should use CNAME. You should also see if there is an MX record for your old app server. If so it will need to be updated as well. Judah On Mon, Jul 6, 2009 at 10:15 AM, Ian Skinnerh...@ilsweb.com wrote: Not a ColdFusion

Re: OT DNS cname vs dname question

2009-07-06 Thread Ian Skinner
Judah McAuley wrote: DNAME is for aliasing an entire domain, not a single resource, so you should use CNAME. You should also see if there is an MX record for your old app server. If so it will need to be updated as well. Judah Is that not what I am attempting to do, aliasing the entire

RE: OT DNS cname vs dname question

2009-07-06 Thread Dave Watts
@houseoffusion.com Subject: Re: OT DNS cname vs dname question Judah McAuley wrote: DNAME is for aliasing an entire domain, not a single resource, so you should use CNAME. You should also see if there is an MX record for your old app server. If so it will need to be updated as well. Judah

Re: OT DNS cname vs dname question

2009-07-06 Thread Ian Skinner
Dave Watts wrote: The servers jolie and apps are hosts, not domains. If the server is registered in DNS with an A or CNAME record, it's not a domain. Dave Watts, CTO, Fig Leaf Software That clarifies some of it. I really need to get my head around the entire DNS way fores and whatnots

Re: OT DNS cname vs dname question

2009-07-06 Thread Judah McAuley
There are some potential complications when you start getting into delegation of subdomains, but that is a pretty rare setup. Generally speaking you are going be dealing with two levels of DNS. There is the domain itself which you would go to a registrar for, like foo.com or foo.co.uk That

(ot) Authorize.net down Anyone get through support yet?

2009-07-03 Thread Casey Dougall
I'm on hold 1 hour 5 minutes now. Anyone get though to their suppor about authorize.net being down? -- Casey ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing

RE: (ot) Authorize.net down Anyone get through support yet?

2009-07-03 Thread Mark Kruger
www.necfug.com -Original Message- From: Casey Dougall [mailto:ca...@uberwebsitesolutions.com] Sent: Friday, July 03, 2009 9:10 AM To: cf-talk Subject: (ot) Authorize.net down Anyone get through support yet? I'm on hold 1 hour 5 minutes now. Anyone get though to their suppor about

Re: (ot) Authorize.net down Anyone get through support yet?

2009-07-03 Thread David Lakein
Seems like they had a fire in their main datacenter http://www.dslreports.com/shownews/Credit-Card-Processing-Company-Authorizenet-Knocked-Offline-103256 http://twitter.com/authorizenet Casey, I have a number of customers currently down due to this issue. I suspect support is flooded with

(ot) quick Ext question

2009-07-01 Thread Don L
Sorry for the ot but this is a quick one. How to use the bodyStyle attribute for Window object? // Ext 2 var ewin = new Ext.Window ({ // x:200, // y:200, width:350, height:350, border:true, resizable:true, // try 1 // bodyStyle: [{background-color:white; color:black; padding

<    6   7   8   9   10   11   12   13   14   15   >