Re: CFFM + FCKEditor (good stuff?)

2005-01-10 Thread Jon Austin
If it's not working, raise a bug on SourceForge for FCKEditor. He usually fixes them pretty quickly. On Mon, 10 Jan 2005 22:12:38 -0500, Tony Weeg <[EMAIL PROTECTED]> wrote: > hi there. > > im using fckEditor, and the file upload piece is trippin' ~~~

CFFM + FCKEditor (good stuff?)

2005-01-10 Thread Tony Weeg
hi there. im using fckEditor, and the file upload piece is trippin' any idea if CFFM from Rick Root, works well as a replacement for the non-working file uploader that exists with the app? i know if its not working, ANYTHING is better, just wondering if you have any experience with it, ket me kn

RE: John Dowdell Wants to Know What's Wrong with Macromedia

2005-01-10 Thread James Holmes
Agreed. We don't let anyone touch the production boxes at all. They get synced by an admin from test. One thing RDS does that WebDav doesn't (afaik) is expose every datasource on the box to every user, regardless of sandboxing. That's why RDS is disabled on all of our shared boxes (dev, test and p

Re: How to add images to my db the *right* way?

2005-01-10 Thread Will Tomlinson
>Personally, I'd completely nix the "prodMainImage1", "prodMainImage2" >approach in the tblproductimages table, and let one row in that table >represent one image. Then, I'd add a prodImageID column to the >tblAvailableColors table that indicated what images were pictures of a >product in a given

Re: Revised Thread - Uploading CSV and Validation

2005-01-10 Thread Aaron Rouse
And if using Oracle you could use SQLLDR. I have the need to do this just with CF and been using a CFC I got off this list for uploading it but still have not found the time to really progress with it. On Mon, 10 Jan 2005 16:53:15 -0700, Paul Malan <[EMAIL PROTECTED]> wrote: > If you're using SQ

Re: How to add images to my db the *right* way?

2005-01-10 Thread Will Tomlinson
>Hey Will, > >You may want to think about rearranging some of your schema: anytime >you hit a situation where you wind up with column names like >"prodMainImage1", "prodMainImage2", etc., you've found a place where >you may want to examine what you're doing more closely. > >Personally, I'd complete

Re: wysisyg editor for forms

2005-01-10 Thread Joe Rinehart
None right now - I've got to write my own for fckEditor sometime in the next few weeks, I'll make it lesser GPL when I do and let everyone know. :) -joe On Mon, 10 Jan 2005 20:16:23 -0500, Tony Weeg <[EMAIL PROTECTED]> wrote: > on this note, im having issues with the image uploader, its like > p

Re: How to add images to my db the *right* way?

2005-01-10 Thread Joe Rinehart
Hey Will, You may want to think about rearranging some of your schema: anytime you hit a situation where you wind up with column names like "prodMainImage1", "prodMainImage2", etc., you've found a place where you may want to examine what you're doing more closely. Personally, I'd completely nix t

OT: OCP - MCDBA

2005-01-10 Thread Leonardo CRESPO - Gmail
Hi all! Sorry for the OT. This is the best list i know and since it will affect many aspects of my life, i would sincerely appreciate your opinions before committing to my next certification. I can't make a clear choice between studying to become an Oracle OCP or MCDBA. I'm 23yrs, Adv. Certified C

Re: wysisyg editor for forms

2005-01-10 Thread Tony Weeg
on this note, im having issues with the image uploader, its like putting only a 1kb file on the server with the right name/file ext. but the file isnt really an image... just some weird collection of 1kb of something ... any ideas? thanks. tony On Mon, 10 Jan 2005 20:06:37 -0500, Joe Rinehart

Re: Suggestion for looping over months within a time period

2005-01-10 Thread Joe Rinehart
Jim, Why not take care of this in one query? Something to the affect of: SELECT cast(datepart(mm, somedate), nvarchar(2)) + '/' + cast(datepart(, somedate), nvarchar(4)) AS MonthAndYear FROM sometable ORDER BY somedate ASC #monthAndYear# -Joe On Mon, 10 Jan 2005 15:02:36

Re: wysisyg editor for forms

2005-01-10 Thread Joe Rinehart
I'm a big fan of fckeditor - I think the open source CFFM works with it now, as well, for uploading of images and such. -joe On Mon, 10 Jan 2005 18:28:50 -0500, Wurst, Keith D. <[EMAIL PROTECTED]> wrote: > what does everyone think is the best free cf custom tag that can be > implemented to allo

Re: SQL Triggers

2005-01-10 Thread Larry White
The @@identity returns the last identity insert for a particular user according to the documentation I read, not the last identity insert in the database. Of course if other triggers fire after your insert the @@identity value may be the result of another trigger insert, and not what you expect. >

RE: SQL Triggers

2005-01-10 Thread tonyp
I took the liberty of rewriting your trigger for you. Just a hint, when posting a question like this, include the table create statements if you can. It makes writing the answer code easier (and in most cases correct). Remember that in triggers you have the inserted and the deleted tables. You can

Sand Box Issue, please help!!

2005-01-10 Thread Joel Nath
Hi, I have created a sandbox security on a shared web hosting server, everything was working last night but today when i view the same page, it gives me this error.. "Security: The requested template has been denied access to C:\CFusionMX\CustomTags. The following is the internal exception messag

RE: SQL Triggers

2005-01-10 Thread tonyp
WHOA THERE! The biggest misconception that people have with the @@identity global variable is that it will give you that last identity inserted for a particular table. It actually gives you the last identity inserted for ANY identity column in the database. In a high impact environment this could

SQL Triggers

2005-01-10 Thread Robert Bailey
A little rusty at the triggers I see, but here is what I got: CREATE TRIGGER dbo.MyTest ON dbo.UserTime AFTER INSERT AS DECLARE @UserTimeProjID Int , @OrderProjID Int, @InternalCostAdd Int,@ActualHours Int Select @UserTimeProjID, @OrderProjID, @InternalCostAdd,@ActualHours ( SELECTUT

RE: wysisyg editor for forms

2005-01-10 Thread Matthew Walker
This is one of the nicest: http://tinymce.moxiecode.com/ -Original Message- From: Wurst, Keith D. [mailto:[EMAIL PROTECTED] Sent: Tuesday, 11 January 2005 12:29 p.m. To: CF-Talk Subject: wysisyg editor for forms what does everyone think is the best free cf custom tag that can be implem

Re: Strange: Can't login to cfadmin

2005-01-10 Thread Will Tomlinson
Been looking around. Do I need to manually add port 8500? ~| Find out how CFTicket can increase your company's customer support efficiency by 100% http://www.houseoffusion.com/banners/view.cfm?bannerid=49 Message: http://www.h

Re: Revised Thread - Uploading CSV and Validation

2005-01-10 Thread Paul Malan
If you're using SQL Server, you can create a DTS package then call it from CF. I couldn't believe the difference in speed when I switched to DTS. (If you need to use CF to validate the incoming data, use DTS to populate a temp table, CF to pull it out and insert the validated data into its perman

Re: Suggestion for looping over months within a time period

2005-01-10 Thread Jeff Garza
you are right... if day(startDate) is greater than day(endDate) it will be one month shy... So... do a little conditional logic to pad the number of loops... Cheers, Jeff Garza - Original Message - From: "Jim McAtee" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Monday, Janua

Strange: Can't login to cfadmin

2005-01-10 Thread Will Tomlinson
I have a weird problem. Just loaded CF on my new computer, updater and stuff. It won't let me login to CFadmin. Everything is running, and I was logged in after the install, but now programs>Macromedia>CFMXADMIN gives you this error. coldfusion.tagext.lang.SettingTag.setRequestTimeout(J)V He

wysisyg editor for forms

2005-01-10 Thread Wurst, Keith D.
what does everyone think is the best free cf custom tag that can be implemented to allow for users to format (bold, etc.) text in a form. thank. ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket applica

Re: Suggestion for looping over months within a time period

2005-01-10 Thread Larry White
Why don't you do it all at once? Something like: Select field1,field2, month(somedate) as themonth from sometable where somedate between #StartDAte# and #toDate# Order by Month(somedate) Now you can just group it by month in the cfoutput using the group attribute >What is a good way t

Re: Suggestion for looping over months within a time period

2005-01-10 Thread Jim McAtee
Doesn't work, since DateDiff() only seems to count the number of full months between dates. DateDiff("11/17/2003", "2/12/2005"), for instance, returns 2. - Original Message - From: "Jeff Garza" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Monday, January 10, 2005 3:25 PM Subject: Re: Sugg

Re: How to add images to my db the *right* way?

2005-01-10 Thread Will Tomlinson
Just have a look at my schema whenever you get the time. It has most of what you're talking about. I appreciate it. Will ~| Find out how CFTicket can increase your company's customer support efficiency by 100% http://www.hou

Re: Revised Thread - Uploading CSV and Validation

2005-01-10 Thread Larry White
Treat it as two lists. The first using Chr(13) or Chr(10) as a delimiter, the second using ",": Continue for all columns and validate Insert into DB here each loop of idx will provide the next row of data to be inserted. >Hi. I want to enable the user to upload a csv file, then the d

Re: How to add images to my db the *right* way?

2005-01-10 Thread dave
lol, did i really say that?? sorry bout that, get carried away sometimes! but once u excape the horrid grasp of ms u will be amazed how easy it is to validate!! (no joke and in all seriousness) ok, i dont have a ton of time to look over the stuff yet, i have a cf usergroup meeting in a bit but h

Re: How to add images to my db the *right* way?

2005-01-10 Thread Will Tomlinson
> lol > im trying to be good remember? but u set yourself up 4 it! badly!! I know! I know! > > ok, i didnt read some of the posts but what i did read didnt make > sense. > u had a seperate table for colors? and r u putting the images into the > db or just the paths? When it comes to colors, I

Revised Thread - Uploading CSV and Validation

2005-01-10 Thread Ken
Hi. I want to enable the user to upload a csv file, then the data should be validated against pre-defined criteria for different columns in the csv file. Once that is done, I want to write the validated rows from the csv file to the DB. Please help. Thanks, Ken ~~

Re: Suggestion for looping over months within a time period

2005-01-10 Thread Jeff Garza
This works for me... Difference in Months: #numMonths# StartDate = #baseDAte# ||| EndDate = #baseEndDate# Hope this helps... Jeff Garza - Original Message - From: "Jim McAtee" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Monday, January 10, 2005 3:02 PM Subject: Suggest

Re: How to add images to my db the *right* way?

2005-01-10 Thread dave
lol im trying to be good remember? but u set yourself up 4 it! badly!! ok, i didnt read some of the posts but what i did read didnt make sense. u had a seperate table for colors? and r u putting the images into the db or just the paths? im making a ecomm clothes site as well, even though it will

Suggestion for looping over months within a time period

2005-01-10 Thread Jim McAtee
What is a good way to loop over the months within a time period? For example, given a starting date of 11/17/2003 and an end date of 2/19/2003, I'd need to loop through Nov03, Dec03, Jan04, Feb04. Within the loop I'll be doing queries with a where clause like: WHERE somedate BETWEEN #month#/1

Uploading Excel and Validating

2005-01-10 Thread Ken
Hi. I want to enable the user to upload a excel sheet, then the data should be validated against pre-defined criteria for different columns in the excel sheet. Once that is done, I want to write the validated rows from the excel sheet to the DB. Please help. Thanks, Ken ~

Re: Regex Help.

2005-01-10 Thread Ben Doom
But if you use a lowercase d. [\d] is not digits, it's a lowercase d or a backslash. :-) --Ben Greg Morphis wrote: > > > > > #rval# > > yields 0 (did not validate). > > > On Mon, 10 Jan 2005 15:57:11 -0500, DURETTE, STEVEN J (AIT) > <[EMAIL PROTECTED]> wrote: > >>Opps, >> >>That did

RE: How to get file information?

2005-01-10 Thread Kazmierczak, Kevin
Yeah, I went with cfdirectory with the filter and it responded in about 10 ms to my surprise. The folder should stay small, so hopefully it won't slow down too much. Thanks. Kevin. -Original Message- From: Al Everett [mailto:[EMAIL PROTECTED] Sent: Monday, January 10, 2005 3:56 PM To:

Re: search engine friendly urls

2005-01-10 Thread Duncan I Loxton
I was just wondering if Fusebox 3 and 4 had this natively, Bert - how do I approach this and use it? All our apps use FB3 4.5 and we are moving them slowly but surely to MX and FB4. Duncan On Mon, 10 Jan 2005 06:55:50 -0500, Doug Hughes <[EMAIL PROTECTED]> wrote: > Here's a tutorial I wrote: >

Re: Ok, here's a brute

2005-01-10 Thread Bryan Stevenson
I'd start putting breaks in your code just before and then after suspect code blocks (using cfabort). Keep moving the cfabort further along through your code until the error happens againthen you know the error is after that last spot the cfabort was and before where it is when it errors.

Re: Regex Help.

2005-01-10 Thread Greg Morphis
#rval# yields 0 (did not validate). On Mon, 10 Jan 2005 15:57:11 -0500, DURETTE, STEVEN J (AIT) <[EMAIL PROTECTED]> wrote: > Opps, > > That didn't work after all. User puts in D and it evaluates to true > with that reg ex. > > Steve > > > -Original Message- > From: Greg Morphis

Ok, here's a brute

2005-01-10 Thread Ian Skinner
Any hints on where I can start debugging why a form I have now complete crashes the IE browser when I submit it? No error displayed until a dialog appears with this header "Microsoft Internet Explorer has encountered a problem and needs to close. We are sorry for the inconvenience." The dialog

Re: How to add images to my db the *right* way?

2005-01-10 Thread Will Tomlinson
>I love ya, but I had to do it. Shoot me, sue me, whatever, it's Monday >from hell here and I could NOT pass it up! BANG BANG!!! :) Waiting for dave to roll in and finish me off now. ~| Find out how CFTicket can increase yo

RE: Regex Help.

2005-01-10 Thread DURETTE, STEVEN J \(AIT\)
Opps, That didn't work after all. User puts in D and it evaluates to true with that reg ex. Steve -Original Message- From: Greg Morphis [mailto:[EMAIL PROTECTED] Sent: Monday, January 10, 2005 2:57 PM To: CF-Talk Subject: Re: Regex Help. ^[\d]*([.]?[\d]{1,2})?$ there that will cat

Re: How to add images to my db the *right* way?

2005-01-10 Thread Donna French
Hey Will - I'm going to give you a little H$LL here on the list - all in good humor of course - and only because you and I have chatted off list. But that code you posted sure looks a lot like CF and not .NET. LMAO I love ya, but I had to do it. Shoot me, sue me, whatever, it's Monday from hell

Re: How to get file information?

2005-01-10 Thread Al Everett
I just tested it with CF5 on a desktop-class machine on a directory of ~ 47,000 GIF and JPEG images each between 15k and 30k in size. CFDIRECTORY with a filename in the "Filter" attribute came back in 120 ms. 20 of that for CFDUMP and 100 for STARTUP, PARSING, & SHUTDOWN. Seems pretty quick to me

How to add images to my db the *right* way?

2005-01-10 Thread Will Tomlinson
I'm almost finished with the coding on my clothing e-commerce site, but I'm running into a few minor snags. When dealing with images, I usually just add a few image fields in the main table, image1,2,3,etc. It usually works fine and I built this stupidly elaborate process for updating and dele

RE: How to get file information?

2005-01-10 Thread Katz, Dov B (IT)
Are you positive that CFDIRECTORY doesn't list files and apply the filter? One easy way to tell is to do this file check in a directory with 10,000 files. Id' hypothesize that cfdirectory takes significant longer than a java.io.File construction I could be wrong, as this is all speculation. do

RE: John Dowdell Wants to Know What's Wrong with Macromedia

2005-01-10 Thread Dave Watts
> Speaking of SSL and RDS, is there anyway to present a > certificate with RDS? We have found no way tell studio to > present a cert to https server. The last time I used CF Studio with RDS, I seem to recall that Studio used Internet Explorer's settings and functionality. I've never used RDS wit

RE: Regex Help.

2005-01-10 Thread DURETTE, STEVEN J \(AIT\)
Thanks, That did it. -Original Message- From: Greg Morphis [mailto:[EMAIL PROTECTED] Sent: Monday, January 10, 2005 2:57 PM To: CF-Talk Subject: Re: Regex Help. ^[\d]*([.]?[\d]{1,2})?$ there that will catch 9, 9.9, 9.99, will not catch 9. 9.9.9, etc On Mon, 10 Jan 2005 13:51:23 -06

RE: John Dowdell Wants to Know What's Wrong with Macromedia

2005-01-10 Thread Dave Watts
> I didn't think that RDS was for production systems? It isn't. Neither is WebDAV, in my opinion. I'm reluctant to allow people to edit files via HTTP on production systems in general. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendo

Re: Regex Help.

2005-01-10 Thread Greg Morphis
^[\d]*([.]?[\d]{1,2})?$ there that will catch 9, 9.9, 9.99, will not catch 9. 9.9.9, etc On Mon, 10 Jan 2005 13:51:23 -0600, Greg Morphis <[EMAIL PROTECTED]> wrote: > I think this will work.. > ^\d{1,2}.\d{1,2}$ > > (not tested) > > > On Mon, 10 Jan 2005 14:43:27 -0500, DURETTE, STEVEN J (A

RE: How to get file information?

2005-01-10 Thread Calvin Ward
Actually, it wouldn't have to iterate Should just return the single file. - Calvin -Original Message- From: Katz, Dov B (IT) [mailto:[EMAIL PROTECTED] Sent: Monday, January 10, 2005 2:32 PM To: CF-Talk Subject: RE: How to get file information? CFDirectory is probably not that perfo

Re: Regex Help.

2005-01-10 Thread Greg Morphis
I think this will work.. ^\d{1,2}.\d{1,2}$ (not tested) On Mon, 10 Jan 2005 14:43:27 -0500, DURETTE, STEVEN J (AIT) <[EMAIL PROTECTED]> wrote: > Hi All, > > Need some help with a regex. What I'm trying to do is validate and > input in javascript. > > The users are allowed to input a number.

Re: Regex Help.

2005-01-10 Thread Tony Hicks
Can you use isNaN here? Just use it on your number to verify that it is or is not a number... what's your code look like? On Mon, 10 Jan 2005 14:43:27 -0500, DURETTE, STEVEN J (AIT) <[EMAIL PROTECTED]> wrote: > Hi All, > > Need some help with a regex. What I'm trying to do is validate and > in

Regex Help.

2005-01-10 Thread DURETTE, STEVEN J \(AIT\)
Hi All, Need some help with a regex. What I'm trying to do is validate and input in javascript. The users are allowed to input a number. It can be in the following formats: 9 9.9 9.99 .99 .9 (9 used inplace of any digit.) I tried using \b[0-9.]+ and I've tried \b[\d]*([.]?[\d]{0,2})? an

RE: How to get file information?

2005-01-10 Thread Katz, Dov B (IT)
CFDirectory is probably not that performant, as it has to iterate through the file list to find the file you want. I suggest Then you have access to all java.io.File's rich method library, such as length(), canRead(), exists(), delete(), isDirectory() etc Not sure about performance tra

Re: How to get file information?

2005-01-10 Thread Al Everett
Use CFDIRECTORY with the "Filter" attribute. Then you'll only get information about your specific file. On Mon, 10 Jan 2005 14:16:56 -0500, Kazmierczak, Kevin <[EMAIL PROTECTED]> wrote: > How would one get information on a file from CF? I want to know when > the file was last modified. I know I

RE: How to get file information?

2005-01-10 Thread Kazmierczak, Kevin
I guess I could use cfdirectory with a filter, that would probably do it. -Original Message- From: Kazmierczak, Kevin [mailto:[EMAIL PROTECTED] Sent: Monday, January 10, 2005 2:17 PM To: CF-Talk Subject: How to get file information? How would one get information on a file from CF? I wa

How to get file information?

2005-01-10 Thread Kazmierczak, Kevin
How would one get information on a file from CF? I want to know when the file was last modified. I know I could use cfdirectory and loop over the directory contents and get it that way but that seems like WAY too much work just to get the date on one file. How come you can't use cffile variab

Re: Building a SQL WHERE clause

2005-01-10 Thread daniel kessler
>Have you tried something like this > >SELECT service_population,agency,city,state,salary_status > FROM internships > #preservesinglequotes( find_text )# > ORDER BY agency ASC y! That worked very well thank you Qasim. And Al, that's a pretty good idea. I would've tried th

RE: Building a SQL WHERE clause

2005-01-10 Thread Robert Bailey
The '' does not help in your query, that are wrapped around your where clause: SELECT service_population,agency,city,state,salary_status FROM internships WHERE service_population=''Children'' ORDER BY agency ASC Not sure how you are passing them in the form, but you want it to read: SELECT serv

Re: Building a SQL WHERE clause

2005-01-10 Thread Qasim Rasheed
Have you tried something like this SELECT service_population,agency,city,state,salary_status FROM internships #preservesinglequotes( find_text )# ORDER BY agency ASC On Mon, 10 Jan 2005 13:10:06 -0500, Daniel Kessler <[EMAIL PROTECTED]> wrote: > I'm doing my first Search utilit

Re: Building a SQL WHERE clause

2005-01-10 Thread Al Everett
If form.service_population isn't defined, you have an empty WHERE clause. That's probably the root of the issue. I suggest having something in your WHERE clause that's always true but has no bearing on the returned results, like "WHERE 0=0" then add the rest of your dynamic clause. On Mon, 10 Jan

Building a SQL WHERE clause

2005-01-10 Thread Daniel Kessler
I'm doing my first Search utility: http://hhp.umd.edu/studentservices/internships.cfm I'm trying to build a WHERE clause in CF where it check to see if a form field is part of a search and if it is, then it builds into the WHERE string. Unfortunatley when I do, I get the error, "SQL command do

RE: John Dowdell Wants to Know What's Wrong with Macromedia

2005-01-10 Thread Patrick McGeehan
Speaking of SSL and RDS, is there anyway to present a certificate with RDS? We have found no way tell studio to present a cert to https server. Patrick McGeehan CFMX Advanced Certified Applications Developer DIT #mcg# -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]

RE: uninstalling FP server extensions

2005-01-10 Thread Calvin Ward
If you aren't using FP there shouldn't be any issue. - Calvin -Original Message- From: Katz, Dov B (IT) [mailto:[EMAIL PROTECTED] Sent: Monday, January 10, 2005 12:56 PM To: CF-Talk Subject: uninstalling FP server extensions If I use CFMX over IIS, is there any harm in uninstalling Fron

uninstalling FP server extensions

2005-01-10 Thread Katz, Dov B (IT)
If I use CFMX over IIS, is there any harm in uninstalling FrontPage 2002 server extensions? NOTICE: If received in error, please destroy and notify sender. Sender does not waive confidentiality or privilege, and use is prohibited. ~

RE: John Dowdell Wants to Know What's Wrong with Macromedia

2005-01-10 Thread Calvin Ward
I didn't think that RDS was for production systems? -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED] Sent: Monday, January 10, 2005 12:12 PM To: CF-Talk Subject: Re: John Dowdell Wants to Know What's Wrong with Macromedia On Friday 07 Jan 2005 21:49 pm, Dave Watts wrot

RE: John Dowdell Wants to Know What's Wrong with Macromedia

2005-01-10 Thread Dave Watts
> RDS would be a lot more useful if it was thrown away and > replaced with something that used open standards (WebDAV for > instance). RDS is far to insecure to leave running on anything > like a production system. How exactly is WebDAV any more or less secure than RDS? Both can be protected wi

Re: Simple Content Management

2005-01-10 Thread Adam Churvis
If your application is built on the Plum Framework, you'd have the Plum CMS available to you, and everything is free of charge: http://www.productivityenhancement.com/plum/WhatPlumCanDo.cfm This won't be an option if you're trying to integrate it into an existing site that uses another framework,

Re: Blocking Comment Spammers

2005-01-10 Thread Jim McAtee
http://www.w3.org/TR/turingtest/ - Original Message - From: "Stan Winchester" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Sunday, January 09, 2005 12:14 PM Subject: Re: Blocking Comment Spammers > That is a good point, but in most of our situations security is more > important than being

Re: John Dowdell Wants to Know What's Wrong with Macromedia

2005-01-10 Thread Thomas Chiverton
On Friday 07 Jan 2005 21:49 pm, Dave Watts wrote: > RDS would be a lot more useful if it were something that could be used by > other tools. RDS would be a lot more useful if it was thrown away and replaced with something that used open standards (WebDAV for instance). RDS is far to insecure to l

Running CFMX service with a login

2005-01-10 Thread Howie Hamlin
I have several cfmx servers running under Windows 2003 and IIS6. These servers all access templates and files on the network. Everything works (file reads, writes, etc) except for file deletions. Currently, the web site in IIS is configured to access the share as a specific user. I'm thinkin

OT: Problems w/printing in IE

2005-01-10 Thread Robert Orlini
Anyone out there having problems with printing in IE (6.0) or Outlook 2000? When I try to re-install IE from Microsoft it crashes. A Windows File Protection pop-up appears later. Also Norton has some Office files in Quarantine it can fix with the latest definitions. Thanks. Robert O. HWW ~~~

Re: General Security Discussion.

2005-01-10 Thread Rebecca Wells
>Why not just tell the browser not to cache the pages and alwasy >checked that they are logged in... or am I missing something? Well, duh! That's why I said that it works assuming you have set the rest of your security up right... like having a login-check function in the application.cfm page so

Re: Determining the location of a CFC

2005-01-10 Thread Neil Middleton
In fact, ignore me, it's not a webservice calling, it's another remote CFC call from the same server. On Mon, 10 Jan 2005 16:15:41 +, Neil Middleton <[EMAIL PROTECTED]> wrote: > I'm trying to write an application that is consumable by webservices, > and for re-use, it doesn't know where on th

Determining the location of a CFC

2005-01-10 Thread Neil Middleton
I'm trying to write an application that is consumable by webservices, and for re-use, it doesn't know where on the server it might exist, only that the first folder inside the webroot is called "projects". I am trying desperately to write some code that can tell me the component path for all the c

Re: Possible to tell where a file went?

2005-01-10 Thread Les Mizzell
Micha Schopman wrote: > Except Application.cfm, which needs to start with an uppercase A for > Unix systems. ..and there's where 93% of my missing hair went! -- Les Mizzell ~| Sams Teach Yourself Regular Expressions in 10

RE: File Where DSNs are stored?

2005-01-10 Thread Dave Watts
> I am moving a CF instance from our old server to our new one. > Both are 6.1. > > Is there a file that I can copy over that contains my DSNs, > or do I need to set them up separately through administrator? If the servers are configured identically, you can copy neo-query.xml from one to the o

RE: SQL Server on Windows XP

2005-01-10 Thread Dave Watts
> I remember some discussions of SQL Server (Server instance) > being installed on Windows XP for development purposes. Is > this only available using SQL Server Developers Edition? Yes, I believe so. > If so, is that something that's included with an MSDN > subscription or anything like that

Re: SQL Server on Windows XP

2005-01-10 Thread Stephen Moretti
Burns, John D wrote: >I remember some discussions of SQL Server (Server instance) being >installed on Windows XP for development purposes. Is this only >available using SQL Server Developers Edition? If so, is that something >that's included with an MSDN subscription or anything like that or can

Re: File Where DSNs are stored?

2005-01-10 Thread Andrew Dixon
They are stored in the neo-query.xml file in the lib directory in the CF root. You can copy it over if none of the settings need changing. Andrew. On Mon, 10 Jan 2005 10:14:03 -0500, Claremont, Timothy <[EMAIL PROTECTED]> wrote: > I am moving a CF instance from our old server to our new one. Bot

File Where DSNs are stored?

2005-01-10 Thread Claremont, Timothy
I am moving a CF instance from our old server to our new one. Both are 6.1. Is there a file that I can copy over that contains my DSNs, or do I need to set them up separately through administrator? TIA, Tim ** This email and any

RE: SQL Server on Windows XP

2005-01-10 Thread Burns, John D
Great! That's just what I was looking for. Thanks! John Burns Certified Advanced ColdFusion MX Developer AI-ES Aeronautics, Web Developer -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: Monday, January 10, 2005 10:00 AM To: CF-Talk Subject: RE: SQL S

RE: SQL Server on Windows XP

2005-01-10 Thread Robertson-Ravo, Neil (RX)
Just go download http://www.microsoft.com/sql/msde/downloads/download.asp All you need for dev etc -Original Message- From: Burns, John D [mailto:[EMAIL PROTECTED] Sent: 10 January 2005 14:54 To: CF-Talk Subject: SQL Server on Windows XP I remember some discussions of SQL Server (

SQL Server on Windows XP

2005-01-10 Thread Burns, John D
I remember some discussions of SQL Server (Server instance) being installed on Windows XP for development purposes. Is this only available using SQL Server Developers Edition? If so, is that something that's included with an MSDN subscription or anything like that or can you only get it by purcha

RE: Submitting a Form through email

2005-01-10 Thread Micha Schopman
This is prohibited due to security. Email clients block this. What you can do is provide the client a link, which needs to be clicked to renew their account. Keep in mind to hash/encrypt the id of the client. I wouldn't like it if someone could change the id in the address bar to renew my account.

RE: Simple Content Management

2005-01-10 Thread RADEMAKERS Tanguy
www.opensourcecms.com maintains a bunch of default installs of various solutions you can play with - mostly php/mysql. /t >-Original Message- >From: Ben Rogers [mailto:[EMAIL PROTECTED] >Sent: Friday, January 07, 2005 5:47 PM >To: CF-Talk >Subject: SOT: Simple Content Management > >We ne

RE: Submitting a Form through email

2005-01-10 Thread Robert Bailey
Try using the method get and see if that works. My understanding is that most, if not all, email clients will block form posts from an email. Robert Bailey Software Engineer 813-230-9967 \\ mobile [EMAIL PROTECTED] www.recruitmax.com -Original Message- From: Chad McCue [mailto:[EMAIL

Re: Submitting a Form through email

2005-01-10 Thread Michael Traher
Can not see an obvious problem. I would change the target page to new one called test.cfm that only contains the code and see if that works. If it does then you need to start delving into the code that runs between index.cfm and your 'reply90day' fuse code. Since this is fusebox the variables sh

Re: Submitting a Form through email

2005-01-10 Thread Chad McCue
This email is to let you know that your account on has been inactive for 90 days. Please take a few seconds to answer the following questions.   1. Would you like to re-register for another 90

Re: Submitting a Form through email

2005-01-10 Thread Mark Drew
What is the code in the html? MD On Mon, 10 Jan 2005 08:14:17 -0500, Chad McCue <[EMAIL PROTECTED]> wrote: > I have an email being sent out to expired accounts that is a small form to > see if they would like to renew their account. The form that is in the email > contains two questions and a

Submitting a Form through email

2005-01-10 Thread Chad McCue
I have an email being sent out to expired accounts that is a small form to see if they would like to renew their account. The form that is in the email contains two questions and a hidden field carrying their acctID. I am having a problem submitting these fields, when the account receives the em

Re: search engine friendly urls

2005-01-10 Thread Doug Hughes
Here's a tutorial I wrote: http://www.doughughes.net/index.cfm/page-blogLink/entryId-45 And here's a gotcha if you use jrun: http://www.doughughes.net/index.cfm/page-blogLink/entryId-37 On Mon, 10 Jan 2005 06:28:36 -0400, Jack Dalaa <[EMAIL PROTECTED]> wrote: > If you're on IIS, I highly recom

Re: search engine friendly urls

2005-01-10 Thread Jack Dalaa
If you're on IIS, I highly recommend downloading ISAPI Rewrite (www.isapirewrite.com), then use the following rules in httpd.ini: [ISAPI_Rewrite] RepeatLimit 20 # Defend your computer from some worm attacks RewriteRule (/dyn/.*?)(\?[^/]*)?/([^/]*)/([^/]*)(.+?)? $1(?2$2&:\?)$3=$4?5$5: [N,I] Rew

Re: search engine friendly urls

2005-01-10 Thread Bert Dawson
SESconverter from http://www.fusium.com/index.cfm?fuseaction=ses.intro should do the trick. Cheers Bert (ps FYI, when fusebox 3 was released the SES stuff from formURL2attributes.cfm was tweaked and repackaged as SESconverter.cfm) On Mon, 10 Jan 2005 17:07:41 +1100, Duncan I Loxton <[EMAIL PROT

RE: Possible to tell where a file went?

2005-01-10 Thread Martin Parry
As far as I'm concerned OnRequestEnd.cfm also needs to be correctly cased - Thanks Micha, I forgot to mention that. Martin Parry Macromedia Certified Developer http://www.BeetrootStreet.co.uk -Original Message- From: Micha Schopman [mailto:[EMAIL PROTECTED] Sent: 10 January 2005 10:49 T

Re: search engine friendly urls

2005-01-10 Thread Duncan I Loxton
Thanks everyone - thats fantastic. On Sun, 09 Jan 2005 22:23:12 -0800, Tim Davis <[EMAIL PROTECTED]> wrote: > Duncan, > http://tutorial90.easycfm.com/ > > Duncan I Loxton wrote: > > >Can anyone point me in the direction of a tag or tutorial on how to > >convert a url and all its bits into a Sea

RE: Possible to tell where a file went?

2005-01-10 Thread Micha Schopman
Except Application.cfm, which needs to start with an uppercase A for Unix systems. Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 AL Amersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo 39.48.05.380 ~~

RE: General Security Discussion.

2005-01-10 Thread RADEMAKERS Tanguy
I usually add a snippet like this: to all the pages in an application which should not be accessible from the back button - like form screens in a wizard process. It's very much a quick and dirty solution, but it does work. /t >-Original Mes

RE: General Security Discussion.

2005-01-10 Thread James Smith
> The best way around this is to close the browser window, if > it's intranet you could try just making it policy that uisers > close after logging out, or if that doesn't take off, use > java script to forcibly close the window. (This seems to be > how most internet banking sites deal with the

  1   2   >