Re: Can SQLServer Express do automated jobs unattended?

2008-03-04 Thread Mike Kear
Ah good thanks Dave. Just what i needed to know. Cheers Mike Kear Windsor, NSW, Australia Adobe Certified Advanced ColdFusion Developer AFP Webworks http://afpwebworks.com ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month On Tue, Mar 4, 2008 at 6:58 PM, Dave Watts [EMAIL PROTECTED]

Re: CFC, OOP I have another acronym for you.. WTF?

2008-03-04 Thread Tom Chiverton
On Monday 03 Mar 2008, Greg Morphis wrote: No, no aborts.. and yeah.. it returns something.. Something's wrong because like I said CF stops processing.. Do you have a per-application or server wide exception handler that could be swallowing the error it looks like it must be throwing ? --

Paging in a customtag

2008-03-04 Thread Tom King
Hi All, I've written a customtag to do paging; Basically, I can pass a recordcount in, and it'll output 1, 2, 3, 4, 5, 6, 7, - This works fine; However, I really need it to do this: 1, 2, 3, ... 8, 9 ,10 as the recordsets I'm now dealing with are getting quite big; Any one know how I

RE: refactoring a page to use paged results and possible impact o n Google rankings

2008-03-04 Thread Will Swain
Both possibly. The page is about 200k, so not massive but not small by any means. I've removed some of this by taking out some small gifs, to see if that makes a difference. But I think the main bottleneck is running over the records and outputting them. Rather like a large CFDUMP can slow the

Converting a CFSCRIPT function to a CFFUNCTION function

2008-03-04 Thread Don
Have a requirement to convert a function written with CFFUNCTION format into CFSCRIPT function format. Is there anything around that can automate this process? ~| Adobe® ColdFusion® 8 software 8 is the most important and

RE: Converting a CFSCRIPT function to a CFFUNCTION function

2008-03-04 Thread Dave Watts
Have a requirement to convert a function written with CFFUNCTION format into CFSCRIPT function format. Is there anything around that can automate this process? No, but if it's a single function it shouldn't take too long. However, CFSCRIPT doesn't support everything that CFFUNCTION can do.

Adding Extra Conditions to an INNER JOIN

2008-03-04 Thread Fawzi Amadu
I am trying to use INNER JOIN for my query and have additional conditions, what is the right way to add them? When I run the code below, I get the error shown. How do I get this to work? SELECT v.Party, SUM(v.Votes), s.ConstituencyNo ,c.ConstituencyName, c.RegionCode FROM VoteResults v INNER

RE: Adding Extra Conditions to an INNER JOIN

2008-03-04 Thread Dave Watts
I am trying to use INNER JOIN for my query and have additional conditions, what is the right way to add them? When I run the code below, I get the error shown. How do I get this to work? SELECT v.Party, SUM(v.Votes), s.ConstituencyNo ,c.ConstituencyName, c.RegionCode FROM VoteResults v

Re: refactoring a page to use paged results and possible impact on Google rankings

2008-03-04 Thread Tom Chiverton
On Monday 03 Mar 2008, Will Swain wrote: Any ideas on an answer to this? Will the Google ranking be affected? I'm kind of at a loss about this. I can't think of any reason at all why you'd be marked up or down. Many many other sites use paged result sets. -- Tom Chiverton Helping to

Advertising CF as a server side technology

2008-03-04 Thread Ali
Okay. This may look a little strange but I want to Advertise for CF not for money but because it rocks. Infact I want to introduce it to the hospitals and health center plus any application developers in health industry which I work in. Now people mostly use .Net or PHP to develope such

Re: CFC, OOP I have another acronym for you.. WTF?

2008-03-04 Thread Greg Morphis
Naaa.. I mean we do have an error template but it normally fires with errors.. If I misspell something on a .cfm page, it displays all the error info. I've just noticed that when there's something wrong within a CFC it just stops.. For example if I have a cfoutput#session.user.emplid#/cfoutput

Re: CFC, OOP I have another acronym for you.. WTF?

2008-03-04 Thread James Holmes
You have of course been deleting and re-creating the APPLICATION.userGateway object after you've been making these changes, right? On Tue, Mar 4, 2008 at 10:59 PM, Greg Morphis [EMAIL PROTECTED] wrote: Naaa.. I mean we do have an error template but it normally fires with errors.. If I misspell

Re: CFC, OOP I have another acronym for you.. WTF?

2008-03-04 Thread Greg Morphis
I have the timeout set for 30 seconds for testing... but as I said below, I wonder if created it twice once in the act_login.cfm page and once in the application.cfc file was causing the problems On Tue, Mar 4, 2008 at 8:05 AM, James Holmes [EMAIL PROTECTED] wrote: You have of course been

Feature Creep - Wants More Search Stuff ...

2008-03-04 Thread Les Mizzell
It's OK, when they add stuff outside the original site spec, they pay out the nose for it... Search feature on a site - mostly looks for keywords in the body copy from site pages, which is mostly contained in a database. Functionality is mostly a view or two in the database and then queries on

Re: Feature Creep - Wants More Search Stuff ...

2008-03-04 Thread Les Mizzell
Now they're asking - hey, when we see the search results, can we see the specific sentence that contained the keyword and highlight it? CF7 - by the way ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic

Re: Feature Creep - Wants More Search Stuff ...

2008-03-04 Thread C. Hatton Humphrey
If you were using verity it'd be easy - cfsearch name = search_name collection = collection_name category = category[,category2,...] categoryTree = tree_location status = type = criteria criteria = search_expression maxRows = number startRow = row_number suggestions = suggestion_option

RE: Adding Extra Conditions to an INNER JOIN

2008-03-04 Thread Dawson, Michael
Change your WHERE to an AND and it should work. Although, in this case, there is no benefit to putting the additional criteria within the INNER JOIN. You may as well just specify a WHERE clause. It does make sense, however, to specify additional criteia in an OUTER JOIN.

Re: Adding Extra Conditions to an INNER JOIN

2008-03-04 Thread Sonny Savage
I have to disagree with no benefit. You might be right in terms of performance, but having all the logic together improves readability/maintainability. On Tue, Mar 4, 2008 at 9:44 AM, Dawson, Michael [EMAIL PROTECTED] wrote: Change your WHERE to an AND and it should work. Although, in this

Re: CFC, OOP I have another acronym for you.. WTF?

2008-03-04 Thread Tom Chiverton
On Tuesday 04 Mar 2008, Greg Morphis wrote: I have the timeout set for 30 seconds for testing... but as I said below, I wonder if created it twice once in the act_login.cfm page and once in the application.cfc file was causing the problems It's possible you have a race condition, I suppose,

RE: Feature Creep - Wants More Search Stuff ...

2008-03-04 Thread Andy Matthews
Les... There's a highlight string method on cflib. I've used it before. -Original Message- From: Les Mizzell [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2008 8:27 AM To: CF-Talk Subject: Feature Creep - Wants More Search Stuff ... It's OK, when they add stuff outside the

Re: Feature Creep - Wants More Search Stuff ...

2008-03-04 Thread Les Mizzell
There's a highlight string method on cflib. I've used it before. Found it - I was working on a method to do this by scanning through the string to find the search term and then replacing it with the appropriate CSS highlight style The harder part is - out of a huge SQL text field, containing

RE: Feature Creep - Wants More Search Stuff ...

2008-03-04 Thread Andy Matthews
Do they really want the entire sentence containing the term, or would they be satisfied with just highlighting the search term itself? If they'd be okay with that, the method takes care of that for you. -Original Message- From: Les Mizzell [mailto:[EMAIL PROTECTED] Sent: Tuesday, March

CF8 datasource problem

2008-03-04 Thread Richard Meredith-Hardy
An ODBC connection to a SAGE line-100 accounts database works perfectly well in CF5 but I can't get it to work at all in CF8 on the same server. (Win2k3 R2 sp2) In CF8, it shows OK in the status column of the Data sources page, also when I 'verify' it, but when I run a query from a page which

Macromedia 'Certified Professional' Pin

2008-03-04 Thread Don
You know the one you get when you get CF certified. Does or has anyone wore them to the office? ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

RE: SPAM: Macromedia 'Certified Professional' Pin

2008-03-04 Thread Andy Matthews
I didn't get a pin...I just got a certificate. Maybe you scored higher than I did? :) -Original Message- From: Don [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2008 9:30 AM To: CF-Talk Subject: SPAM: Macromedia 'Certified Professional' Pin You know the one you get when you get

Re: Macromedia 'Certified Professional' Pin

2008-03-04 Thread Cutter (CFRelated)
You got a pin? Man, I feel gypped...;) Steve Cutter Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer _ http://blog.cutterscrossing.com Don wrote: You know the one you get when you get CF certified. Does or has anyone wore them to

Re: CFC, OOP I have another acronym for you.. WTF?

2008-03-04 Thread Sonny Savage
Are you sure it isn't due to the data type specified in the cfqueryparam? It looks like your ID has leading zeros which would make it a character string rather than numeric... On Tue, Mar 4, 2008 at 10:15 AM, Tom Chiverton [EMAIL PROTECTED] wrote: On Tuesday 04 Mar 2008, Greg Morphis wrote: I

Re: Feature Creep - Wants More Search Stuff ...

2008-03-04 Thread Les Mizzell
Andy Matthews wrote: Do they really want the entire sentence containing the term, or would they be satisfied with just highlighting the search term itself? If they'd be okay with that, the method takes care of that for you. A list of results is returned - with the title/link of the

Re: SPAM: Macromedia 'Certified Professional' Pin

2008-03-04 Thread Andy Allan
I think I got a pin for the CF6 exam but I definately didn't get one for CF7. Would I wear it to the office? Hell no. Would I ever wear it? Hell no :) On 04/03/2008, Andy Matthews [EMAIL PROTECTED] wrote: I didn't get a pin...I just got a certificate. Maybe you scored higher than I did?

Re: SPAM: Macromedia 'Certified Professional' Pin

2008-03-04 Thread Don
Could also be that they dont give them out anymore. I didn't get a pin...I just got a certificate. Maybe you scored higher than I did? :) You know the one you get when you get CF certified. Does or has anyone wore them to the office?

Re: Macromedia 'Certified Professional' Pin

2008-03-04 Thread Don
Yah, back in the day of CFMX6 Certification you got a pin. I wore mine today for the first time. lol =) You got a pin? Man, I feel gypped...;) Steve Cutter Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer _

Re: Macromedia 'Certified Professional' Pin

2008-03-04 Thread Alan Rother
When I passed the test right before the merger I did'nt get a pin... Until I emailed and asked for one. The person in charge of the certification process then sent me a really nice email and told me they only had 1 left and they sent it to me. So supposedly, I got the last one. =] -- Alan

Re: SPAM: Macromedia 'Certified Professional' Pin

2008-03-04 Thread Ben Doom
Sounds about right. I got one for being a MX6 Advanced Developer. I wore it the day we got it, as a gag, but then it went in a drawer. It's probably in a box somewhere in my apt. --Ben Doom Andy Allan wrote: I think I got a pin for the CF6 exam but I definately didn't get one for CF7.

RE: Feature Creep - Wants More Search Stuff ...

2008-03-04 Thread Russ
If you want to take a look at Lucene, I believe they have a highlighter that you might be able to use if you want more accurate things. Russ -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2008 10:35 AM To: CF-Talk Subject: RE: Feature

RE: Need query help

2008-03-04 Thread Brad Wood
If you query is highly dynamic, this way may not be best. Let's say the user can specify groups that are of type college, jewish, preschool, catholic, and skinny. Now, you have to join to the type table 5 times and that ain't looking too good. ~Brad -Original Message- From: Will

Re: CFC, OOP I have another acronym for you.. WTF?

2008-03-04 Thread Greg Morphis
Yea its a varchar field in the database. That part is correct On 3/4/08, Sonny Savage [EMAIL PROTECTED] wrote: Are you sure it isn't due to the data type specified in the cfqueryparam? It looks like your ID has leading zeros which would make it a character string rather than numeric... On

RE: Need query help

2008-03-04 Thread Adkins, Randy
Could do a UNION to gather the results -Original Message- From: Brad Wood [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2008 10:56 AM To: CF-Talk Subject: RE: Need query help If you query is highly dynamic, this way may not be best. Let's say the user can specify groups that are

Re: Feature Creep - Wants More Search Stuff ...

2008-03-04 Thread Tom Chiverton
On Tuesday 04 Mar 2008, Les Mizzell wrote: cfoutput query=searchresults h3a href=#pageLINK##Attorney_Name#/a/h3 p#right(bodyCOPY, 150)#/p /cfoutput Instead of the first 150 number of characters from the bodyCOPY field, they'd like to see X number of characters on either side of the

Re: Macromedia 'Certified Professional' Pin

2008-03-04 Thread Alan Rother
HAHA! I guess thats like when a significant other tells you that you were the best! =] On Tue, Mar 4, 2008 at 9:21 AM, Adrian Lynch [EMAIL PROTECTED] wrote: They told me the same thing! :Oo Just kidding :OD Anyone know when the CF8 one is available? I can never find anything about the

RE: Need query help

2008-03-04 Thread Brad Wood
What would that look like? Unioned result sets are not mutually dependant, but Will needs all his criteria to be met. ~Brad -Original Message- From: Adkins, Randy [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2008 10:00 AM To: CF-Talk Subject: RE: Need query help Could do a UNION

RE: Macromedia 'Certified Professional' Pin

2008-03-04 Thread Adrian Lynch
They told me the same thing! :Oo Just kidding :OD Anyone know when the CF8 one is available? I can never find anything about the exams on the site. Heck, where are the lists of people who have passed? I always end up Googling it. Adrian -Original Message- From: Alan Rother Sent: 04

Re: CF8 datasource problem

2008-03-04 Thread Tom Chiverton
On Tuesday 04 Mar 2008, Richard Meredith-Hardy wrote: An ODBC connection to a SAGE line-100 accounts database works perfectly What database ? Sage's own one ? VENDORERRORCODE 2217 What does this code mean ? Additionally, when I get this error, on the server I get a Visual studio

RE: Macromedia 'Certified Professional' Pin

2008-03-04 Thread Adrian Lynch
But she means it... doesn't she? :O. -Original Message- From: Alan Rother [mailto:[EMAIL PROTECTED] Sent: 04 March 2008 16:29 To: CF-Talk Subject: Re: Macromedia 'Certified Professional' Pin HAHA! I guess thats like when a significant other tells you that you were the best! =]

Re: Macromedia 'Certified Professional' Pin

2008-03-04 Thread Don
BLAAHHAHAAHHAHAHHAA - I guess thats like when a significant other tells you that you were the best! =] On Tue, Mar 4, 2008 at 9:21 AM, Adrian Lynch [EMAIL PROTECTED] wrote: ~| Adobe® ColdFusion® 8 software 8 is the

Re: Macromedia 'Certified Professional' Pin

2008-03-04 Thread Andy Allan
I'm an ACI and as yet I haven't heard anything about the CF8 stuff... to be honest, we'll probably find out the day after they are released :) On 04/03/2008, Adrian Lynch [EMAIL PROTECTED] wrote: They told me the same thing! :Oo Just kidding :OD Anyone know when the CF8 one is available? I

RE: CF8 datasource problem

2008-03-04 Thread Richard Meredith-Hardy
Tom See below -Original Message- From: Tom Chiverton [mailto:[EMAIL PROTECTED] Sent: 04 March 2008 16:23 To: CF-Talk Subject: Re: CF8 datasource problem On Tuesday 04 Mar 2008, Richard Meredith-Hardy wrote: An ODBC connection to a SAGE line-100 accounts database works

Re: Need query help

2008-03-04 Thread Nicholas Stein
This should work and is much clearer that your original statement. SELECT t.groupid, t.groupimage, t.groupname, t.groupcity, t.state, t.voicingid, t.groupcontactperson, t.country, t.region, x.groupid,

RE: Need query help

2008-03-04 Thread Brad Wood
How could a value be equal to two things at once? Your where clause requires that the gt.grouptype column simultaneously equal 'College' and 'Jewish'. That query will return no results. ~Brad -Original Message- From: Nicholas Stein [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04,

IVR / Faxback solutions

2008-03-04 Thread Dan Crouch
I am hoping that maybe someone on here has some experience with this and can point me in the right direction. I am working on setting up a system where a doctor's office would call an IVR system, put in a bit of information on a patient and get the eligibility and information faxed back to

RE: Strange Error from SQL

2008-03-04 Thread DURETTE, STEVEN J (ATTASIAIT)
In this case I believe it's the FusionReactor wrapper drivers. Steve -Original Message- From: Paul Vernon [mailto:[EMAIL PROTECTED] Sent: Monday, March 03, 2008 4:39 PM To: CF-Talk Subject: RE: Strange Error from SQL Anyone seen an error like this before? Error Executing Database

Re: Need query help

2008-03-04 Thread Jochem van Dieten
Brad Wood wrote: If you query is highly dynamic, this way may not be best. Let's say the user can specify groups that are of type college, jewish, preschool, catholic, and skinny. Now, you have to join to the type table 5 times and that ain't looking too good. Joining is what databases are

Re: IVR / Faxback solutions

2008-03-04 Thread Alan Rother
I don't know much about the IVR system you are talking about, but I have used eFax fairly effectively for sending Faxes from ColdFusion. They make it crazy simple. All you do is send a specific email address an email, with an attachment (the document you want to send as a fax) from a specific

RE: Need query help

2008-03-04 Thread Brad Wood
-Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2008 12:12 PM To: CF-Talk Subject: Re: Need query help Joining is what databases are good at. === Flying is what birds are good at; but why send the whole

Need full path file browser

2008-03-04 Thread Becky McDermott
In my ColdFusion application, I need to be able to browse the client file system, choose a file, and extract the full path file name the user selected so I can store it in a database. I have played around with input type=file but I don't need to UPLOAD any files. I just want the full path.

Re: CFGRID ajax loading icon

2008-03-04 Thread Eric Pfleckl
I know this hack, I was wondering if there is a way to customize it through code. You can replace the loading.gif image in cfide/scripts/ajax/resources/cf/images with any image you like. Asim, If you want to change the default CF loading HTML (including the loading.gif icon), just add the

OT: VPN and 2 NICs

2008-03-04 Thread Bryan Stevenson
Hey All, I'm trying to setup a Win 2k3 server (standard) in the following way: Connect 1 NIC to a Cisco VPN and keep the other NIC free for local LAN access. A few things: 1) I know this is doable, but don't know how in Windows. I currently use Linux and have setup alternate routes for the VPN

Re: OT: VPN and 2 NICs

2008-03-04 Thread Sonny Savage
For my work I use a VPN client from Netscreen, Netscreen-Remote. It seems to do routing as you describe using only one NIC. If I go to a web site outside the VPN (ie Google) it doesn't route that traffic through the VPN. From my experience the VPN client built into Windows XP pushes everything

Re: Need full path file browser

2008-03-04 Thread Claude Schneegans
Is this possible? With cross compatible code, the answer is no. If you use Explorer, you will have to make some ActiveX component to do so. provided the use will accept to load it. -- ___ REUSE CODE! Use custom tags; See

RE: Need full path file browser

2008-03-04 Thread Brad Wood
I don't know if it will be cross browser compatible, but you should be able to do it in IE without an active x control. Put a hidden field in the form. Onchange of the file field, copy the value of it (the full path) into the hidden field. Onsumbit of the form, don't actually submit the form,

Re: Need full path file browser

2008-03-04 Thread Ian Skinner
Becky McDermott wrote: I have read that because of security, web applications can't access client files. Are there any solutions other than storing the files on the web server? And you have read correctly. Just take a moment to imagine the havoc if I could write a web application that

Re: OT: VPN and 2 NICs

2008-03-04 Thread Bryan Stevenson
Thanks Sonny, Well I know there is a relatively easy way of setting this upjust having difficulty finding the docs. I bet all the advanced clients do is alter the routing tables. I think all I need to know is WHAT those routing tables should look like. I've done this in Linux with a single

Re: OT: VPN and 2 NICs

2008-03-04 Thread Bryan Stevenson
BTWyou may simply be connecting to a VPN conncentrator that allows split tunnelling (VPN traffic through VPN network's firewallall other traffic takes your regular route through you're own router/firewall). For me...the split tunnelling option is turned off - Bryan Stevenson B.Comm.

Re: Adding Extra Conditions to an INNER JOIN

2008-03-04 Thread Joe Graves
Replace your Where with an AND/OR The where clause must be used after any inner joins SELECT v.Party, SUM(v.Votes), s.ConstituencyNo ,c.ConstituencyName, c. RegionCode FROM VoteResults v INNER JOIN PollingStation s --- ON v.AgentPhoneNo =

RE: TIGER/Line

2008-03-04 Thread Kevin Aebig
I've been doing PHP for close to a decade and would be happy to help if you could provide the full error message. !k -Original Message- From: Graham Pearson [mailto:[EMAIL PROTECTED] Sent: Saturday, March 01, 2008 7:15 AM To: CF-Talk Subject: Re: TIGER/Line -BEGIN PGP SIGNED

RE: TIGER/Line

2008-03-04 Thread Kevin Aebig
You just might want to make this easier on yourself and check this out: http://developer.yahoo.com/maps/rest/V1/geocode.html Why hold that much data in your DB when someone else is willing to do it for you? !k -Original Message- From: Graham Pearson [mailto:[EMAIL PROTECTED] Sent:

Re: OT: VPN and 2 NICs

2008-03-04 Thread Sonny Savage
I've noticed it by looking at the traffic of the two connections in the task manager. I did find what looks like good detail on what you want to do: http://www.windowsnetworking.com/articles_tutorials/w2kprout.html On Tue, Mar 4, 2008 at 3:14 PM, Bryan Stevenson [EMAIL PROTECTED] wrote:

Re: OT: VPN and 2 NICs

2008-03-04 Thread Bryan Stevenson
Thanks for the link ;-) - 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: www.electricedgesystems.com Notice: This message, including any attachments, is

SFTP

2008-03-04 Thread Dan Baughman
Hello List, I have an ftp server I'm using WinSCP to connect to. I have a ppk file and I can move it from one computer to another and connect via WinSCP with no issue. I'd very much like to use coldfusion to somehow connect to this server via what I believe to be key authentication and upload

OT: Microsoft Live Office

2008-03-04 Thread Don L
Has anyone tried that? And what's your experience with it? Thanks. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160198600;22374440;w

cffile read charset Shift_JIS

2008-03-04 Thread Randy Messer
Using CF MX6 on both dev and prod, moving from a development server to production ran into problem. On development server, cffile action=read charset=Shift_JIS file=myfilePath variable=MyVar (works) On production the same code fails. If I remove the charset=Shift_JIS, tag will read files

Re: OT: Microsoft Live Office

2008-03-04 Thread C. Hatton Humphrey
link? On Tue, Mar 4, 2008 at 3:39 PM, Don L [EMAIL PROTECTED] wrote: Has anyone tried that? And what's your experience with it? Thanks. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to

Re: OT: Microsoft Live Office

2008-03-04 Thread Casey Dougall
On 3/4/08, C. Hatton Humphrey [EMAIL PROTECTED] wrote: link? http://www.officelive.com/ ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: Need full path file browser

2008-03-04 Thread Casey Dougall
And you have read correctly. Just take a moment to imagine the havoc if I could write a web application that could root around your file system for any interesting sounding files every time you visited my popular web site? They have a new word for this (A.I.R.)

RE: OT: VPN and 2 NICs

2008-03-04 Thread Dave Watts
For my work I use a VPN client from Netscreen, Netscreen-Remote. It seems to do routing as you describe using only one NIC. If I go to a web site outside the VPN (ie Google) it doesn't route that traffic through the VPN. From my experience the VPN client built into Windows XP pushes

Re: Microsoft Live Office

2008-03-04 Thread Don L
I feel it's very stupid and confusing, looks like someone in charge may actually work for Google... ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: cfstat checkbox resetting

2008-03-04 Thread Ryan Stille
Vance Whitehouse wrote: Hello, I've been upgrading our web servers from CF 7 to 8 and I'm not able to enable cfstat on them when they are running CF 8. Every time I check the Enable CFSTAT checkbox in the CF administrator, hit submit, and restart CF then log back in and check the

Re: OT: Microsoft Live Office

2008-03-04 Thread Gerald Guido
I think it was in beta at the time and I got a free domain out of the deal so I was like, why not? My impression on using it for a few hours a couple of years ago: Very Easy to use. Very easy to skin. Fairly nice templates. Better than most free offerings at the time. Great wussywig (IE only, go

Add form fields dynamically

2008-03-04 Thread coldfusion . developer
All, I'm starting to build a basic form where the user can indicate the number of children they have. What I want to do is based on the number of kids value, dynamically generate birthday form fields. Any posts, articles or ideas would be great to get me started. Thanks. form id=form1

Re: IVR / Faxback solutions

2008-03-04 Thread James Wolfe
for IVR, check out angel.com I am hoping that maybe someone on here has some experience with this and can point me in the right direction. I am working on setting up a system where a doctor's office would call an IVR system, put in a bit of information on a patient and get the

CFFTP - Secure connection

2008-03-04 Thread Dan Baughman
OK- Coldfusion 8 uses JSCH as well as the old tag for 7 did. so the same, mis-spelt error mesage lingers in Coldfusion 8 as in 7 with the user-built CFC(cfsftp)... invaid privatekey: c:\id_dsa.ppk Does anyone know what file format the private key is expected to be in? Is it it still usable if

cfexecute and dr web or avg - permissions problem

2008-03-04 Thread Will Swain
Hey all, I want to scan a file for viruses on upload. I have dr web installed already, as part of Plesk, and AVG is an easy (free) option too. So, I have the following code to try and run dr web to scan a file. The pathways are all correct, and the /ST argument is to run in stealth mode:

RE: cfexecute and dr web or avg - permissions problem

2008-03-04 Thread Dave Watts
So I'm guessing this is a user permissions issue. I can't see an option to run the command line scanner under a specific account in the dr web docs. Use the runas command to run a program as a specific user. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Training:

Re: cffile read charset Shift_JIS

2008-03-04 Thread Randy Messer
Using CF MX6 on both dev and prod, moving from a development server to production ran into problem. On development server, cffile action=read charset=Shift_JIS file=myfilePath variable=MyVar (works) On production the same code fails. If I remove the charset=Shift_JIS, tag will

Re: Add form fields dynamically

2008-03-04 Thread Charlie Griefer
On Tue, Mar 4, 2008 at 1:31 PM, [EMAIL PROTECTED] wrote: All, I'm starting to build a basic form where the user can indicate the number of children they have. What I want to do is based on the number of kids value, dynamically generate birthday form fields. this will get you started.

RE: OT: VPN and 2 NICs

2008-03-04 Thread Bryan Stevenson
You can configure the Windows L2TP VPN client not to route all traffic through the VPN by clearing the Use default gateway on remote network option under Advanced TCP/IP options. If you have some traffic which does need to be routed, for example to a different network within your LAN border,

RE: cfexecute and dr web or avg - permissions problem

2008-03-04 Thread Will Swain
Thanks for the reply Dave. I've not played with runas before, and I'm uncertain as to how to pass the arguments to drweb32w.exe using runas. Any pointers? Thanks Will -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: 04 March 2008 21:57 To: CF-Talk Subject: RE:

Re: CFC, OOP I have another acronym for you.. WTF?

2008-03-04 Thread Greg Morphis
Tom.. you mean something like this... ? cflock scope=application timeout=5 type=Exclusive cfset application.userGateway ... cfset application.groupGateway ... /cflock etc.. What timeout should it have? is 5 seconds good enough? Thanks! On Tue, Mar 4, 2008 at 9:15

LinkedIn CF group

2008-03-04 Thread James Wolfe
I'm not sure what purpose it serves, but I created a LinkedIn CF group if anyone cares http://www.linkedin.com/groupInvitation?groupID=63526sharedKey=59CB6255962F ~| Adobe® ColdFusion® 8 software 8 is the most important and

Re: Advertising CF as a server side technology

2008-03-04 Thread jalpino
Hi Ali, Glad to see that you are all about CF and want to share the love, this kind of enthusiasm is great! A lot of the questions you are asking have already been answered, running a few quick searches on Google should yield some good ammo for your pitch (hint, try searching on Coldfusion is

Re: cffile read charset Shift_JIS

2008-03-04 Thread Paul Hastings
Randy Messer wrote: Using CF MX6 on both dev and prod, moving from a development server to production ran into problem. On development server, cffile action=read charset=Shift_JIS file=myfilePath variable=MyVar (works) depends on the JDK version. go here:

Re: Add form fields dynamically

2008-03-04 Thread Charlie Griefer
On Tue, Mar 4, 2008 at 2:11 PM, Charlie Griefer [EMAIL PROTECTED] wrote: On Tue, Mar 4, 2008 at 1:31 PM, [EMAIL PROTECTED] wrote: All, I'm starting to build a basic form where the user can indicate the number of children they have. What I want to do is based on the number of kids

Re: LinkedIn CF group

2008-03-04 Thread RobG
I'm game. Just joined. Rob On Tue, Mar 4, 2008 at 3:01 PM, James Wolfe [EMAIL PROTECTED] wrote: I'm not sure what purpose it serves, but I created a LinkedIn CF group if anyone cares http://www.linkedin.com/groupInvitation?groupID=63526sharedKey=59CB6255962F

Re: LinkedIn CF group

2008-03-04 Thread James Holmes
+1 On Wed, Mar 5, 2008 at 9:08 AM, RobG wrote: I'm game. Just joined. On Tue, Mar 4, 2008 at 3:01 PM, James Wolfe [EMAIL PROTECTED] wrote: I'm not sure what purpose it serves, but I created a LinkedIn CF group if anyone cares

Re: Add form fields dynamically

2008-03-04 Thread Gerald Guido
Charlie, Thanx for the nomorepasting.com link. Good stuff. P.S. Information is not knowledge. Knowledge is not wisdom. Wisdom is not truth. Truth is not beauty. Beauty is not love. Love is not music. Music is THE BEST. And something about the Wiz that Dale was babbling about... -- As an

Re: LinkedIn CF group

2008-03-04 Thread Mike Little
me too! ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160198600;22374440;w Archive:

Re: Need query help

2008-03-04 Thread Tom Donovan
Will Tomlinson wrote: Hey, I've got groups that can have one or more types associated with them. I have a linking table that I'm querying and filtering. But I'm not getting the results I need. Example: A group can be both 'College' and 'Jewish', as listed in the many linking table -

RE: cfexecute and dr web or avg - permissions problem

2008-03-04 Thread Dave Watts
Thanks for the reply Dave. I've not played with runas before, and I'm uncertain as to how to pass the arguments to drweb32w.exe using runas. Any pointers? I think I'd write a batch file to run all this. You'd use CFEXECUTE to invoke CMD.EXE, and pass it everything else as an argument. Dave

Find/Replace for Eclipse

2008-03-04 Thread j s
Does a plugin exist for Find/Replace that is as good as the one for Dreamweaver? I like the option of searching the entire site or folder. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date

RE: Find/Replace for Eclipse

2008-03-04 Thread Jaime Metcher
Folder: Click on the folder you want in the Navigator view, then choose Selected Resources in the search dialog. Site: Ditto, but start at the site root Jaime -Original Message- From: j s [mailto:[EMAIL PROTECTED] Sent: Wednesday, 5 March 2008 1:11 PM To: CF-Talk Subject:

RE: Find/Replace for Eclipse

2008-03-04 Thread William Seiter
From experience (oops!): before doing the big find and replace make sure you refresh your site/folder so that all the files are current. ;) -- William E. Seiter Have you ever read a book that changed your life? Go to: www.winninginthemargins.com Enter passkey: goldengrove Web Developer /

  1   2   >