Re: Good script to prevent cross-site scripting sql injection?

2006-08-09 Thread Mark Stanton
I just stumbled across the safeText function over at cflib.org - http://www.cflib.org/codeView.cfm?ID=56 Any views on how suitable this is for XSS protection (not SQL injection)? -- Mark Stanton Gruden Pty Ltd http://www.gruden.com

Re: odd component issue

2006-08-09 Thread Robertson-Ravo, Neil (RX)
Did you recently update that cfc? This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant, Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is confidential and may also be privileged. It

coldfusion scam site

2006-08-09 Thread Michael Dinowitz
Does anyone know who owns coldfusionjobs.com? It's a scam site that only shows advertising and actually is showing ads in a way that is in total violation of the Google terms of service. I can't block my ads from showing on it due to the way that they've hijacked the ads so I want to contact

Re: coldfusion scam site

2006-08-09 Thread Tom Chiverton
On Wednesday 09 August 2006 08:16, Michael Dinowitz wrote: on it due to the way that they've hijacked the ads so I want to contact them directly to have my content removed. Thanks Email google, they should be fairly quick to have the ads stop working. -- Tom Chiverton

RE: coldfusion scam site

2006-08-09 Thread Hugo Ahlenius
| Does anyone know who owns coldfusionjobs.com? It's a scam site that | only shows advertising and actually is showing ads in a way that is in | total violation of the Google terms of service. I can't block my ads | from showing on it due to the way that they've hijacked the ads so I | want to

Re: Making onSessionEnd() show me what it''s doing

2006-08-09 Thread Will Tomlinson
Ok, I figured some of this out. The reference to application.cartservice in onSessionEnd() doesn't return anything. Apparently the application scoped cfc's are gone by the time it fires. If I fire onSessionEnd() myself thru a URL var in onRequestStart(), it works, cause I didn't kill the app.

Re: Catching cfhttp timeout

2006-08-09 Thread Robbie Moore
Give this a shot: cfhttp url=http://www.somewhereontheweb.com; timeout=10/cfhttp cfif cfhttp.StatusCode eq 200 OK !--- Code goes here --- cfelse !--- Exception Code goes here --- /cfif ~Rob ~| Introducing the Fusion

Question about Adobe coldfusion 8/8 Security bulletin

2006-08-09 Thread Casey Dougall
http://www.adobe.com/support/security/bulletins/apsb06-10.html The AdminAPI of ColdFusion MX 7 provides programmatic access to all ColdFusion Administrator functionality. All calls to the adminAPI require an authentication test before calling any other adminAPI functionality. The authentication

Re: Question about Adobe coldfusion 8/8 Security bulletin

2006-08-09 Thread Tom Chiverton
On Wednesday 09 August 2006 12:01, Casey Dougall wrote: If were on a dedicated box and are the only ones creating code on the box then calls to the admin API won't be much of an issue correct? Correct. If there is any chance someone nasty could upload a file to the box, time to think about

Re: Question about Adobe coldfusion 8/8 Security bulletin

2006-08-09 Thread James Holmes
I haven't had security bulletin email in ages - I think the same thing happened to me. On 8/9/06, Casey Dougall [EMAIL PROTECTED] wrote: http://www.adobe.com/support/security/bulletins/apsb06-10.html Shouldn't I get an e-mail from adobe? I had to learn about this from another website. Maybe

Re: Sessions seem to go away for some (CFMX701-Linux)

2006-08-09 Thread Kris Jones
If you use CFLOCATION on the same template after a CFCOOKIE set, the cookie will not be set. I've also found this behavior to vary depending on version of CF (works on 4.5, and 5, but not MX6 or MX7). Cheers, Kris We are running a site on CFMX 7.0.1 on Linux, and encountering a very strange

RE: odd component issue

2006-08-09 Thread Richard Kroll
I've encountered some strange things like this on our server when we are caching classes. From time to time we need to remove all of the CF generated classes and then CF can see the missing page again. I've been unable to figure out exactly why it's caused, but at least I've found a solution

SOT: Canvas Wiki

2006-08-09 Thread Chad Gray
I posted this question to Rays forum, but I am impatient and I am sure he is busy. I downloaded ModelGlue 1.1.00 and make it a mapping in CF: /ModelGlue C:\Inetpub\ModelGlue I download CanvasWiki and make it a mapping in CF: /canvasWiKi C:\Inetpub\canvas I go to http://localhost/canvasWiKi/

RE: CRUD

2006-08-09 Thread Richard Kroll
You can create the DAO, bean, and gateway CFCs by right clicking on a table and using a provided wizard. It's a great tool, there are some code inconsistencies (just style mostly) that are within the generated CFCs, but adobe is aware and I'm sure will fix them in an upcoming release. Rich

Re: SOT: Canvas Wiki

2006-08-09 Thread Tom Chiverton
On Wednesday 09 August 2006 14:09, Chad Gray wrote: I go to http://localhost/canvasWiKi/ and i get a page not found. guess The wwwroot of the localhost virtual host is not c:\inetpub. -- Tom Chiverton This email is sent for and on behalf

RE: Catching cfhttp timeout

2006-08-09 Thread Dawson, Michael
I'm having the same issue. However, I don't have a solution. The request has exceeded the allowable time limit Tag: cfmail brThe error occurred on line 18. The error is that the HTTP request timed-out. M!ke -Original Message- From: Tony Hicks [mailto:[EMAIL PROTECTED] Sent: Tuesday,

Re: Fedora vs. RedHat

2006-08-09 Thread Jordan Michaels
Jerky San Pedro wrote: We are upgrading our server from RedHat 7.3 to Fedora 4 or 5 or to Red Hat 9.0. We are also upgrading from ColdFusion 5 to ColdFusion MX 6.1. From what I've read, it seems that support for Red Hat 9.0 has been dropped 2 years ago. This is my first time to install

Development Environment Setup

2006-08-09 Thread Neil Middleton
Hi guys, Question on how best to setup our development environment. I know it's been asked before, I would like your ideas on our specific setup: Currently we maintain several applications under many websites, on a single development server (CFMX7 and SQL2000). Developers work direct on the

Re: SOT: Canvas Wiki

2006-08-09 Thread Raymond Camden
Tom is right. You must put canvas under web root. A CF mapping is not the same as a web server mapping. On 8/9/06, Chad Gray [EMAIL PROTECTED] wrote: I posted this question to Rays forum, but I am impatient and I am sure he is busy. I downloaded ModelGlue 1.1.00 and make it a mapping in CF:

RE: SOT: Canvas Wiki

2006-08-09 Thread Chad Gray
So I also need a virtual mapping in IIS called CanvasWiki pointing to C:\Inetpub\canvas ? Ok that makes sense. (Add that to your documentation :)) Can you run Canvas wiki code on many web sites on the same server with customized CSS for each one and customized databases etc...? Thanks and

Re: SOT: Canvas Wiki

2006-08-09 Thread Raymond Camden
Errr no. You don't need the IIS virtual mapping. You needed it becuase you put canvas outside of web root. The normal use of the app is to put it under web root. Yes - you should be able to run N copies of canvas. Just ensure you change the settings. I believe I remember someone having a small

RE: SOT: Canvas Wiki

2006-08-09 Thread Chad Gray
OH the word under I translated as BELOW the web root. That is why I put it lower then the web root. Sorry about that. I will put it IN the website root. :) -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 09, 2006 9:47 AM To: CF-Talk

RE: Sessions seem to go away for some (CFMX701-Linux)

2006-08-09 Thread Everett, Al \(NIH/NIGMS\) [C]
Wasn't this problem fixed in CFMX 7? -Original Message- From: Kris Jones Sent: Wednesday, August 09, 2006 7:57 AM To: CF-Talk Subject: Re: Sessions seem to go away for some (CFMX701-Linux) If you use CFLOCATION on the same template after a CFCOOKIE set, the cookie will not be set. I've

Re: Sessions seem to go away for some (CFMX701-Linux)

2006-08-09 Thread Claude Schneegans
If you use CFLOCATION on the same template after a CFCOOKIE set, the cookie will not be set. I've also found this behavior to vary depending on version of CF (works on 4.5, and 5, but not MX6 or MX7). This is right, however, it will act the same way for all users. If it happens only for some

Re: coldfusion scam site

2006-08-09 Thread Rick Root
I think google ads are supposed to be served on pages that actually have content, and these pages have no content. Plus, google ads are served by javascript. These google ads look like they were screen scraped, as they actually appear in the HTML. And there's no Ads by Google tag, which I

Re: Fedora vs. RedHat

2006-08-09 Thread Rick Root
Jerky San Pedro wrote: We are upgrading our server from RedHat 7.3 to Fedora 4 or 5 or to Red Hat 9.0. We are also upgrading from ColdFusion 5 to ColdFusion MX 6.1. From what I've read, it seems that support for Red Hat 9.0 has been dropped 2 years ago. Do *NOT* use Redhat 9. It isn't

Re: coldfusion scam site

2006-08-09 Thread Alan Rother
This is just a WAG, but I remember ColdFusionJobs.com used to be a real site, with real CF Jobs listed. Looking at this site I thin what we are seeing is whomever owned the domain let it expire and some A**hole grabbed it up and is mis-using it. I've had this same problem with some of my old

RE: Fedora vs. RedHat

2006-08-09 Thread O�uz_Demirkap
Hi, We can install and use CF on Debian but there is no official support. I also requested official Debian support from Adobe team at CFUnited but I think they have no interest for non-commercial platforms. Debian is one of the most used linux platform on server side and I think an important

Re: coldfusion scam site

2006-08-09 Thread Michael Dinowitz
You're thinking about onlycoldfusionjobs.com This is just a WAG, but I remember ColdFusionJobs.com used to be a real site, with real CF Jobs listed. Looking at this site I thin what we are seeing is whomever owned the domain let it expire and some A**hole grabbed it up and is mis-using it. I've

Re: coldfusion scam site

2006-08-09 Thread Michael Dinowitz
The person I talked to through Google was clueless and I asked for my issue to be moved up the chain. I know how AdWords are supposed to be served but there is a way of 'hacking it' by using the AdWords search feature and copying the links from that. I'll explain it in detail on Blog of Fusion.

Re: coldfusion scam site

2006-08-09 Thread Rey Bango
Hi Michael, This actually was a legit site at one point but it looks like they let their domain expire and it was taken over by an expired domain prospector. Here's what the site kind of looked like back in 2001: http://web.archive.org/web/20010517212949/http://www.coldfusionjobs.com/ Rey...

RE: OT Why we are VERY careful about our Computer Systems WAS: Sharing Sessions between a .Net machine and a CF machine

2006-08-09 Thread Ian Skinner
It could be that the mention of a contract was more along the lines of the fact you can legally go after a commercial software producer if their software does not operate as advertised. In the open source world you cannot. This is what I meant. Personally I use a lot of open source and think

Re: CFLOGOUT Problem Persists

2006-08-09 Thread James Holmes
Is the logout file also outside the directory that has application.cfc? On 8/9/06, Lewis Billingsley [EMAIL PROTECTED] wrote: Grantee_Login2.cfm is a duplicate of the login form. I don't remember why I used a duplicate, but the original login is outside the directory that has

RE: OT Why we are VERY careful about our Computer Systems WAS: Sharing Sessions between a .Net machine and a CF machine

2006-08-09 Thread Ian Skinner
quote Ok, much as I hate to eat such an intelligent bird, and those incidents make me worry more about training than licensing... :-) /quote Training was defiantly a BIG part of this incident (there was only one), but there where also software failures that contributed. Where the fault for

Re: Catching cfhttp timeout

2006-08-09 Thread Tom Chiverton
On Wednesday 09 August 2006 14:17, Dawson, Michael wrote: I have a critical cfhttp that is timing out if the page cannot be contacted... I tried to place a cftry block around it, and all it does, if it times out, is report a timeout on the next tag.. Do you need to raise the page timeout too ?

Re: Sessions seem to go away for some (CFMX701-Linux)

2006-08-09 Thread mom
If you use CFLOCATION on the same template after a CFCOOKIE set, the cookie will not be set. I've also found this behavior to vary depending on version of CF (works on 4.5, and 5, but not MX6 or MX7). Cheers, Kris Howdy, Thanks for your reply. I'm setting the cookie on an earlier page

RE: Sessions seem to go away for some (CFMX701-Linux)

2006-08-09 Thread O�uz_Demirkap
You can try a JavaScript set to forward page instead of cflocation in order to be sure. I had ~same issue and it was because of cflocation. You can check this page: http://www.activsoftware.com/resources/discussion/messages.cfm/id/26 Oðuz Demirkapý -Original Message- From: [EMAIL

Re: Fedora vs. RedHat

2006-08-09 Thread Tom Chiverton
On Wednesday 09 August 2006 15:05, Rick Root wrote: Do *NOT* use Redhat 9. ... there are NO security updates being made for it any more. If you go with Redhat 9, you'll probably be running a fairly insecure server. cough http://fedoralegacy.org/updates/RH9/ till at least the end of the

bulk registration of SQL Server datasources in CF Admin

2006-08-09 Thread JRose
greetings list Is there a way to import/export or script datasource registrations? We have about 70 datasources which need to be brought from one server to another. Have a good afternoon and many thanks in advance, Jeffrey

Re: OT Why we are VERY careful about our Computer Systems WAS: Sharing Sessions between a .Net machine and a CF machine

2006-08-09 Thread Tom Chiverton
On Tuesday 08 August 2006 19:38, Ian Skinner wrote: I'm posting this because I mentioned how a mistake we make could have lethal consequences. This is no different to traditional engineering (bridges, cars) really. Of course, yes, this means we have the same responsibility as the people who

RE: bulk registration of SQL Server datasources in CF Admin

2006-08-09 Thread Jacob
CF6 or CF7... Copy the neo-query.xml file in the \cfusionMX\bin\ directory. Start and restart the CF service. Jacob -Original Message- From: JRose [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 09, 2006 8:19 AM To: CF-Talk Subject: bulk registration of SQL Server datasources in CF

Re: Sessions seem to go away for some (CFMX701-Linux)

2006-08-09 Thread Claude Schneegans
You can try a JavaScript set to forward page instead of cflocation in order to be sure. Not quite sure either: this feature also can be disabled by paranoids :-( -- ___ REUSE CODE! Use custom tags; See

Re: coldfusion scam site

2006-08-09 Thread Alan Rother
Yup, thats the site. Good call Rey -- Alan Rother Macromedia Certified Advanced ColdFusion MX 7 Developer ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your

Re: OT Why we are VERY careful about our Computer Systems WAS: Sharing Sessions between a .Net machine and a CF machine

2006-08-09 Thread Bryan Stevenson
Ok, much as I hate to eat such an intelligent bird, and those incidents make me worry more about training than licensing... :-) *munch* *munch* *munch* OK Dennyput down the sugar and step away slowlyI think you've had enough ;-) I guess a down side to open source is it's

Sessions and web services

2006-08-09 Thread Smith, Daron [PA]
Below is code that I've written to try to determine if a cold fusion session variable exists. I've read that you can access session variables via web services. But whenever I call the CFC below via web service it returns 0 regardless of whether or not the session variable does exist. Can I use

RE: Sessions and web services

2006-08-09 Thread Sean Coyne
Why not just pass the session variable in as an argument myFunction(session.peopleID) cffunction name=myFunction access=remote returntype=numeric output=false cfargument name=peopleID default=0 / cfset var peopleID = arguments.peopleID / cfreturn peopleID /cffunction -Original

RE: Sessions and web services

2006-08-09 Thread Ian Skinner
I would also like to know the whys and wherefores of web services and session variables. I thought I've heard you can do something with a façade CFC, but I have never figured it out. I presume the difficulty is that a web service request does not pass the cfide cftoken cookie information

Re: Sessions and web service

2006-08-09 Thread Robertson-Ravo, Neil (RX)
I am sure you cannot call a web service on Server B (remote) to determine if you have a session on your Server A (local). This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant, Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business, Registered in England,

Re: OT Why we are VERY careful about our Computer Systems WAS: Sharing Sessions between a .Net machine and a CF machine

2006-08-09 Thread Matt Robertson
Assuming a commercial product, doesn't the disclaimer you *always* get hit with routinely require that you disclaim all rights of recovery against the vendor? There's probably indemnification and hold-harmless agreements in there as well I bet (they're certainly in my own license agreement). You

CF ShopCart

2006-08-09 Thread Doug
Has anyone here used CF ShopCart? Just wanted to find out everyone experiences good or bad. http://www.cfshopkart.com/ Thanks in advance ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date

Re: CFLOGOUT Problem Persists

2006-08-09 Thread Lewis Billingsley
Yes. Is the logout file also outside the directory that has application. cfc? On 8/9/06, Lewis Billingsley [EMAIL PROTECTED] wrote: Grantee_Login2.cfm is a duplicate of the login form. I don't remember why I used a duplicate, but the original login is outside the directory that has

RE: Sessions seem to go away for some (CFMX701-Linux)

2006-08-09 Thread loathe
Use the meta tag ability then. That can't be disabled. -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 09, 2006 11:45 AM To: CF-Talk Subject: Re: Sessions seem to go away for some (CFMX701-Linux) You can try a JavaScript set to

Re: SOT: Canvas Wiki

2006-08-09 Thread Raymond Camden
FYI - there is an update coming out tonight. Better title rendering (you won't see foo.moo as the title, but foo | moo instead) Oracle SQL script On 8/9/06, Chad Gray [EMAIL PROTECTED] wrote: OH the word under I translated as BELOW the web root. That is why I put it lower then the web

RE: OT Why we are VERY careful about our Computer Systems WAS: Sh aring Sessions between a .Net machine and a CF machine

2006-08-09 Thread Dave Watts
Assuming a commercial product, doesn't the disclaimer you *always* get hit with routinely require that you disclaim all rights of recovery against the vendor? There's probably indemnification and hold-harmless agreements in there as well I bet (they're certainly in my own license

OT: AOL Alerts?

2006-08-09 Thread Katz, Dov B \(IT\)
I was buying something on ebay and noticed you can register on ebay for aol alerts. Does anyone know if there is a way to offer such a feature to your customers? TIA dov NOTICE: If received in error, please destroy and notify sender.

RE: Development Environment Setup

2006-08-09 Thread Konopka, David
You could create individual user shares on a development web server. Each developer would check out code to his/her user share to code with. ___ David Konopka Wharton Computing and Information Technology -Original Message- From: Neil Middleton

RE: Sessions and web services

2006-08-09 Thread Dave Watts
I would also like to know the whys and wherefores of web services and session variables. I thought I've heard you can do something with a façade CFC, but I have never figured it out. I presume the difficulty is that a web service request does not pass the cfide cftoken cookie

CF ShopCart Revised

2006-08-09 Thread Doug
Not only would I love to hear good or bad impressions of the cart, but if someone could tell me if they migrated it over to use MSSQL instead of mySQL or Access ~| Introducing the Fusion Authority Quarterly Update. 80 pages of

Re: CFLOGOUT Problem Persists

2006-08-09 Thread Lewis Billingsley
Ok, I put the logout file inside the directory that had application.cfm (with forceuserlogin.cfm, and therefore the login framework). It works. Yes. Little thing like that; I should have tried it. Of course. Obviously, it needs to be in the same directory as the login framwork. Maybe I

Re: Fedora vs. RedHat

2006-08-09 Thread Jordan Michaels
Tom Chiverton wrote: Anything that is certified for RHEL will work on CentOS. But won't be supported :-) By RedHat... ;) -- Warm regards, Jordan Michaels Vivio Technologies http://www.viviotech.net/ Blue Dragon Alliance Member [EMAIL PROTECTED]

RE: Development Environment Setup

2006-08-09 Thread O�uz_Demirkap
Test Server --- SVN --- Production Server | | Developers Test Server: Testing current status of code and deciding production version of code. Production Server: Deploying tested code version from SVN reposity.

Scheduled tasks

2006-08-09 Thread Everett, Al \(NIH/NIGMS\) [C]
Is there a way to programmatically get data from currently defined scheduled tasks without parsing the neo-cron.xml file? ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion

Re: Sessions seem to go away for some (CFMX701-Linux)

2006-08-09 Thread Claude Schneegans
Use the meta tag ability then. That can't be disabled. Oh yes it can ;-/ -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL PROTECTED]) Thanks.

RE: Development Environment Setup

2006-08-09 Thread Richard Kroll
I feel your pain and have recently worked through many of the problems that you are currently struggling with. This is the solution that we found works for us and is in no way best practice or the right way, but hey, it works for us with 20 developers all working on the same set of code! We

RE: Sessions seem to go away for some (CFMX701-Linux)

2006-08-09 Thread O�uz_Demirkap
Can you try server side redirect instead of cflocation. As I remember something like that: cfscript getPageContext().forward(yourURL); /cfscript Oðuz Demirkapý -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Mittwoch, 9. August 2006 20:41 To:

RE: Sessions seem to go away for some (CFMX701-Linux)

2006-08-09 Thread loathe
Interesting, how does that work? -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 09, 2006 2:41 PM To: CF-Talk Subject: Re: Sessions seem to go away for some (CFMX701-Linux) Use the meta tag ability then. That can't be disabled. Oh

Re: How to deal with email based commands - Any ideas?

2006-08-09 Thread john mcdonald
Here is what happened. Lotus Notes is what we use for an email client. We're creating a lotus notes form that they'll fill out from their email. then we'll poke their answeres directly into my oracle database (just as if they had filled out my CF form) solves my problem. And I don't have to

Re: Calendars

2006-08-09 Thread fsu__grad
If your still looking for a calendar take a look at my calendaring system: 1WebCalendar v4.0 http://www.bensonITsolutions.com/calendar/v4 It has many features such as a multiuser calendar with categories, groups and more. The group feature is not on the demo site now, but it lets you assign

RE: Development Environment Setup

2006-08-09 Thread Russ
We do some thing similar, except we have developers developing in branches, and then it's merged into the trunk working copy on QA server, and if it passes testing, then it's committed to the trunk and deployed to production. We don't have any notion of releases, instead we deploy different

RE: Scheduled tasks

2006-08-09 Thread Everett, Al \(NIH/NIGMS\) [C]
Is there a way to programmatically get data from currently defined scheduled tasks without parsing the neo-cron.xml file? Nevermind. I found an answer. http://www.bpurcell.org/blog/index.cfm?mode=entryentry=935 ~| Introducing

Re: Fedora vs. RedHat

2006-08-09 Thread Rob Wilkerson
This is the key. I've begun moving *away* from supported platforms in many cases because in so many cases the user/community support for a similar, but unsupported platform is *so* much better than corporate support. For whatever reason, this has worked out really well for me and my experience

RE: Scheduled tasks

2006-08-09 Thread Everett, Al \(NIH/NIGMS\) [C]
Here's the Google cache http://216.239.51.104/search?q=cache:kC0aaNbiwDcJ:www.bpurcell.org/blog/ index.cfm%3Fmode%3Dentry%26entry%3D935+coldfusion+service+factory+schedu led+taskshl=engl=usct=clnkcd=1lr=lang_en -Original Message- From: Aaron Rouse Sent: Wednesday, August 09, 2006 3:42

RE: Development Environment Setup

2006-08-09 Thread Everett, Al \(NIH/NIGMS\) [C]
I'd love to do that, but we're not allowed to have servers installed on our desktop machines for security reasons. -Original Message- From: Oðuz_Demirkapý Sent: Wednesday, August 09, 2006 2:37 PM To: CF-Talk Subject: RE: Development Environment Setup Test Server --- SVN ---

RE: Development Environment Setup

2006-08-09 Thread Russ
Then your security team is full of idiots. Not only can you set up a firewall, you can configure apache/coldfusion to only listen on 127.0.0.1, so that no other computers can access it. -Original Message- From: Everett, Al (NIH/NIGMS) [C] [mailto:[EMAIL PROTECTED] Sent: Wednesday,

Re: Fedora vs. RedHat

2006-08-09 Thread Rick Root
I understand that CentOS won't be supported But as long as RHEL continues to be supported by Adobe in terms of making sure Coldfusion works on RHEL, then Coldfusion will work on CentOS with zero difficulty. Ie, if RHEL is a QA platform for Adobe, you'll be fine with CentOS. Of course you

RE: Development Environment Setup

2006-08-09 Thread Lincoln Milner
We're currently switching our model. Current old way of doing it is to develop locally with Apache and CF to a MySQL or Oracle DB. Then push changes to QA for review. Developers use SVN to maintain code repositories for version/history. Once QA is passed, changes FTPed to production. No

Re: Good script to prevent cross-site scripting sql injection?

2006-08-09 Thread Andrew Grosset
interesting tag... however if you are allowing html input the best technique is to establish a list of allowable tags and then remove everything else. Trying to come up with a comprehensive list of bad tags to disallow is nearly impossible. Andrew I just stumbled across the safeText function

Re: Sessions seem to go away for some (CFMX701-Linux)

2006-08-09 Thread Claude Schneegans
Interesting, how does that work? There is an option in the security settings in MSIE. I don't know how it is named in English exactly, but according to the French version, it roughly says Authorize refreshing metafiles. If this is not set, the meta tag redirect won't work. By the way, this is

Re: Development Environment Setup

2006-08-09 Thread Neil Middleton
It would appear everyone has a different way of doing things, even though we are all essentially trying to achieve the same thing. I've blogged this topic to try and get some feedback on this from other people and see if there's any general consensus. Feel free to mention it on your own blogs

check for unvared variables in a cfc

2006-08-09 Thread Russ
We have a bunch of CFC's with many methods which are persisted in the application scope. Some of these methods don't have all their variables var'ed, and I was wondering if there is a tool/piece of code that can check this for us. I could've sworn I came across it at one point, but can't seem to

Re: check for unvared variables in a cfc

2006-08-09 Thread Charlie Griefer
http://ray.camdenfamily.com/index.cfm/2006/7/20/Var-Scoping-Tool On 8/9/06, Russ [EMAIL PROTECTED] wrote: We have a bunch of CFC's with many methods which are persisted in the application scope. Some of these methods don't have all their variables var'ed, and I was wondering if there is a

Re: Catching cfhttp timeout

2006-08-09 Thread Denny Valliant
Yeah, I'm a little sick, but was gonna suggest the same thing. I don't use cflock around cfhttp requests, probably another instance of not following best practice. But for long running ones, I do have to set the page requesttimeout (RTO) higher. And for WIW, I think if you don't set RTO, it

RE: Scheduled tasks

2006-08-09 Thread Ben Forta
Undocumented, but try this ;-) cfschedule action=run task=__list --- Ben -Original Message- From: Everett, Al (NIH/NIGMS) [C] [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 09, 2006 2:38 PM To: CF-Talk Subject: Scheduled tasks Is there a way to programmatically get data from

Re: bulk registration of SQL Server datasources in CF Admin

2006-08-09 Thread Denny Valliant
Or use the Packaging Deployment option from the CF administrator. I like to back up the datasources and mapped folders and such every once in a while, just cuz it's so easy to restore them via that built in functionality. Much easier than copying xml files, if'n ya ask me. :D On 8/9/06, Jacob

RE: check for unvared variables in a cfc

2006-08-09 Thread Brad Wood
Please pardon my ignorance about this, but could someone please explain exactly what you are avoiding by varing all our variables in a CFC. What bad can come about by not doing that. Furthermore, when would you NOT want to var a variable in a CFC. I'm still kinda new to CFC's so I want to make

RE: check for unvared variables in a cfc

2006-08-09 Thread Munson, Jacob
If you have another variable with the same name as a CFC variable in the same scope, your CFC's variable values could 'bleed' into your other scope variable. If I understand it correctly, you only have to worry about it with variables in the 'variables' scope, or local variables in the CFC, not

OT: site that can't be copied

2006-08-09 Thread Bryan Stevenson
Hey All, A client passed this along to me... www.thescoutingnews.com Go to the site and then try and copy and paste anything form on that screenor anything on your computer PERIOD. If you view source you'll see some encrypted JS near the top. 1) view source 2) close that browser that had

RE: site that can't be copied

2006-08-09 Thread Ian Skinner
Hmmm, this was not very hard? The coming out party for the Texas hockey will be 2008. Texas could potentially have three WHL first round draft picks. The top end 1993 talent in Texas is world class. One player who will draw a lot of attention from scouts and recruiters is Stefan Noesen, a

RE: site that can't be copied

2006-08-09 Thread Brad Wood
Wait, I bet I know what this is-- Do they have a hidden text field, and they execute the copy command on it every so many milliseconds, so it overwrites your clipboard? I've seen that before and it drove me NUTS until I figured out what they were doing! ~Brad -Original Message- From:

RE: site that can't be copied

2006-08-09 Thread Mark Henderson
Ctrl-A still works. And I totally agree that taking control away from the user is a bad thing (in almost all instances). Mark -- This message has been scanned for viruses and dangerous content by ISPNZ's automated virus detection system, and is believed to be clean.

RE: site that can't be copied

2006-08-09 Thread Bobby Hartsfield
Control+A Control+C Control+V or just disable js ..:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 09, 2006 6:22 PM To: CF-Talk Subject: OT: site that can't be copied

Re: OT: site that can't be copied

2006-08-09 Thread Rey Bango
Here ya go: Returning to the Chicago Mission team was a simple no-brainer for John Doherty this season. The 1993 born right wing saw a ton of success with this team before and is looking for a big year again after the disappointment of Nationals last season. Just disable JavaScript and its

Re: site that can't be copied

2006-08-09 Thread Bryan Stevenson
Hmmm, this was not very hard? I didn't say actually getting the content was hard Ianthe point was what they are up to and asking the list if they think it's a bad idea. You can of course just view source and find the text you're after So far we've found this to be mostly IE

Re: site that can't be copied

2006-08-09 Thread Bryan Stevenson
Wait, I bet I know what this is-- Do they have a hidden text field, and they execute the copy command on it every so many milliseconds, so it overwrites your clipboard? I've seen that before and it drove me NUTS until I figured out what they were doing! ~Brad BINGO...at least that's part

Re: site that can't be copied

2006-08-09 Thread Bryan Stevenson
Control+A Control+C Control+V or just disable js ..:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield Not in IE I bet (well except for the disable JS part) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264

Re: OT: site that can't be copied

2006-08-09 Thread Bryan Stevenson
Here ya go: Returning to the Chicago Mission team was a simple no-brainer for John Doherty this season. The 1993 born right wing saw a ton of success with this team before and is looking for a big year again after the disappointment of Nationals last season. Just disable JavaScript and its

Re: CF ShopCart

2006-08-09 Thread Casey Dougall
I'm playing around with this for about 2 days now. Nothing in production but what I've found is good and bad. GOOD: Great functionality. About everything you would need in a shopping cart. Easy to manipulate around templates and stuff. Scripts are really well organized. Lots of payment gateways

Re: CF ShopCart

2006-08-09 Thread Casey Dougall
Also this is CF Shopkart not CF_ShopCart doesn't look like there are in business anymore. ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered

Re: site that can't be copied

2006-08-09 Thread Alan Rother
If you disable JS the site redirects you to a php page instructing you to enable JS What a tremendous waste of time, anyone who really wants to take content from them can obviously still do it... -- Alan Rother Macromedia Certified Advanced ColdFusion MX 7 Developer

Not receiving HOF Digest

2006-08-09 Thread j s
I'm experiencing problems receiving email from the list. I was getting them fine for while and all of the sudden it just stop. I entered another another email address and made it the primary but no success. Is anyone else experiencing this problem? Who can help at HOF?

  1   2   >