Re: Updated Broadband Stats

2007-06-15 Thread Robertson-Ravo, Neil (RX)
I think though, regardless of access speeds, the target size of pages has rarely changed over the years - 40-60K per page (not including images but ideall it will) with a 2-3 second page load. Yes, if you know you audience are going to be using 56K modem speeds then aim as low as that, but your si

RE: Updated Broadband Stats

2007-06-15 Thread Adrian Lynch
I'll see your two weeks and raise you six! No fun, no fun at all... Adrian -Original Message- From: Matt Robertson [mailto:[EMAIL PROTECTED] Sent: 15 June 2007 23:36 To: CF-Talk Subject: Re: Updated Broadband Stats I'm researching broadband acceptance rates in the U.S. right now and I

Re: FMS2 - CF8 and MySQL on the same Server?

2007-06-15 Thread Aaron Roberson
I used to have MySQL, BlueDragon Server JX and FMS2 running on a Dual Xeon box with RHEL 3. It was not good, and BlueDragon does not use nearly as much resources as CF7. What we ended up doing is getting a second server and running MySQL and BD on it. Then we dumped FMS2 altogether because it was s

Re: Translation WebService

2007-06-15 Thread Paul Hastings
Michael Eger wrote: > Below is a quick example I used to test with. I am not sure why a cfhttp call > would be treated differently than the php fileGetContent call, but it seems > like it is. Some other examples I have found seemed to show developers using maybe this? http://translate.google.com/

Re: CFEclipse Mapped Drives Projects

2007-06-15 Thread Dan Vega
Thanks for the tip Andrew! On 6/15/07, Andrew Scott <[EMAIL PROTECTED]> wrote: > > As long as you are aware that it is slower that way, and open to more > interruptions and RDS will have a file size limit based, as well as time > outs. > > On 6/16/07, Dan Vega <[EMAIL PROTECTED]> wrote: > > > > An

Re: accessing a URL variabled

2007-06-15 Thread Andrew Scott
It would be best to use mod_rewrite. If you do not have access to the server to add this ISAPI filter. Then you can write this in code, but as people have been saying is that the url needs to be parsed, that means the SES friendly option can be a specific format or you can store them as name value

Re: CFEclipse Mapped Drives Projects

2007-06-15 Thread Andrew Scott
As long as you are aware that it is slower that way, and open to more interruptions and RDS will have a file size limit based, as well as time outs. On 6/16/07, Dan Vega <[EMAIL PROTECTED]> wrote: > > Andrew, > Great question. I have found no easy way to filter drives out. So when I > goto my file

Re: Stupid Date Question

2007-06-15 Thread Andrew Scott
very true On 6/16/07, Alan Rother <[EMAIL PROTECTED]> wrote: > > Only one problem with this code > > form.Day")> > > Date Valid > > Date is invalid > > > > > If the data entered into either of the three form fields is invalid, > the CreateDate will throw an error before the IsDate can do it

Re: Access Amazon S3

2007-06-15 Thread J.J. Merrick
Steve, I have actually done pretty extensive work using s3 as an image server. I started using the S3 wrapper that Joe Danziger put together. It worked quite well once you "got" the way that S3 does things... folders aren't really folders etc. http://www.ajaxcf.com/blog/index.cfm/2006/9/7/Amazon-

Re: accessing a URL variabled

2007-06-15 Thread J.J. Merrick
The way you could do that is using MOD_REWRITE with apache. That is how most languages deal with these kind of URL's. Essentially you use a Regular Expression to "rewrite" the string into something like www.mydomain.com/url/variable into www.mydomain.com/index.cfm?url=variableetc. etc. I've done t

Re: Memory leak in CF7-based app, still trying to track it down

2007-06-15 Thread Mark Mandel
Dov, have you put the JavaLoader in your server scope? If you are using ColdFusion 7, re-initing the JavaLoader will cause a memory leak. Details here: http://www.compoundtheory.com/?action=displayPost&ID=212 Mark On 6/15/07, Dov Katz <[EMAIL PROTECTED]> wrote: > For a classloader, I use an ins

Re: accessing a URL variabled

2007-06-15 Thread Tom McNeer
Matt, The point folks are trying to make here is that, while you keep referring to a "url variable," there are no URL variables in the URL string you quoted -- not in the sense that ColdFusion (or other scripting languages, for that matter) recognize URL variables. We understand that the value yo

Access Amazon S3

2007-06-15 Thread Stephen Cassady
Has anybody done work with the Amazon S3 service, and have some code examples to share. Specifically looking for uploading and downloading files, creating folders. I'm looking to build a shared document server. Thanks in advance. Stephen Cassady ~~~

Re: CFEclipse Mapped Drives Projects

2007-06-15 Thread Dan Vega
Andrew, Great question. I have found no easy way to filter drives out. So when I goto my file system I see about 20 different drives. When I goto RDS file view I see the 6-10 servers I work on. Its less clutered to me, which is why I want to move everything to projects. Dan On 6/15/07, Andrew Sco

RE: [Macromedia][Oracle JDBC Driver]Object has been closed.

2007-06-15 Thread Mundy, Justin
Hi Aaron, Mostly resolved. It turned out that a call using a cfstoredproc to a function in an Oracle package was not passing the correct number of parameters that function was expecting. The function was expecting to be passed 3 parameters and there were only 2 cfprocparam's being passed.

Re: Trac Project

2007-06-15 Thread [Sunshine Tech Solutions] Ravi Gehlot
Ok Barney. Thanks Ravi. Barney Boisvert wrote: > I host them all through Apache's mod_python, along with all my SVN > repositories. So everything (including some "normal" websites) are > running through the single Apache daemon process. > > cheers, > barneyb > > On 6/15/07, [Sunshine Tech Soluti

Re: Trac Project

2007-06-15 Thread [Sunshine Tech Solutions] Ravi Gehlot
OK. will try Ravi. Russ wrote: > Trac runs under apache, so all you need to do is to configure a separate > virtual site. > > Russ > > > > >> -Original Message- >> From: [Sunshine Tech Solutions] Ravi Gehlot >> [mailto:[EMAIL PROTECTED] >> Sent: Friday, June 15, 2007 5:33 PM >> To: CF

Re: FMS2 - CF8 and MySQL on the same Server?

2007-06-15 Thread Matt Robertson
I wouldn't even think of running a db on the same box, despite its capacity. "some of them" getting 1 million hits per year could equate to 20k hits per day; which isn't the end o the world but its substantial. Then you throw in that there are going to be video downloads? And SATA drives and not

RE: setting xml encoding

2007-06-15 Thread Brad Wood
Ok, I've got to say that some of what you are saying is actually making sense... You are right that it is impossible to have white space outside of a tag other than the root tag since every other tag is wrapped in a parent tag, and therefore it is "in" an ancestor tag. Seeing an example with tex

Re: Stupid Date Question

2007-06-15 Thread Alan Rother
Only one problem with this code Date Valid Date is invalid If the data entered into either of the three form fields is invalid, the CreateDate will throw an error before the IsDate can do it's job. It would be better to pull this out into a try catch

Re: Updated Broadband Stats

2007-06-15 Thread Matt Robertson
I'm researching broadband acceptance rates in the U.S. right now and I just saw this thread. I came across the stats ref'd in the first post already. Looking around some more I found another source that pegged the number at 60%. Still another gave a 2005 prediction that put us at about 65% in 20

RE: Trac Project

2007-06-15 Thread Russ
Trac runs under apache, so all you need to do is to configure a separate virtual site. Russ > -Original Message- > From: [Sunshine Tech Solutions] Ravi Gehlot > [mailto:[EMAIL PROTECTED] > Sent: Friday, June 15, 2007 5:33 PM > To: CF-Talk > Subject: Trac Project > > Do I have to start

Re: CFEclipse Mapped Drives Projects

2007-06-15 Thread Andrew Scott
I will ask this question for you:-) If you have a mapped connection to the server, what are you reasons for using RDS over a direct connection? Did you RDS is actualy a connection over HTTP and is much slower than the direct connection? Just curious to know why you prefer RDS in this case? On

Re: Trac Project

2007-06-15 Thread Barney Boisvert
I host them all through Apache's mod_python, along with all my SVN repositories. So everything (including some "normal" websites) are running through the single Apache daemon process. cheers, barneyb On 6/15/07, [Sunshine Tech Solutions] Ravi Gehlot <[EMAIL PROTECTED]> wrote: > Do I have to star

Trac Project

2007-06-15 Thread [Sunshine Tech Solutions] Ravi Gehlot
Do I have to start a new daemon for every different Trac Project? Ravi. -- --- Ravi Gehlot. Sr. Management Sunshine Technology Solutions, LLC http://www.sunshinetechsolutions.com/ [EMAIL PROTECTED] Cell Phone: (407) 860-3775 Business Line: (407) 745-1433 -

Re: Stupid Date Question

2007-06-15 Thread Andrew Scott
How about. Date Valid Date is invalid On 6/16/07, Robert Harrrison <[EMAIL PROTECTED]> wrote: > > I validate dates all the time, but in this case I have to combine three > separate fields and validate if the date is valid. > > code is: > > >BAD DATE > > > Anyone see what's wr

Re: Error converting data type varchar to int.

2007-06-15 Thread Dean Lawrence
Rob, Hmmm, it certainly appears to be passing in an int and 2 strings. What is killing me is that I know I had run up against this error in the past, and for the life of me, I cannot remember exactly what the problem was. You may want to double check the field names and types that are defined in

RE: accessing a URL variabled

2007-06-15 Thread Bobby Hartsfield
Don't ask me why I even said that... Guess I had query_string on the brain... try #cgi.path_info# ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: Friday, June 15, 2007 2:16 PM To: CF-Ta

Re: Using sessions with Flash Remoting

2007-06-15 Thread John Robinson
On Jun 15, 2007, at 2:57 PM, Dave Watts wrote: >> I could do that, but the stumbling point is not really where >> to store the data, but how/where to have CF monitor these >> values and do something with them, without that CF activity >> being tied to any or all users. > > You could store the sess

Re: setting xml encoding

2007-06-15 Thread Dinner
On 6/15/07, Dave Watts wrote: > > needed there - or anything else you can think of. Just because whitespace > is > unimportant to you, doesn't mean that it's unimportant to everyone else. I've always kinda liked the whole eastern perspective on space, and how the emptiness is as important as the

Trac Project

2007-06-15 Thread [Sunshine Tech Solutions] Ravi Gehlot
Do I have to start a new daemon for every different Trac Project? Ravi. -- --- Ravi Gehlot. Sr. Management Sunshine Technology Solutions, LLC http://www.sunshinetechsolutions.com/ [EMAIL PROTECTED] Cell Phone: (407) 860-3775 Business Line: (407) 745-1433 -

RE: Translation WebService

2007-06-15 Thread Michael Eger
Below is a quick example I used to test with. I am not sure why a cfhttp call would be treated differently than the php fileGetContent call, but it seems like it is. Some other examples I have found seemed to show developers using various screen scrapping methods to get the translated text. I ca

Re: Stupid Date Question

2007-06-15 Thread Ariel Jakobovits
quotation marks and pound signs? - Original Message From: Robert Harrrison <[EMAIL PROTECTED]> To: CF-Talk Sent: Friday, June 15, 2007 1:09:32 PM Subject: Stupid Date Question I validate dates all the time, but in this case I have to combine three separate fields and validate if the dat

Re: Stupid Date Question

2007-06-15 Thread Aaron Rouse
Did not test it but I think this would work: IsDate("#Form.day#/#form.Month#/#Form.Year#") May need to switch the placement of the day and the month. I personally would use a CreateDate function either within the IsDate function or on a variable that is then used in the IsDate function. On 6/1

Re: Translation WebService

2007-06-15 Thread Eric Haskins
h 403 I am at the office and dont have my laptop (which has CF on it) I will whip something up. Forget the API.js for now and just get the post working to Google. with the correct fields $in = @file_get_contents(" http://google.com/translate_t?langpair=".urlencode($lp)."&text=".urlencode($te

RE: Stupid Date Question

2007-06-15 Thread Dawson, Michael
Your code tells CF that Day is divided by Month is divided by Year. Use the createDate() function first. You can wrap a try/catch around it. If CF can't create a valid date from your input, then isDate() will throw a catachable exception. Or use isDate(form.day & "/" & form.month & "/" & form.y

Stupid Date Question

2007-06-15 Thread Robert Harrrison
I validate dates all the time, but in this case I have to combine three separate fields and validate if the date is valid. code is: BAD DATE Anyone see what's wrong here. It's not validating. Robert B. Harrison Director of Interactive services Austin & Williams 125 Kennedy Dri

RE: Coldfusion Developer Exam - 2 different ones?

2007-06-15 Thread Andy Matthews
Your best bet is to hit the Vue.com website. It will give you a list of all of the test locations. I was lucky...my location was just a few miles from my office. -Original Message- From: [Sunshine Tech Solutions] Ravi Gehlot [mailto:[EMAIL PROTECTED] Sent: Friday, June 15, 2007 2:41 PM T

Re: Coldfusion Developer Exam - 2 different ones?

2007-06-15 Thread [Sunshine Tech Solutions] Ravi Gehlot
Hey Andy, Where can I take these tests? Ravi. Andy Matthews wrote: > It appears that I made that mistake my first time out. I thought for SURE I > was taking the 7 test, but I actually took the 6 test. I was made too > because I got advanced on the MX test, but only standard on the 7 test.

RE: Coldfusion Developer Exam - 2 different ones?

2007-06-15 Thread Andy Matthews
It appears that I made that mistake my first time out. I thought for SURE I was taking the 7 test, but I actually took the 6 test. I was made too because I got advanced on the MX test, but only standard on the 7 test. -Original Message- From: Peterson, Chris [mailto:[EMAIL PROTECTED] Sen

RE: Translation WebService

2007-06-15 Thread Michael Eger
I tested a cfhttp approach to retrieve the text, but am getting a 403 error saying I do not have permission. I do not want to implement a PHP solution for this, so I need to find another solution. Any other ideas? -Original Message- From: Eric Haskins [mailto:[EMAIL PROTECTED] Sent: F

RE: Coldfusion Developer Exam - 2 different ones?

2007-06-15 Thread Peterson, Chris
*sigh* I'm retarded, I didn't even think about one being for CF MX 6, and one for 7. Sorry to both you guys =) Chris -Original Message- From: Peterson, Chris [mailto:[EMAIL PROTECTED] Sent: Friday, June 15, 2007 3:31 PM To: CF-Talk Subject: Coldfusion Developer Exam - 2 different ones

Coldfusion Developer Exam - 2 different ones?

2007-06-15 Thread Peterson, Chris
Does anyone know the difference between the 2 exams I see on pearsonvue.com? 9A0-701 Exam DetailsColdFusion MX Developer And 9A0-702 Exam DetailsCertified Macromedia ColdFusion MX 7 Developer Exam The details don't show much for them, which one should I take to attempt Adv

RE: Using sessions with Flash Remoting

2007-06-15 Thread Kevin Aebig
Shared Objects are basically like Cookies in Flash. You can store serialized data in a small local file that can be reused down the road. The bonus is that they aren't deleted with regular cookies. You could potential implement something yourself using them, but the main issue is because you're us

RE: Using sessions with Flash Remoting

2007-06-15 Thread Andy Matthews
I believe that Flash has a built in method of handling this type of thing. It's called a shared object and it allows you to read and write sessions I believe. I personally haven't used it, but several Flash programmers I've worked with have suggested it to me. andy -Original Message-

RE: Using sessions with Flash Remoting

2007-06-15 Thread Dave Watts
> I could do that, but the stumbling point is not really where > to store the data, but how/where to have CF monitor these > values and do something with them, without that CF activity > being tied to any or all users. You could store the session tokens and timestamps in the Application scope,

Re: Dynamically populate a select box within a PDF form.

2007-06-15 Thread Jason Congerton
Hi All Still got a few problems with dynmaically populating the select box, I have connected the PDF form to the web service, which is now available from within the form. My qestion is how do i bind to the drop down list? My web service code is below for perusal. I have outputed the query resu

RE: accessing a URL variabled

2007-06-15 Thread Bobby Hartsfield
Check #cgi.query_string# ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Matthew Friedman [mailto:[EMAIL PROTECTED] Sent: Friday, June 15, 2007 11:46 AM To: CF-Talk Subject: accessing a URL variabled I have a page that I want to acce

Re: Using sessions with Flash Remoting

2007-06-15 Thread John Robinson
On Jun 15, 2007, at 11:01 AM, Dave Watts wrote: >> I tactually had a logout button in place and working for a >> while, but I figure nobody will actually use it... >> >> "A logout button... why would I use that? I'll just close the >> window and save myself the hassle." > > Maybe you could use the

CFGRID Format Flash, Adding a new row with a hidden record.

2007-06-15 Thread Michael Grove
Basically I am trying to figure out how you can have default data populate one of the columns when you add a new row to a CFGRID Flash format. -Original Message- From: cf-talk [mailto:[EMAIL PROTECTED] Sent: Friday, June 15, 2007 6:00 AM To: cf-talk Subject: ColdFusion Talk (CF-Talk): Di

Re: converting a string to a date - most efficient way?

2007-06-15 Thread Crow T. Robot
well, there you go. thanks for catching that, Greg. On 6/15/07, Greg Morphis <[EMAIL PROTECTED]> wrote: > > CreateDate is year,month,day.. CreateDate(year,month,day) > Thats why it's throwing an error > > On 6/15/07, Claude Schneegans <[EMAIL PROTECTED]> wrote: > > >>I've got a few ideas, but th

RE: setting xml encoding

2007-06-15 Thread Dave Watts
> A haiku is not XML. You did not give me an example of an XML > string with white space between the tags in which an > application would need it to handle the data. (Note, I am > not talking about white space between a corresponding start > and end tag as that would actually make sense since

RE: setting xml encoding

2007-06-15 Thread Dave Watts
> It certainly doesn't look right as Some Text and maybe some > more text are split within the root node by other nodes. > > I mean what you get by referencing myObj.root? Would expect > both text text values? That depends on how you reference myObj.root. There are various DOM API methods that

Re: Error converting data type varchar to int.

2007-06-15 Thread Dean Lawrence
On 6/15/07, Robert Rawlins - Think Blue <[EMAIL PROTECTED]> wrote: > Thanks Dean, > > That was just a typo on my part, the actual code I've been testing with has > the quote after it. Looking at the SQL code in the error message those > strings seem to encrypt fine as well. > Yea, I figured it pro

Re: setting xml encoding

2007-06-15 Thread Robertson-Ravo, Neil (RX)
It certainly doesn't look right as Some Text and maybe some more text are split within the root node by other nodes. I mean what you get by referencing myObj.root? Would expect both text text values? "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1

RE: setting xml encoding

2007-06-15 Thread Adrian Lynch
So are you saying that the following is wrong? Some text Maybe some more text Because it's more or less the same as the following surely? Adrian -Original Message- From: Brad Wood [mailto:[EMAIL PROTECTED] Sent: 15 June 2007 18:

RE: Translation WebService

2007-06-15 Thread Michael Eger
Thanks I will take a look at the API. I really agree with both Paul and you about the accuracy of the free services. We use professional translation services for our products, but I am doing a proof of concept with some languages we currently do not support, so we can understand what technical

Re: setting xml encoding

2007-06-15 Thread Dinner
> > Given the following examples: > > > > > > > > > > > > > > > > > > > > Have I changed the actual data being transferred one iota? > > Yes. The second example has two text nodes within root, and two text nodes > within book. Wow. I had been under the same im

RE: setting xml encoding

2007-06-15 Thread Brad Wood
> Have I changed the actual data being transferred one iota? Yes. The second example has two text nodes within root, and two text nodes within book. I'm not talking about a technical standpoint, I'm talking about from a practical standpoint. I still maintain that there is no practical reason to

RE: Error converting data type varchar to int.

2007-06-15 Thread Robert Rawlins - Think Blue
Hi Dean, These are a few snippets from the error dump. {call Sp_Profile_Create( (param 1) , (param 2) , (param 3) )} And (param 1) = [type='IN', class='java.lang.Integer', value='1', sqltype='cf_sql_integer'] , (param 2) = [type='IN', class='java.lang.String', value='07C67BA421500B791090E92F4C3

Re: Translation WebService

2007-06-15 Thread Eric Haskins
http://googlified.com/2006unofficial-google-translate-api/ I just used this example for a Trouble Ticket System for our customer support. This could be done in the same fashion using cfhttp I do agree with Paul this should only be used sparingly or in my case on a closed Trouble Ticket system to

Re: converting a string to a date - most efficient way?

2007-06-15 Thread Josh Nathanson
You can do this: returns '122906' This will give you '12-29-06' Then -- Josh - Original Message - From: "Crow T. Robot" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Friday, June 15, 2007 9:18 AM Subject: Re: converting a string to a date - most efficient way? > Yea, my first attem

Re: converting a string to a date - most efficient way?

2007-06-15 Thread Robertson-Ravo, Neil (RX)
I am assuming ParseDateTime() cannot be used here. "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 b

Re: converting a string to a date - most efficient way?

2007-06-15 Thread Greg Morphis
CreateDate is year,month,day.. CreateDate(year,month,day) Thats why it's throwing an error On 6/15/07, Claude Schneegans <[EMAIL PROTECTED]> wrote: > >>I've got a few ideas, but they all basically suck. Any takers? > > You can try this free custom tag: > www.contentbox.com/claude/customtags/conv

Re: CFEclipse Mapped Drives Projects

2007-06-15 Thread Dan Vega
I would have to check with the network admin here but i just logged into that server and my clock is dead on with the clock of the server I am working on. Dan ~| ColdFusion 8 beta – Build next generation applications today. Fr

Re: converting a string to a date - most efficient way?

2007-06-15 Thread Claude Schneegans
>>I've got a few ideas, but they all basically suck. Any takers? You can try this free custom tag: www.contentbox.com/claude/customtags/convertDate/viewConvertDate.cfm And test it online here: www.contentbox.com/claude/customtags/convertDate/testConvertDate.cfm (need no output mask) -- ___

Re: converting a string to a date - most efficient way?

2007-06-15 Thread Crow T. Robot
Yea, my first attempt was something similar: CreateDate(Left(pubDate,2),Mid(pubDate,3,2),Right(pubDate,2)) but it throws errors (unspecified ones at that) So does this, weirdly enough: #month#/#day#/#year# - #pubDate# On 6/15/07, Adkins, Randy <[EMAIL PROTECTED]> wrote: > > May n

Re: accessing a URL variabled

2007-06-15 Thread Matthew Friedman
I understant that and normally I use value pair but for this client, we have decided not to do for the application requirements. how do I access the url name from the url variable. I know tha in a form posting I can access the list of form fields with fieldname, is this feature in a url variabl

RE: Trac Project

2007-06-15 Thread Damien McKenna
> -Original Message- > From: Barney Boisvert [mailto:[EMAIL PROTECTED] > Sent: Friday, June 15, 2007 12:01 PM > To: CF-Talk > Subject: Re: Trac Project > > > Redmine: "Admin" menu -> "Projects" -> "New" > > Project Tracker: main dashboard -> "Add a new project" > > That sounds like a lot

RE: setting xml encoding

2007-06-15 Thread Dave Watts
> I'm not necessarily saying you're wrong, but show me one > example where the white space between tags of an xml document > would be as significant as any brother node and would need to > be used by an application. I mean, XML presents data in the > form of nested tags which contain appropria

RE: converting a string to a date - most efficient way?

2007-06-15 Thread Adkins, Randy
May not be the most efficient way but: CreateDate(MID(myString,5,2), MID(myString,3,2), MID(myString,1,2)) -Original Message- From: Ray Champagne [mailto:[EMAIL PROTECTED] Sent: Friday, June 15, 2007 12:05 PM To: CF-Talk Subject: converting a string to a date - most efficient way? So,

FMS2 - CF8 and MySQL on the same Server?

2007-06-15 Thread Jason Manaigre
Hi everyone, I'm planning on purchasing FMS2, but need to know if we have the server capacity, in ballpark terms what are we talking here? We've got: Server: Dual Xeon Quad Core 1.6 Ghz (Clovertown E5310) Ram: 4 GB ECC DDR2 SDRAM Hard Disk: 3 x 160 GB 7.2K SATA RE RAID 5 (Adaptec Controller) Wind

Re: CFEclipse Mapped Drives Projects

2007-06-15 Thread Barney Boisvert
Yeah, that's what I meant. You have to manually install a client, and configure it to run however often to keep things synced. AboutTime (www.arachnoid.com/abouttime/) is somewhat old, but I've used it with great success when I've had Windows machines about. cheers, barneyb On 6/15/07, Tom Chiv

converting a string to a date - most efficient way?

2007-06-15 Thread Ray Champagne
So, I have a file that I am uploading that contains a string that represents the date, and I need to extract the date from the filename. I have the extraction down to a string that looks like MMDDYY (ex: 120507) and I need to turn that into an ODBC date in the most efficient way possible. I've

RE: CFEclipse Mapped Drives Projects

2007-06-15 Thread Dave Watts
> > get it from their domain controller while non-domained > > machines have to do it manually. > > Or at least install a (free) NTP client. Windows has NTP functionality built in: http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en- us/net_time.mspx?mfr=true Dave Watts,

RE: setting xml encoding

2007-06-15 Thread Brad Wood
> XML is designed to be used in practically any environment. In some > environments, whitespace has significance. In others, it doesn't. Should a > haiku be written on one line? I'm not necessarily saying you're wrong, but show me one example where the white space between tags of an xml document w

Re: Trac Project

2007-06-15 Thread Barney Boisvert
That sounds like a lot more work than this: create_project.sh "Project Display Name" project_system_name Not to mention the fact that you probably also have to configure the Subversion repository, Apache to serve it, do LDAP for authentication, etc. ;) cheers, barneyb On 6/15/07, Damien McKenn

Re: accessing a URL variabled

2007-06-15 Thread Cutter (CFRelated)
Typical URL variables are name value pairs, and the URL variables are accessed via their scope (URL.varName) Steve "Cutter" Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer _ http://blog.cutterscrossing.com Matthew Friedman wrote: > I

RE: Trac Project

2007-06-15 Thread Damien McKenna
> -Original Message- > From: Barney Boisvert [mailto:[EMAIL PROTECTED] > Sent: Friday, June 15, 2007 11:45 AM > Subject: Re: Trac Project > > > > Trac supports multiple projects just fine. > > From the same install with a single hostname, single sign-on > > and a way to easily navigate be

accessing a URL variabled

2007-06-15 Thread Matthew Friedman
I have a page that I want to access the url variable, but I am not naming the variabled when I pass it to the url. ie. the url is www..com/url/90193|164 I have the website pointed to a default page, so I can see the url variables when I do a cfdump but how do I access the variable to use.

Re: CFEclipse Mapped Drives Projects

2007-06-15 Thread Tom Chiverton
On Friday 15 Jun 2007, Barney Boisvert wrote: > get it from their domain controller while non-domained machines have > to do it manually. Or at least install a (free) NTP client. -- Tom Chiverton Helping to conveniently empower fourth-generation niches on: http://thefalken.livejournal.com *

Re: Trac Project

2007-06-15 Thread Barney Boisvert
Yeah. Do your authentication with Apache, set up a shared user store in your database, and get (download/write) a plugin that'll build a project list. Depending on how you set it up, the last can be as simple as just dropping an xi:include inside your global template to grab a listing and stick i

RE: Error converting data type varchar to int.

2007-06-15 Thread Robert Rawlins - Think Blue
Thanks Dean, That was just a typo on my part, the actual code I've been testing with has the quote after it. Looking at the SQL code in the error message those strings seem to encrypt fine as well. Thanks for any further ideas guys, Rob -Original Message- From: Dean Lawrence [mailto:[EM

Re: CFEclipse Mapped Drives Projects

2007-06-15 Thread Barney Boisvert
It's probably a time sync issue. Make sure both machines have a reliable source of time sync data so their clocks match exactly. If there is a discrepancy, you can end up with the error you describe. Any *nix has time sync built in, Windows machines on a domain should get it from their domain con

RE: Trac Project

2007-06-15 Thread Damien McKenna
> -Original Message- > From: Andy Allan [mailto:[EMAIL PROTECTED] > Sent: Friday, June 15, 2007 11:12 AM > Subject: Re: Trac Project > > Trac supports multiple projects just fine. >From the same install with a single hostname, single sign-on and a way to easily navigate between them? AF

Re: CFEclipse Mapped Drives Projects

2007-06-15 Thread Tom Chiverton
On Friday 15 Jun 2007, Dan Vega wrote: > Save Could Not Be Completed > Reason: > Has been changed on the file system. Does your virus checker scan files on mapped drives ? -- Tom Chiverton Helping to simultaneously disseminate high-end synergies on: http://thefalken.livejournal.com

CF 6.1 Std to CF8 upgrade path

2007-06-15 Thread Matt Robertson
Sorry if I missed it earlier but has Adobe announced whether or not folks with CF 6.1 will be eligible for upgrade pricing to CF8? -- [EMAIL PROTECTED] Janitor, The Robertson Team mysecretbase.com ~| Create Web Applications With

CFEclipse Mapped Drives Projects

2007-06-15 Thread Dan Vega
I know this may be a cfeclipse only question but I figured I would start here. I have installed the Eclipse Plugins from Adobe that allow for RDS fileview and dataview. The plugins work great. I setup my rds servers, connecting is simple as pie and editing files using my favorite editor is a breeze

Re: Trac Project

2007-06-15 Thread [Sunshine Tech Solutions] Ravi Gehlot
YEP. Ravi. Andy Allan wrote: > Trac supports multiple projects just fine. > > Andy > > On 15/06/07, Damien McKenna <[EMAIL PROTECTED]> wrote: > >>> -Original Message- >>> From: Andy Allan [mailto:[EMAIL PROTECTED] >>> Sent: Friday, June 15, 2007 9:19 AM >>> Subject: Re: Trac Project >

Re: Trac Project

2007-06-15 Thread [Sunshine Tech Solutions] Ravi Gehlot
Just gotta figure how to install webadmin Ravi. Damien McKenna wrote: >> -Original Message- >> From: [Sunshine Tech Solutions] Ravi Gehlot >> Sent: Friday, June 15, 2007 11:06 AM >> Subject: Re: Trac Project >> >> Damien, >> I like TRAC way better. >> > > OK, I'll let you ;-) >

Re: Trac Project

2007-06-15 Thread Andy Allan
Trac supports multiple projects just fine. Andy On 15/06/07, Damien McKenna <[EMAIL PROTECTED]> wrote: > > -Original Message- > > From: Andy Allan [mailto:[EMAIL PROTECTED] > > Sent: Friday, June 15, 2007 9:19 AM > > Subject: Re: Trac Project > > > > > Mind if I ask why you don't use some

RE: Trac Project

2007-06-15 Thread Damien McKenna
> -Original Message- > From: [Sunshine Tech Solutions] Ravi Gehlot > Sent: Friday, June 15, 2007 11:06 AM > Subject: Re: Trac Project > > Damien, > I like TRAC way better. OK, I'll let you ;-) Damien McKenna Web Developer The LIMU Company ~~

Re: Trac Project

2007-06-15 Thread [Sunshine Tech Solutions] Ravi Gehlot
Damien, I like TRAC way better. Ravi. Damien McKenna wrote: >> -Original Message- >> From: Andy Allan [mailto:[EMAIL PROTECTED] >> Sent: Friday, June 15, 2007 9:19 AM >> Subject: Re: Trac Project >> >> >>> Mind if I ask why you don't use something that would be easier to >>> in

RE: Trac Project

2007-06-15 Thread Damien McKenna
> -Original Message- > From: Andy Allan [mailto:[EMAIL PROTECTED] > Sent: Friday, June 15, 2007 9:19 AM > Subject: Re: Trac Project > > > Mind if I ask why you don't use something that would be easier to > > install & manage, like Project Tracker (CFML based > > http://projecttracker.riaf

Re: Trac Project

2007-06-15 Thread [Sunshine Tech Solutions] Ravi Gehlot
Hey Russ, SQLite works just fine for Trac. I tried MySQL but I was getting weird errors and didn't really want to dig deep to find what the problem was. After I installed SQLite it worked flawlessly. Ravi. Russ wrote: > The latest version I believe supports MySQL. I haven't set it up that

RE: Using sessions with Flash Remoting

2007-06-15 Thread Dave Watts
> I tactually had a logout button in place and working for a > while, but I figure nobody will actually use it... > > "A logout button... why would I use that? I'll just close the > window and save myself the hassle." Maybe you could use the JavaScript onUnload event to capture logout informati

RE: Trac Project

2007-06-15 Thread Russ
The latest version I believe supports MySQL. I haven't set it up that way yet, as our trac database is fairly small (and it works fine using SQLlite), but if you really want to, you can make it use a MySQL db. Russ > -Original Message- > From: [Sunshine Tech Solutions] Ravi Gehlot > [

Re: Using sessions with Flash Remoting

2007-06-15 Thread John Robinson
Kevin - The chat comm. goes through CF as well. The process is pretty simple so far. When you join, you get added to a table and everyone else in that table gets a new row in a separate table that signifies an event (USER_ADDED in this case). Each client then calls a cfc function once per

RE: setting xml encoding

2007-06-15 Thread Dave Watts
> Using cfsavecontent is a possibility but I want to use the > variable on the CF side to do some xmlsearches on and I need > it in the form of an XML object. It seemed to make more > sense to generate the xml object first and then tostring it > when I was finished. I guess it is 6 of one hal

Re: Using sessions with Flash Remoting

2007-06-15 Thread John Robinson
I tactually had a logout button in place and working for a while, but I figure nobody will actually use it... "A logout button... why would I use that? I'll just close the window and save myself the hassle." I also thought about updating a timestamp every time they do something. I have a fu

  1   2   >