Re: Getting the value or innerHTML of an FCKEditor field using DO M

2006-12-29 Thread Robertson-Ravo, Neil (RX)
What does Firebug show it as? This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is confidential and may also be privileged. It

Re: multiple items with qty in form problem

2006-12-29 Thread James Holmes
What are the hidden inputs for? Anyway, since you have these: input name=quant_#getItems.xref_inv_id# type=text id=quant=#getItems.xref_inv_id# value=0 size=4 you can loop through them to get each value: cfloop collection=#FORM# item=CurrentFormField cfif CurrentFormField contains quant_ !---

Re: CFC vs Customtag performance.

2006-12-29 Thread Dan Singerman
Woah there Johnny Storm - give a guy a chance to do an update. Anyway - I have got to the bottom of things - it was the fact that I had debug turned on (although suppressed) that made the difference to the execution times. With debug now turned off I get: inline execution = 29 milliseconds

Re: CFC vs Customtag performance.

2006-12-29 Thread Jochem van Dieten
Dan Singerman wrote: Woah there Johnny Storm - give a guy a chance to do an update. When you post a question to a high volume mailinglist, you make sure that the next few hours you are available to provide follow-up. You don't go off and do something else while other people work on your

RE: Simple source control

2006-12-29 Thread Hugo Ahlenius
Claude, Even though you don't see the benefits of using full, concurrent, version control, maybe you should consider the the combined wisdom of developers through-out the ages (please study the evolution of version control from rcs and the like up to svn, through cvs, and further - arch, svk

RE: Query Problem

2006-12-29 Thread Bruce Sorge
OK, so I did not quite understand what I was doing. I thought that I was setting 100 cells, and the year range from 1920 - 2020 was 100 years; you see where I was going. So, then do I put 1920 in there then? I tried 2020 and of course it crated 2020 rows which sucked. Thanks -Original

RE: Javascript and Dynamic CF Forms

2006-12-29 Thread Che Vilnonis
Thanks. Works now. If I wasn't in such a rush, I would have saw the quotes myself. -Original Message- From: Charlie Griefer [mailto:[EMAIL PROTECTED] Sent: Thursday, December 28, 2006 5:26 PM To: CF-Talk Subject: Re: Javascript and Dynamic CF Forms sorry. my bad. remove the quotes

Re: Query Problem

2006-12-29 Thread James Holmes
OK, so you have this: cfset yearQuery = QueryNew(year_num, Integer) cfset newRow = QueryAddRow(yearQuery, 100) cfloop index=year_number from=1920 to=2020 cfset yearnumber[year_number] = year_number cfset temp = QuerySetCell(yearQuery,year_num,#yearnumber[year_number]#,#year_number#) /cfloop

RE: cfqueryparam DECREASES performance?

2006-12-29 Thread Porter, Benjamin L.
CFQueryParam can indeed decrease performance. If you look at what happens when you use CFQueryParam versus just passing in variables it makes sense. CFQueryParam transforms any passed variables into bind variables. In MSSQL it is the same as declaring a variable, setting it and then using that in

RE: cfqueryparam DECREASES performance?

2006-12-29 Thread Porter, Benjamin L.
Ok so you can't attach files. cfsilent cfparam name=attributes.value / !--- type of bind variable value must equate to --- cfparam name=attributes.cfsqltype default=CF_SQL_CHAR / !--- length of string in value attribute --- cfparam

RE: Getting the value or innerHTML of an FCKEditor field using DO M

2006-12-29 Thread Porter, Benjamin L.
I ran into the same issue. This is used by a another window that is opened and updates that field. You could probably modify it to work for you. function getEditorContent(instanceName) { editor_frame = opener.document.getElementById(instanceName+'___Frame');

RE: Getting the value or innerHTML of an FCKEditor field using DOM

2006-12-29 Thread Porter, Benjamin L.
I ran into the same issue. Here are a couple javascript functions used by another window that is opened and updates that field. You could probably modify it to work for you. function getEditorContent(instanceName) { editor_frame =

RE: Getting the value or innerHTML of an FCKEditor field using DO M

2006-12-29 Thread Andy Matthews
Good thoughtI haven't checked it. !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED]

Re: cfqueryparam DECREASES performance?

2006-12-29 Thread Jochem van Dieten
Porter, Benjamin L. wrote: SELECT Id, Description FROM Product WHERE ProductID = 2 VS (with query param ) DECLARE @P1 int SET @P1 = 2 SELECT Id, Description FROM Product WHERE ProductID

RE: cfqueryparam DECREASES performance? (To be selectable in CF8?)

2006-12-29 Thread Gaulin, Mark
I thought I saw somewhere that the next version of CF (CF8?) would indeed allow the use of cfqueryparam without forcing the conversion of the sql to a prepared statement, which would also allow it to be used with the cachedwithin option. I don't recall where I read that, so if someone in the know

RE: cfqueryparam DECREASES performance?

2006-12-29 Thread Porter, Benjamin L.
MSSQL 2000 Data direct driver 3.4 with the standard jdbc.sqlserver.SQLServerDriver. -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Friday, December 29, 2006 7:33 AM To: CF-Talk Subject: Re: cfqueryparam DECREASES performance? Porter, Benjamin L. wrote:

Re: CFMX on Apache 2.2 on Cygwin?

2006-12-29 Thread Damien McKenna
On 12/28/06 5:22 PM, Adrian Moreno wrote: I've had CFMX 6.1 running on both Apache 2 and JBoss on Cygwin for development. Awesome, just what I wanted to know. If you're going to use Apache 2.2, make sure you read this TechNote as there's a newer connector than the one that ships with the

Re: CFMX on Apache 2.2 on Cygwin?

2006-12-29 Thread Damien McKenna
On 12/28/06 8:43 PM, Eric Haskins wrote: I have Dev edition running on XAMPP (apachefriends.org) which runs Apache 2.2 Apache on Windows is different to Apache on Cygwin, but thank you for replying. --  Damien McKenna - Web Developer [EMAIL PROTECTED] The Limu Company -

Re: CFMX on Apache 2.2 on Cygwin?

2006-12-29 Thread Damien McKenna
On 12/28/06 11:46 PM, Jacob Munson wrote: Ok, I have to ask. Why? Apache runs perfectly well under Windows, why would you want to run it in a Unix emulator? I'm sure you've got a good reason, I'm just curious what it is. I was figuring that it might be easier to manage, given I'll be

RE: cfqueryparam DECREASES performance?

2006-12-29 Thread Richard Kroll
The SQL output by a query using cfqueryparam is a prepared statement. He was suggesting that you compare the execution plan using cfqueryparam vs. not using it to see what the difference is. Maybe I'm looking in the wrong place then. I know I can use MSSQL's SQL Management Studio to place

RE: cfqueryparam DECREASES performance?

2006-12-29 Thread Gaulin, Mark
You can use SQL Profiler to view execution plans. -Original Message- From: Richard Kroll [mailto:[EMAIL PROTECTED] Sent: Friday, December 29, 2006 10:26 AM To: CF-Talk Subject: RE: cfqueryparam DECREASES performance? The SQL output by a query using cfqueryparam is a prepared

Re: CFMX on Apache 2.2 on Cygwin?

2006-12-29 Thread Jacob Munson
Actually use of Cygwin started from a need for a good way to SSH into the server and to have a full shell environment. It is a good point, though, maybe I should reconsider.. What's wrong with Putty? -- My Sites: http://www.techfeed.net/blog/ http://www.cfquickdocs.com/

Re: CFMX on Apache 2.2 on Cygwin?

2006-12-29 Thread Damien McKenna
On 12/29/06 10:44 AM, Jacob Munson wrote: Actually use of Cygwin started from a need for a good way to SSH into the server and to have a full shell environment. It is a good point, though, maybe I should reconsider.. What's wrong with Putty? PuTTY is an SSH client, not a server. I need a

Re: Getting the value or innerHTML of an FCKEditor field using DOM

2006-12-29 Thread michael acadia
OK, maybe I shouldn't have said you need to use the FCKeditorAPI, but since it's built-in to FCKeditor and does exactly what you need, it might be easier than writing your own custom functions. See: http://wiki.fckeditor.net/Developer%27s_Guide/Javascript_API There are a number of methods in

RE: CFMX on Apache 2.2 on Cygwin?

2006-12-29 Thread Jeff Garza
Have you looked at some of the windows implementations of SSH? A quick google search turned up a lot of options... -Original Message- From: Damien McKenna [mailto:[EMAIL PROTECTED] Sent: Friday, December 29, 2006 8:51 AM To: CF-Talk Subject: Re: CFMX on Apache 2.2 on Cygwin? On

Re: CFMX on Apache 2.2 on Cygwin?

2006-12-29 Thread Damien McKenna
On 12/29/06 11:09 AM, Jeff Garza wrote: Have you looked at some of the windows implementations of SSH? A quick google search turned up a lot of options... Why pay for an ssh service when Cygwin is free? --  Damien McKenna - Web Developer [EMAIL PROTECTED] The Limu Company -

Re: Query Problem

2006-12-29 Thread Bruce Sorge
That did it. Thanks. On 12/29/06, James Holmes [EMAIL PROTECTED] wrote: OK, so you have this: cfset yearQuery = QueryNew(year_num, Integer) cfset newRow = QueryAddRow(yearQuery, 100) cfloop index=year_number from=1920 to=2020 cfset yearnumber[year_number] = year_number cfset temp =

RE: CFMX on Apache 2.2 on Cygwin?

2006-12-29 Thread Dave Watts
Why pay for an ssh service when Cygwin is free? The reason I bought VShell, Van Dyke Software's SSH server, is because it integrates well with Windows (and Windows security). Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber

RE: CFMX on Apache 2.2 on Cygwin?

2006-12-29 Thread Dave Watts
I was figuring that it might be easier to manage, given I'll be running other tools under Cygwin. Actually use of Cygwin started from a need for a good way to SSH into the server and to have a full shell environment. It is a good point, though, maybe I should reconsider.. I think that

RE: cfqueryparam DECREASES performance? (To be selectable in CF8? )

2006-12-29 Thread Dave Watts
I thought I saw somewhere that the next version of CF (CF8?) would indeed allow the use of cfqueryparam without forcing the conversion of the sql to a prepared statement, which would also allow it to be used with the cachedwithin option. I don't recall where I read that, so if someone in

Re: receive/read fax documents via CF

2006-12-29 Thread Bryan Stevenson
Bryan, It seems as if you were doing something very similar (found this on Google: http://www.houseoffusion.com/groups/CF-Talk/thread.cfm/threadid:44779 ) Yep...and if ya caught the part about Adobe LiveCycle costs you'll see why we bailed on it ;-) There are many barcode reading utilities

Re: CFMX on Apache 2.2 on Cygwin?

2006-12-29 Thread Jacob Munson
What's wrong with Putty? PuTTY is an SSH client, not a server. I need a server. Oh, sorry. I thought you were using Cygwin as an ssh client, not a server. :) -- My Sites: http://www.techfeed.net/blog/ http://www.cfquickdocs.com/ http://cfformprotect.riaforge.org/

CFID and CFToken

2006-12-29 Thread Cutter (CFRelated)
Does anyone know of a way to programmatically add the CFID and CFToken variables to every link within a rendered page (if needed)? Links, form actions, etc., via some regex or something. Cutter ~| Create robust enterprise, web

RE: CFID and CFToken

2006-12-29 Thread Adkins, Randy
Well not really with CF Code but why not use the Search/Replace function within HomeSite/DW/ or Eclipse and update the pages that way? -Original Message- From: Cutter (CFRelated) [mailto:[EMAIL PROTECTED] Sent: Friday, December 29, 2006 1:00 PM To: CF-Talk Subject: CFID and CFToken

HostMySite Issue

2006-12-29 Thread Mary Jo Sminkey
I recently moved my site to HostMySite and am now having major problems as a result. Here's the issue: I use a cfcontent tag to send downloaded software down to the client, as is commonly done so the file can be kept in a secure location. The file is around 10 megs so can take anywhere from

Re: CFID and CFToken

2006-12-29 Thread Christopher Jordan
I'm not sure why you'd want to do that, (and there may be security risks in doing so), but the CFID and CFToken are typically stored in the cookie scope. You could get them from there to add them to all your links. Cheers, Chris Cutter (CFRelated) wrote: Does anyone know of a way to

RE: CFID and CFToken

2006-12-29 Thread Snake
Checkout UrlSessionFormat() Russ -Original Message- From: Cutter (CFRelated) [mailto:[EMAIL PROTECTED] Sent: 29 December 2006 18:00 To: CF-Talk Subject: CFID and CFToken Does anyone know of a way to programmatically add the CFID and CFToken variables to every link within a rendered

RE: CFID and CFToken

2006-12-29 Thread Ben Nadel
Can you wrap all links in some sort of method call.. Something like: SessionUrl( index.cfm. ) And have that automatically add the CFID / CFTOKEN? Or are you talking about a search / replace like someone else mentioned? .. Ben Nadel Certified Advanced ColdFusion MX7

Re: CFID and CFToken

2006-12-29 Thread Christopher Jordan
Wait... they're in the cookie scope on my box because we're putting them there. They live in the session scope. Cheers, Chris Cutter (CFRelated) wrote: Does anyone know of a way to programmatically add the CFID and CFToken variables to every link within a rendered page (if needed)? Links,

RE: HostMySite Issue

2006-12-29 Thread Ben Nadel
Mary Jo, As a work around, you might want to consider copying the file to a random directory (create one on the fly via UUID or something) then CFLocat the user to that directory. Then maybe once a day or something, programmatically go through and delete all those directories???

Re: CFID and CFToken

2006-12-29 Thread Christopher Jordan
Why couldn't you do it with CF Code? Well, I guess if he's creating all his HTML by hand and just using CF for the back end... otherwise, you'd do it when CF is creating the page. CFOutput a href=somepage.cfm?CFID=#Session.CFID#CFTOKEN=#Session.CFToken#MyLink/a /CFOutput What's wrong with

RE: CFID and CFToken

2006-12-29 Thread Adkins, Randy
Nothing wrong with it but I got out the message was he was wanting to update all the pages to use the variables. So instead of opening and changing a page one at a time, to do a Search/Replace. -Original Message- From: Christopher Jordan [mailto:[EMAIL PROTECTED] Sent: Friday, December

RE: HostMySite Issue

2006-12-29 Thread Brad Wood
Scorpio server monitoring wouldn't necessarily alleviate this. The 50 second rule is something Host my site has decided upon and SeeFusion is simply the tool they are enforcing it with. While can't speak for the business rules of HMS, and I can verify that it is very easy to specify exception

Cold Fusion for small IntraNet

2006-12-29 Thread coldfusion . developer
I've read about a FREE product that is very much like Cold Fusion but I forget the name of it. I'm lookiing for a free peice of software for a small IntraNet. Thanks D ~| Create robust enterprise, web RIAs. Upgrade integrate

Re: Cold Fusion for small IntraNet

2006-12-29 Thread Rey Bango
Its either BlueDragon (www.newatlanta.com) or Ralio (http://www.railo.ch/en/index.cfm). Rey [EMAIL PROTECTED] wrote: I've read about a FREE product that is very much like Cold Fusion but I forget the name of it. I'm lookiing for a free peice of software for a small IntraNet. Thanks D

RE: cfqueryparam DECREASES performance? (To be selectable in CF8? )

2006-12-29 Thread Gaulin, Mark
I can think of one *huge* reason where CFQUERYPARAM would be useful... For parameter validation to prevent SQL injection attacks. I would love to be able to tell people that they should *always* use CFQUERYPARAM, but I can't because there are times when it will break existing code (by disabling

Re: Cold Fusion for small IntraNet

2006-12-29 Thread Josh Nathanson
Also there is the mysterious Smith - some tags aren't supported though. http://www.smithproject.org -- Josh - Original Message - From: Rey Bango [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Friday, December 29, 2006 10:52 AM Subject: Re: Cold Fusion for small IntraNet

Re: HostMySite Issue

2006-12-29 Thread Bryan Stevenson
long. Convincing HMS of that is another story. I am a little surprised they would be so hard headed about it. As am I. We finally gave up on our hosting company of 8 years a month or so backwe are now moving ALL of our clients to HostMySite (and out company domain has already moved).

Best book for PostgreSQL?

2006-12-29 Thread Damien McKenna
Anyone have any recommendations for a book to learn PostgreSQL from? I'm thinking intermediate-to-advanced usage, everything from server management to custom datatypes, stored procedures, etc. There's a book due in March that covers usage on Windows

Re: HostMySite Issue

2006-12-29 Thread Mary Jo Sminkey
Scorpio server monitoring wouldn't necessarily alleviate this. The 50 second rule is something Host my site has decided upon and SeeFusion is simply the tool they are enforcing it with. I meant more in terms of not *needing* to use something like SeeFusion, which allows the host to be so

Re: cfqueryparam DECREASES performance? (To be selectable in CF8?)

2006-12-29 Thread Jochem van Dieten
Gaulin, Mark wrote: I thought I saw somewhere that the next version of CF (CF8?) would indeed allow the use of cfqueryparam without forcing the conversion of the sql to a prepared statement IIRC JDBC does not support that so I doubt Adobe will add that to CF. But that does not mean that

Re: Best book for PostgreSQL?

2006-12-29 Thread Damien McKenna
To answer my own question, I'm probably going to go to a brick-n-mortar book store and compare these two: Beginning Databases with PostgreSQL: From Novice to Professional, Second Edition (ISBN: 1-59059-478-9) http://www.apress.com/book/bookDisplay.html?bID=424 PostgreSQL, Second Edition (ISBN:

Re: CFID and CFToken

2006-12-29 Thread Cutter (CFRelated)
Here's the issue: Shared code base utilized by 1400+ sites and we're tracking stats (users to sessions, etc). To properly track sessions among those who do not have cookies enabled (and there are many) we would need to pass CFID/CFToken to each page request. This requires us to change 7,000+

Re: CFID and CFToken

2006-12-29 Thread Christopher Jordan
Well then... hm... some sort of search/replace would be good. You could checkout a program called NoteTab Light. It has a powerful search and replace capability which includes the ability to use regular expressions. Chris Cutter (CFRelated) wrote: Here's the issue: Shared code base utilized

RE: HostMySite Issue

2006-12-29 Thread Brad Wood
Well, that's good to know at least. HMS has been telling me there is no way at all to override the setting. Yeah, that's crap. Ask to speak with a manager if they tell you that again. SeeFusion lets you exclude URL substrings. Here is a quote from the configuration interface: 'A

Re: HostMySite Issue

2006-12-29 Thread Mary Jo Sminkey
'A space-delimited list of URL substrings to ignore for this rule. For example, to exclude longreport.cfm and all files in the /batchjobs/ folder, type: longreport.cfm /batchjobs/' But can you ignore based on querystrings? My software is Fusebox-based, so pretty much everything runs through the

RE: Cold Fusion for small IntraNet

2006-12-29 Thread Rick Faircloth
Check out Coral Web Builder at www.pcaonline.com, too. According to information I got from the company, it takes the place of CF server and you can also deploy it on client machines, via CD with your apps, etc. I'm going to give it a try soon. Rick -Original Message- From: Rey Bango

RE: HostMySite Issue

2006-12-29 Thread Brad Wood
'A space-delimited list of URL substrings to ignore for this rule. For example, to exclude longreport.cfm and all files in the /batchjobs/ folder, type: longreport.cfm /batchjobs/' But can you ignore based on querystrings? My software is Fusebox-based, so pretty much everything runs through the

Hey Intermedia, Happy Frickin' New Year!

2006-12-29 Thread Ray Champagne
So…we got into the office today to find an email message stating that all FTP and login passwords have been changed for all of our accounts at Intermedia “for stronger security”. With no prior warning. Yep, that’s just effing wonderful, you pricks, now I have applications that are crashing on

RE: Hey Intermedia, Happy Frickin' New Year!

2006-12-29 Thread Ray Champagne
That was supposed to go to CF-Comm. Sorry for the OT post. -Original Message- From: Ray Champagne [mailto:[EMAIL PROTECTED] Sent: Friday, December 29, 2006 4:04 PM To: CF-Talk Subject: Hey Intermedia, Happy Frickin' New Year! So…we got into the office today to find an email

Re: HostMySite Issue

2006-12-29 Thread Robert Mack
HMS makes *NO* exceptions to the 50 second rule, even for rarely used administrative templates. This basically forces you off their shared server if you ever need any template to run more than 50 seconds. I had to spring for a $1,600 VPS to keep my site alive. While this has been a giant pain

Re: Hey Intermedia, Happy Frickin' New Year!

2006-12-29 Thread Will Tomlinson
That was supposed to go to CF-Comm. Sorry for the OT post. Sounds like this post belongs here too. Will ~| Create robust enterprise, web RIAs. Upgrade integrate Adobe Coldfusion MX7 with Flex 2

RE: HostMySite Issue

2006-12-29 Thread Brad Wood
Well, I suppose it is their prerogative, however to flat out tell a customer that, there is no way to override that setting is lying. I HATE it when customer service tells me they can't doing something when what they really mean is they aren't allowed or choose not to allow for it to happen.

RE: Hey Intermedia, Happy Frickin' New Year!

2006-12-29 Thread Brad Wood
Sounds like they got hacked and are trying to cover up/prevent access of compromised accounts. ~Brad -Original Message- From: Ray Champagne [mailto:[EMAIL PROTECTED] Sent: Friday, December 29, 2006 3:04 PM To: CF-Talk Subject: Hey Intermedia, Happy Frickin' New Year! So...we got into

Re: HostMySite Issue

2006-12-29 Thread Bryan Stevenson
$1600 VPS...what the hell is that running??? I assume it's a tad more than the standard $45-$150 VPS is 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: [EMAIL PROTECTED] web:

Re: HostMySite Issue

2006-12-29 Thread Mary Jo Sminkey
HMS makes *NO* exceptions to the 50 second rule, even for rarely used administrative templates. This basically forces you off their shared server if you ever need any template to run more than 50 seconds. I had to spring for a $1,600 VPS to keep my site alive. Sounds like it's not worth my

Re: HostMySite Issue

2006-12-29 Thread Mary Jo Sminkey
Well, I suppose it is their prerogative, however to flat out tell a customer that, there is no way to override that setting is lying. I HATE it when customer service tells me they can't doing something when what they really mean is they aren't allowed or choose not to allow for it to happen. I

Re: HostMySite Issue

2006-12-29 Thread Mary Jo Sminkey
Yes, it is possible. I use Fusebox, and had to figure out myself how to do it. The trick is to use a method SeeFusion makes available called setRequestName(). Thanks for sharing the information! At least I have some ammunition to use with them and show that it would be easy for them to allow

Re: Best book for PostgreSQL?

2006-12-29 Thread Jordan Michaels
Hi Damien, If it wouldn't be too much trouble, would you mind posting what you find? I'm very interested in this as well and just haven't had the opportunity to do my own research. The documentation on the PostgreSQL website is very good, but sometimes it's just nice to have a good book about

Re: HostMySite Issue

2006-12-29 Thread Jordan Michaels
Robert Mack wrote: I had to spring for a $1,600 VPS to keep my site alive. For $100 more, you could get a Dedicated Server with CFMX for that price. Seems kind of spendy to put that kind of money into a VPS. Warm regards, Jordan Michaels Vivio Technologies http://www.viviotech.net/ Blue Dragon

Reactor Issues

2006-12-29 Thread Kyle Hayes
Good Afternoon, I hope I am not posting something that has been posted a billion times, but here we are. I am not sure why I am having these issues as I have implement ColdSpring and Reactor in my projects together before. I am also using Mach-ii as my OO framework. I am getting the

Admin Panel Question

2006-12-29 Thread Steve LaBadie
I created an admin panel for a client with the typical add, delete, modify features. My client has a news section on their website along with an archive section for old news. My client wants the old news to be placed in the archive section when it is deleted from the current news page through

Re: HostMySite Issue

2006-12-29 Thread Bryan Stevenson
Let's all remember that the techs giving out the all or nothing statements may very well have been told by upper management that it is not possible. I would not expect them all to look into the validity of that statement. I can completely understand their positionkeep the shared hosting

Re: Hey Intermedia, Happy Frickin' New Year!

2006-12-29 Thread Josh Nathanson
Sounds like they got hacked and are trying to cover up/prevent access of compromised accounts. I bet that's exactly what happened, or maybe they have a disgruntled ex-employee with permissions. They must know they would get a rash of shit from their customers, so it wouldn't be in their

Re: Best book for PostgreSQL?

2006-12-29 Thread David Livingston
This might sound a little funny but I have found the online docs to be the most useful over all of the books I have bought. Of course maybe I just bought bad books. ;) http://www.postgresql.org/docs/ Dave On Dec 29, 2006, at 1:03 PM, Damien McKenna wrote: Anyone have any recommendations for

Re: HostMySite Issue

2006-12-29 Thread Bryan Stevenson
Robert Mack wrote: I had to spring for a $1,600 VPS to keep my site alive. For $100 more, you could get a Dedicated Server with CFMX for that price. Seems kind of spendy to put that kind of money into a VPS. Warm regards, Jordan Michaels OK...you both must be talking yearly costs

Re: Admin Panel Question

2006-12-29 Thread Bruce Sorge
Sure. When they delete the article I assume you are passing through some unique ID number. Just take that ID number, run an insert query that does a select sub query of the live article and insert it into the archive table, then delete the current one. Make sure to wrap it all in a CFTRANSACTION

RE: HostMySite Issue

2006-12-29 Thread Brad Wood
OMG they misspelled ColdFusion. LOL! There's no space!!! (sorry, it's Friday...) ~Brad -Original Message- From: Mary Jo Sminkey [mailto:[EMAIL PROTECTED] Sent: Friday, December 29, 2006 2:45 PM To: CF-Talk Subject: Re: HostMySite Issue Well, I suppose it is their prerogative,

What do you name your status variable on db calls?

2006-12-29 Thread David Gardner
Looking for some ideas here. I'm starting up a new system and am wondering on a naming convention. When you make a call to a db stored proc/query/whatever, and you also return a variable that indicates the status of that call, what do you name that parameter/variable? I like the prefix concept

Re: HostMySite Issue

2006-12-29 Thread Mary Jo Sminkey
I can completely understand their positionkeep the shared hosting running smooth...and it does. If you need heavier processing...pay for it. Yes, but breaking *normal* ColdFusion functions in the process is a bit harsh, IMO. Their online support pages are lightyears ahead of the host we

Re: SPAM-LOW: Re: HostMySite Issue

2006-12-29 Thread Bryan Stevenson
I can completely understand their positionkeep the shared hosting running smooth...and it does. If you need heavier processing...pay for it. Yes, but breaking *normal* ColdFusion functions in the process is a bit harsh, IMO. Fair enoughbut there is only one way to keep idiots (not

Re: Admin Panel Question

2006-12-29 Thread Christopher Jordan
You could also perhaps have a column in your news table that indicates whether an article is old or current. Then all you'd have to change is the value of one column for each article that gets deleted. Or maybe the extra column would just indicate that the article is archived. So the column

Re: Hey Intermedia, Happy Frickin' New Year!

2006-12-29 Thread Matt Robertson
Sounds like this post belongs here too. Yeah. Necessity or not, if you pull a stunt like that you call the troops back in, pay the overtime, field the support calls and do your best to clean up the mess you caused. -- [EMAIL PROTECTED] Janitor, The Robertson Team mysecretbase.com

Re: HostMySite Issue

2006-12-29 Thread Mary Jo Sminkey
Fair enoughbut there is only one way to keep idiots (not lumping you in that group) from writing crappy long running garbage and overriding the timeout with cfsetting and killing performance. Granted they are punishing the innocent on that onebut business is business...sometimes it

Re: Hey Intermedia, Happy Frickin' New Year!

2006-12-29 Thread Crow T. Robot
Amen to that. On 12/29/06, Matt Robertson [EMAIL PROTECTED] wrote: Sounds like this post belongs here too. Yeah. Necessity or not, if you pull a stunt like that you call the troops back in, pay the overtime, field the support calls and do your best to clean up the mess you caused. --

RE: CFID and CFToken

2006-12-29 Thread Snake
Because no everyone has cookies enabled. -Original Message- From: Christopher Jordan [mailto:[EMAIL PROTECTED] Sent: 29 December 2006 18:23 To: CF-Talk Subject: Re: CFID and CFToken I'm not sure why you'd want to do that, (and there may be security risks in doing so), but the CFID and

RE: HostMySite Issue

2006-12-29 Thread Snake
We also apply max timeouts with fusionreactor that causes similar problems, but if a client has a page that needs to run longer, we ad dit to the exclusion list. Perhaps u can ask HMS to do the same. Russ -Original Message- From: Mary Jo Sminkey [mailto:[EMAIL PROTECTED] Sent: 29

Re: HostMySite Issue

2006-12-29 Thread Mary Jo Sminkey
We also apply max timeouts with fusionreactor that causes similar problems, but if a client has a page that needs to run longer, we ad dit to the exclusion list. Perhaps u can ask HMS to do the same. I'm trying! But as others in the thread have mentioned, this seems to be their policy on shared

RE: HostMySite Issue

2006-12-29 Thread Snake
While I understand their need ot do this (we do it too), 50 seconds is just too low. Russ -Original Message- From: Mary Jo Sminkey [mailto:[EMAIL PROTECTED] Sent: 29 December 2006 22:13 To: CF-Talk Subject: Re: HostMySite Issue We also apply max timeouts with fusionreactor that causes

Re: HostMySite Issue

2006-12-29 Thread James Holmes
All I can suggest, if they won't make an exception, is to find a different provider that is a better fit for you. I've been at the other end of this problem at HMS, where I've had sites that won't stay up because someone else is taking out the server with long running templates or some other code

OT: CD Storage and Read Device

2006-12-29 Thread Rick Faircloth
Hi, all. I thought perhaps one of you might know of a device like this. I've searched the Internet many times looking for one and can't locate one.not even sure one exists. I'm looking for a CD/DVD storage unit that hooks into a computer and not only allows info to be entered into a database so

Re: HostMySite Issue

2006-12-29 Thread Jim Wright
I know that there are quite a few HMS users on this list, and I would say they have probably benefited from the recommendations they have received from users here. It might help if users of their service from this list were to inform them of our feelings on this issue...something to the

Re: HostMySite Issue

2006-12-29 Thread Mary Jo Sminkey
Even if your need is legit, you must be able to see what their problem is: let's say (for example) there's 10 threads available to CF and someone's downloads take 5 minutes each. That means that we only need 10 people to do those downloads at the same time and the server will be completely

Re: OT: CD Storage and Read Device

2006-12-29 Thread Kyle Hayes
Though a funny question to ask on Cf-talk, I have nonetheless found the closest thing to what you are requiring. However, it seems that it requires Linux: http://users.tkk.fi/~shaavist/slink/ There you go, Kyle On Dec 29, 2006, at 4:29 PM, Rick Faircloth wrote: Hi, all. I thought

RE: OT: CD Storage and Read Device

2006-12-29 Thread Rick Faircloth
Strange question... I know... I'm just desperate. Thanks for the info. Rick -Original Message- From: Kyle Hayes [mailto:[EMAIL PROTECTED] Sent: Friday, December 29, 2006 8:18 PM To: CF-Talk Subject: Re: OT: CD Storage and Read Device Though a funny question to ask on Cf-talk, I have

Re: CFID and CFToken

2006-12-29 Thread John Cox
Does anyone know of a way to programmatically add the CFID and CFToken variables to every link within a rendered page (if needed)? Links, form actions, etc., via some regex or something. I believe URLSessionFormat is what you are looking for.

Re: Best book for PostgreSQL?

2006-12-29 Thread Damien McKenna
On 12/29/06 5:09 PM, David Livingston wrote: This might sound a little funny but I have found the online docs to be the most useful over all of the books I have bought. I don't always want to carry around my PowerMac + 19 monitor to read a book, plus its tricky to hold the screen steady while