Re: FREE Homesite/CF Studio CFC VTML Generator

2005-11-27 Thread Stan Winchester
DK, I added more instructions in the thread titled "Install the Wizard" found at: http://www.aftershockweb.net/forums/messages.cfm/ThreadId/53/ I hope this helps you. Stan >so I unzip it to /custom and then what? forgive me if the obvious is >alluding me this evening, but how to kick off the wi

RE: Apache Virtual Hosts

2005-11-27 Thread Dave Watts
> I'm confused by CF admin though. Missing template handler > says it's only to do with cfincludes, so I assume I use the > site wide handler? No, I'm pretty sure you want to use the missing template handler. The site-wide error handler is used for actual errors within your scripts. > And where

Re: Apache Virtual Hosts

2005-11-27 Thread James Holmes
Yes, the sitewide handler is the one. The file can go anywhere you want as I recall. On 11/28/05, Jennifer Gavin-Wear <[EMAIL PROTECTED]> wrote: > Hi James, > > Thanks, I think this is what I need. > > I'm confused by CF admin though. Missing template handler says it's only to > do with cfinclude

RE: Apache Virtual Hosts

2005-11-27 Thread Jennifer Gavin-Wear
Hi James, Thanks, I think this is what I need. I'm confused by CF admin though. Missing template handler says it's only to do with cfincludes, so I assume I use the site wide handler? And where do I put the handler file when I have so many sites running, please? Jenny -Original Message---

Re: FREE Homesite/CF Studio CFC VTML Generator

2005-11-27 Thread Douglas Knudsen
so I unzip it to /custom and then what? forgive me if the obvious is alluding me this evening, but how to kick off the wizard? DK On 11/26/05, Stan Winchester <[EMAIL PROTECTED]> wrote: > I just put a FREE new HomeSite+/ColdFusion Studio Wizard that builds a CFC > based CRUD application. Please

Re: Custom Error Pages

2005-11-27 Thread James Holmes
The hosting company would have to edit the missing template handler to check to see if the URL was from your site (e.g. by checking the CGI.HTTP_HOST variable) and redirect as appropriate. On 11/28/05, ColdFusion <[EMAIL PROTECTED]> wrote: > Is there anyway to get calls to CF pages to be redirecte

RE: Custom Error Pages

2005-11-27 Thread ColdFusion
Is there anyway to get calls to CF pages to be redirected to the error Pages created without using the CF Administrator since it is a Shared hosting environment? -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent: Sunday, November 27, 2005 8:39 PM To: CF-Talk Subject:

RE: Apache Virtual Hosts

2005-11-27 Thread Bobby Hartsfield
Yeah, everything I've seen to work around it is more or less a hack rather than a fix. Your first solution seems to have the least room for error though and that's probably what I would do. ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Ja

RE: Apache Virtual Hosts

2005-11-27 Thread Bobby Hartsfield
It looks like Ray ran into this a while back too. Maybe he'll be able to offer something up when he reads this. http://ray.camdenfamily.com/index.cfm?mode=entry&entry=153FE53E-F5A0-F2C5-D9 B1FE71913F792B ps... you'll find some of those scary url rewrites on that page as well. ..:.:.:.:.:.:.:.:.

Re: Apache Virtual Hosts

2005-11-27 Thread James Holmes
The fix is to make Apache check for missing files before passing control to CF (it's another directive). The problem with this is that the servlet mappings for CFCHART graphing and other things then break, since the files to which those mappings correspond don't exist. On 11/28/05, Bobby Hartsfiel

RE: Apache Virtual Hosts

2005-11-27 Thread Bobby Hartsfield
That’s more or less what I was about to say. It seems that when the extension is cfm, CF takes over and coughs up its missing template handler. Without some *shivers* url rewrites in apache, I don’t see (right off) any other way to do it than what James said. But it should definitely work. ..:.:.

Re: Apache Virtual Hosts

2005-11-27 Thread James Holmes
All CF pages share the one common missing template handler, not the Apache one specified in the VHost. If you have control over the server, create your own missing tempalte handler in which you examine the CGI.HTTP_HOST variable; this says which vhost domain was called and you can cflocation as ne

RE: Apache Virtual Hosts

2005-11-27 Thread Bobby Hartsfield
Heh... try rubbish.jsp :) ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Jennifer Gavin-Wear [mailto:[EMAIL PROTECTED] Sent: Sunday, November 27, 2005 8:34 PM To: CF-Talk Subject: RE: Apache Virtual Hosts I tried it on a devel site I'm u

Re: Custom Error Pages

2005-11-27 Thread James Holmes
All CF pages on the server share the same CF missing template handler (if one has been specified). The information you received was correct - only non CF requests will use the custom error handler you specify. On 11/28/05, ColdFusion <[EMAIL PROTECTED]> wrote: > In a shared hosting environment whe

RE: Apache Virtual Hosts

2005-11-27 Thread Bobby Hartsfield
Weird! Heh What happens if you use this instead (and write a 404.html) ErrorDocument 404 /404.html Does it switch them? That wouldn’t fix it... just curious on that... I'm digging for an answer though. ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Messag

RE: Apache Virtual Hosts

2005-11-27 Thread Jennifer Gavin-Wear
I tried it on a devel site I'm using. with http://sleev-it.fasttrackonline.co.uk/rubbish.html I get the 404 redirect just fine, and to a cfm page. with http://sleev-it.fasttrackonline.co.uk/rubbish.cfm I get a cf error and no redirect. Not having a problem with cfincludes, it's web page name chan

Custom Error Pages

2005-11-27 Thread ColdFusion
In a shared hosting environment where HELMs is used, you can establish custom error templates for 404 errors and others. Now if I want to redirect 404 errors to an error page such as: /errors/404.cfm That should be fine, right? Or does it need to be an HTM page? I was informed this: I think the

RE: Apache Virtual Hosts

2005-11-27 Thread Bobby Hartsfield
What do you mean that it handles all the non .cfm 404's.. it SHOULD by all right handle any 404 that the server coughs up on that virtual host's host header. (http://mysite.com/anything.cfm|htm|html|cgi|php| etc...) If you are getting a page connaot be display|found, check the error number to be s

RE: Apache Virtual Hosts

2005-11-27 Thread Jennifer Gavin-Wear
Hi Bobby, Thanks, cool .. it handles all the non .cfm 404's .. Any ideas on the .cfm side of things please? The CF docs refer to a missing template handler. I can see in cf admin where this is config'd. But I don't get how it works when there is more than one site running? Jenny -Original

Re: Is it ok to only allow jpeg's?

2005-11-27 Thread James Holmes
It does - most (not all) of the image custom tags or CFCs are using the native Java image manipulation classes already available to you in CF. On 11/28/05, Will Tomlinson <[EMAIL PROTECTED]> wrote: [snip] > Thanks bobby! I appreciate the input! Can't wait til CF has it all built-in. > :) -- CFA

RE: Apache Virtual Hosts

2005-11-27 Thread Bobby Hartsfield
It's been a while (and even then, most were done with the .htaccess file and allowoverides turned on) but have you tried just putting the ErrorDocument in your particular Virtaul host block... ServerName www.mysite.com ServerAdmin [EMAIL PROTECTED] DocumentRoot /path/to/www/mysite.com

RE: Apache Virtual Hosts

2005-11-27 Thread Jennifer Gavin-Wear
Or can it be done with a missing template handler? If so, I can only see how it could be done to have one file deal with the error handling for all sites, whereas I only want it done this way on the one site. -Original Message- From: Jennifer Gavin-Wear [mailto:[EMAIL PROTECTED] Sent: 28

OT: Apache Virtual Hosts

2005-11-27 Thread Jennifer Gavin-Wear
Very off topic here .. I'm running several sites on Apache 2 on Windows 2000. Having just updated a site I need to redirect 404 errors for those who have bookmarked old pages and are still trying to access them. Reading the docs it appears that directives can be placed inside the virtual host co

RE: Flash Remoting in multiple instances

2005-11-27 Thread Adrian Lynch
I'm not sure. It was in JRun admin that something was deleted. Ade -Original Message- From: Snake [mailto:[EMAIL PROTECTED] Sent: 27 November 2005 22:23 To: CF-Talk Subject: RE: Flash Remoting in multiple instances Are you saying, delete the vDIR that points to the default instance and

RE: Flash Remoting in multiple instances

2005-11-27 Thread Snake
Are you saying, delete the vDIR that points to the default instance and create one that points to another instance. If so, then that is basically what I have just said doesn't work. Falsh remoting only works if the JrunScripts vDIR is using the default instance. Using nay other instance doesn't wor

RE: Flash Remoting in multiple instances

2005-11-27 Thread Adrian Lynch
It was a long time ago but I remember someone mentioning something about this. I THINK the solution was to delete the default instance one and create them as needed. But I'd wait for someone else to confirm this just in case. Ade -Original Message- From: Snake [mailto:[EMAIL PROTECTED]

Flash Remoting in multiple instances

2005-11-27 Thread Snake
I have just noticed the following problem when using Multiple instances (CFMX7 multi-server). When using Flash remoting, it only works if the JrunScript virtual directory is pointing at the default instance connector folder. I.E. C:\jrun4\lib\wsconfig\1 If you use the connector folder for any ot

Re: SQL Server 2005 and CF?

2005-11-27 Thread Charlie Griefer
very cool. Checking 'em out now. Thanks Mark. On 11/27/05, Mark Fuqua <[EMAIL PROTECTED]> wrote: > Hey, > > There are two posts on: > > http://weblogs.macromedia.com/mxna/index.cfm?query=byCategory&categoryId=1&c > ategoryName=ColdFusion > > about this exact topic. Pretty timely eh? > > Mark >

RE: SQL Server 2005 and CF?

2005-11-27 Thread Mark Fuqua
Hey, There are two posts on: http://weblogs.macromedia.com/mxna/index.cfm?query=byCategory&categoryId=1&c ategoryName=ColdFusion about this exact topic. Pretty timely eh? Mark -Original Message- From: Dirk De Bock - Lists [mailto:[EMAIL PROTECTED] Sent: Sunday, November 27, 2005 10:00

RE: Is it ok to only allow jpeg's?

2005-11-27 Thread Bobby Hartsfield
If you're looking for alternative image tags... it's not free but worth every penny... imageCR3 from efflare. ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Sunday, November 27, 2005 1:41 PM

Re: SQL

2005-11-27 Thread Will Tomlinson
>heh. I don't think anybody can claim to be a real developer until >they've forgotten the WHERE clause at least once :) > Yeah but um... what about if ya forget the SELECT?? heehee! Will ~| Discover CFTicket - The leading Col

Re: Is it ok to only allow jpeg's?

2005-11-27 Thread Will Tomlinson
>I don’t see anything wrong with it. You can get just as good file size (if >not better in most cases) and definitely better quality out of a jpg. I tend >to use gifs ONLY when transparency is needed or maybe 1px x 1px gifs for >layout and png's only when the image needs to be partly see-through. O

Re: Is it ok to only allow jpeg's?

2005-11-27 Thread Will Tomlinson
Jen Jen, Thanks! Jared pointed me to alagad.com, which I remember peeps talkin' bout in here. Still deciding what I'm gonna do. Preesh, Will ~| Logware (www.logware.us): a new and convenient web-based time tracking applicati

RE: Is it ok to only allow jpeg's?

2005-11-27 Thread Jennifer Gavin-Wear
Hi Will, may well take a look at this, thanks for the link. I'm using image magik which supports jpg and gifs, and it's free. Jenny -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: 27 November 2005 16:27 To: CF-Talk Subject: OT: Is it ok to only allow jpeg's? I'

RE: SQL

2005-11-27 Thread Bobby Hartsfield
*real developer* lol ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Charlie Griefer [mailto:[EMAIL PROTECTED] Sent: Sunday, November 27, 2005 1:35 PM To: CF-Talk Subject: Re: SQL heh. I don't think anybody can claim to be a real develop

Re: SQL

2005-11-27 Thread Saturday (Stuart Kidd)
Hi Ade, Thanks for that, but is there a way to copy a whole row... say copy the whole particular row of a table by its ID and paste it into an empty row - therefore not having to copy all of the columns individually? Sort of like a copy and paste. Thanks, Saturday On 27 Nov 2005, at 18:3

Re: SQL

2005-11-27 Thread Charlie Griefer
heh. I don't think anybody can claim to be a real developer until they've forgotten the WHERE clause at least once :) On 11/27/05, Adrian Lynch <[EMAIL PROTECTED]> wrote: > Oh and don't forget the WHERE clause! :OD > > Ade > > -Original Message- > From: Adrian Lynch [mailto:[EMAIL PROTECT

RE: SQL

2005-11-27 Thread Adrian Lynch
Oh and don't forget the WHERE clause! :OD Ade -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED] Sent: 27 November 2005 18:31 To: CF-Talk Subject: RE: SQL INSERT INTO YourTable ( YourColumns, ..., ... ) SELECT YourColumns, ...,

RE: SQL

2005-11-27 Thread Adrian Lynch
INSERT INTO YourTable ( YourColumns, ..., ... ) SELECT YourColumns, ..., ... FROM YourTable -- For SQL Server SELECT @@IDENTITY YourNewID -- Or SELECT SCOPE_IDENTITY() YourNewID Ade -Original Message- From: Saturday (Stuart Kidd) [mailto:[E

RE: Is it ok to only allow jpeg's?

2005-11-27 Thread Bobby Hartsfield
I don’t see anything wrong with it. You can get just as good file size (if not better in most cases) and definitely better quality out of a jpg. I tend to use gifs ONLY when transparency is needed or maybe 1px x 1px gifs for layout and png's only when the image needs to be partly see-through. Other

SQL

2005-11-27 Thread Saturday (Stuart Kidd)
Hi guys, I have club events listed in a database. To make shorter work for promoters when they'd like to duplicate events is there a way to copy a row in ms-sql via CF and find the ID of that row? Thanks, Saturday ~| Di

OT: Is it ok to only allow jpeg's?

2005-11-27 Thread Will Tomlinson
I'm wrapping up the product display phase of my shopping cart. At first, I set it up to allow jpeg's, gif's, and png's, but then I ran across iEdit.cfc iEdit is really really nice and I love the way it works, but it only works with jpg's. Would it be appropriate to ONLY allow jpg's in this appli

Re: session load balancing [WAS Re: Pros/Cons Session vs Client scope]

2005-11-27 Thread Douglas Knudsen
I'll try...been a few months since I saw the issue. We have a JRun cluster of two instances ecah running CF6. A request for a graph in CF generates a swf and a graph id. The swf is requested via a call to /cfide/graph.cfm IIRC, with the graph id in the HTML on the resulting page. This graph id

Re: SQL Server 2005 and CF?

2005-11-27 Thread Dirk De Bock - Lists
I think the driver class name should be com.microsoft.sqlserver.jdbc.SQLServerDriver if you drop the jar in the cf lib dir you do not need to change the classpath - Original Message - From: "Charlie Griefer" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Sunday, November 27, 2005 1:36 PM Sub

RE: SQL Server 2005 and CF?

2005-11-27 Thread Peter Tilbrook
I don't think it supports CF yet. Tried in vain to get it to work with CF7.01. Like the new Enterprise Manager though but stuck with SQL Server 2000 for now it seems. -Original Message- From: Charlie Griefer [mailto:[EMAIL PROTECTED] Sent: Sunday, 27 November 2005 10:36 PM To: CF-Talk Su

SQL Server 2005 and CF?

2005-11-27 Thread Charlie Griefer
OS: WinXP Professional (SP2) CF: CFMX 6.1 Professional DB: SQL Server 2005 Express Having issues getting a DSN set up (without resorting to ODBC via the OS). Anybody successfully gotten this working? I downloaded the SQL Server 2005 JDBC Driver Beta 2 from http://www.microsoft.com/technet/prodte

RE: Monitor DSN

2005-11-27 Thread Adrian Lynch
Do a query, wrap in in cftry/cfcatch, in the catch, send an email. So something... Ade -Original Message- From: John Lucania [mailto:[EMAIL PROTECTED] Sent: 27 November 2005 03:34 To: CF-Talk Subject: Re: Monitor DSN Mike, Can you share your codes with me? jl On 11/26/05, Mike Chabot