Re: Adobe CS3 Web Edition leaves me wanting, moving to Eclipse! W AS (RE: Frameworks)

2007-05-10 Thread Robertson-Ravo, Neil (RX)
Nonsense. Eclipse (been around for ages) and CFEclipse will run just fine on a modern machine. It takes centre stage in primetime. how much ram do you have? This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed

Re: Adobe CS3 Web Edition leaves me wanting, moving to Eclipse! W AS (RE: Frameworks)

2007-05-10 Thread Andrew Scott
not to mention you can minimize the application as well. On 5/10/07, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote: Nonsense. Eclipse (been around for ages) and CFEclipse will run just fine on a modern machine. It takes centre stage in primetime. how much ram do you have?

Re: defeating offline form posts

2007-05-10 Thread James Holmes
Many personal firewalls (e.g. Norton Internet Security) strip the referer info, so this may send a nasty message to legit users. Spoofing it is as easy as cfheader on CF and an equivalent in any other platform and if I were spamming I'd assume that I needed to set this to the online form location

Re: Digest Authentication woes

2007-05-10 Thread Jochem van Dieten
Paul Cormier wrote: cfset A1 = Hash(#UserName#:#MLSID#:#Password#, MD5) cfset A2 = Hash(GET:#Login_uri#, MD5) cfset response = lCase(Hash(#A1#:#nonce#:#A2#, MD5)) The CFML Hash function returns an uppercase hash, the RFC expects a lowercase hash. You

Re: batch file to run CFMX file

2007-05-10 Thread solongo buyantsogt
Thank you for your reply I have used the scheduler as you have suggested and it works like magic and it even lets me create txt log file when it runs. Thank you ever so much Solongo ~| Macromedia ColdFusion MX7 Upgrade to MX7

Re: Creating CF Code

2007-05-10 Thread Richard Cooper
Thanks, R ~| Macromedia ColdFusion MX7 Upgrade to MX7 experience time-saving features, more productivity. http://www.adobe.com/products/coldfusion?sdid=RVJW Archive:

Re: Remote Server Monitoring

2007-05-10 Thread Tom Chiverton
On Wednesday 09 May 2007, Steve Bryant wrote: I have Googled for such a service and found several options. I am hoping that someone might have experience with a specific service with which they have experience. I've used Cacti in the past, or are you looking for a hosted service ? -- Tom

Passing a CFC to a web service

2007-05-10 Thread Esref Atak
Hi, An error occur, when i pass a component/CFC to a web service: argument type mismatch Web service environment is ColdFusion. My development code below: cfset Variables.CentralAccountSystem = CreateObject(WebService, CentralAccountSystemDevelopment)/ cfset Variables.ClientInfo =

Re: Frameworks view in CFEclipse

2007-05-10 Thread Tom Chiverton
On Wednesday 09 May 2007, Andrew Scott wrote: 1) When going to the templates I get this error. AFAIK this is a known bug in the alpha. Could not accept Changes The currently displayed page contains invalid values. Ditto. -- Tom Chiverton Helping to elementarily negotiate scalable networks

RE: Frameworks view in CFEclipse

2007-05-10 Thread Robertson-Ravo, Neil (RX)
I also sorted mine...;-) lovely. -Original Message- From: Tom Chiverton [mailto:[EMAIL PROTECTED] Sent: 10 May 2007 10:51 To: CF-Talk Subject: Re: Frameworks view in CFEclipse On Wednesday 09 May 2007, Andrew Scott wrote: 1) When going to the templates I get this error. AFAIK this

ormAdapter / ormService in MG:U

2007-05-10 Thread Robertson-Ravo, Neil (RX)
Hi, With regards the new ormAdapter/ormService beans, I gather I can only every have these pointing to either Transfer/Reactor at any one point in time? i.e. my model-glue framework is only every using one of them. Is there a away where if I have 3 [EMAIL PROTECTED] apps that I can have 1 of the

RE: focus indicator after a click on a href.... how to?

2007-05-10 Thread the_oslo Kid
Hi Chris - and thank you! I guess my only comment would be - duh! I'll engage my brain before my keyboard before the next post! Kind regards, Knut Peterson, Chris [EMAIL PROTECTED] wrote: You just need to set you're a:visited color to be something different, this has nothing

RE: Adobe CS3 Web Edition leaves me wanting, moving to Eclipse! W AS (RE: Frameworks)

2007-05-10 Thread Eric Roberts
2 gig of ram...2.8 gz processor...in total about 1/2 terrabyte drive space... -Original Message- From: Andrew Scott [mailto:[EMAIL PROTECTED] Sent: Thursday, May 10, 2007 1:16 AM To: CF-Talk Subject: Re: Adobe CS3 Web Edition leaves me wanting, moving to Eclipse! W AS (RE: Frameworks)

RE: Adobe CS3 Web Edition leaves me wanting, moving to Eclipse! W AS (RE: Frameworks)

2007-05-10 Thread Eric Roberts
I am not sure what Ben's laptop has, but somehow I doubt is anything but a very modern machine. The systems I have worked on all had 1-2 gigs of ram. I found CFEclipse to horribly slow. At my current position, they use eclipse. To load their internet site into a project took all day (about 7

RE: Adobe CS3 Web Edition leaves me wanting, moving to Eclipse! W AS (RE: Frameworks)

2007-05-10 Thread Robertson-Ravo, Neil (RX)
Could it possibly have been AV? We had an awful time with it and Eclipse due to the JAR loading etc. We had to disable it in the end for the Eclipse dir and bam..all sweet. -Original Message- From: Eric Roberts [mailto:[EMAIL PROTECTED] Sent: 10 May 2007 12:24 To: CF-Talk Subject: RE:

Free Beer @ Scotch on the Rocks

2007-05-10 Thread Stephen Moretti
Originally we had planned a Birds of a Feather, to take place on the Thursday night of Scotch on the Rocks, but we've changed our minds. Instead, we're now having a ColdFusion Celebration, where we will be serving up free food, and yes, free beer. Throw in the high quality technical

get code prior to commit

2007-05-10 Thread Richard Cooper
Hi all, Not sure if this is possible, but is there a way of getting the code from a page prior to comitting the HTML to page. i.e. if page.cfm looked like this cfset myoutput = 'hello world' pcfoutput#myoutput#/cfoutputp When loaded, I would get the HTML phello world/p which I could run more

RE: defeating offline form posts

2007-05-10 Thread Bobby Hartsfield
The referrer is unreliable. If it stopped your problem, that's good. But if the spammer figured out that all you were checking was the referrer, he'd be back in business fairly easily. He'd either spoof the referrer or simply use your form instead of a copy of it running somewhere else.

RE: get code prior to commit

2007-05-10 Thread Bobby Hartsfield
What exactly do you want replaced. That might help. Anything you'd want to replace is already there right? Just replace it beforehand. cfset myoutput = 'hello world' pcfoutput#replacenocase(myoutput, 'hello', 'goodbye', 'all')#/cfoutputp pgoodbye world/p -Original Message- From:

Re: get code prior to commit

2007-05-10 Thread Joe Rinehart
Hey Richard, cfsavecontent variable=myContent cfset myoutput=hello world / pcfoutput#myoutput#/cfoutput/p /cfsavecontent !--- not to be morbid, first thing i thought of --- cfset replace(myContent, hello, goodbye, cruel) / cfoutput#myContent#/cfoutput -Joe On May 10, 2007, at 7:39 AM,

Re: ormAdapter / ormService in MG:U

2007-05-10 Thread Joe Rinehart
Yes - each app's ColdSpring.xml file chooses which one to use. -Joe On May 10, 2007, at 7:13 AM, Robertson-Ravo, Neil (RX) wrote: Hi, With regards the new ormAdapter/ormService beans, I gather I can only every have these pointing to either Transfer/Reactor at any one point in time?

Re: Free Beer @ Scotch on the Rocks

2007-05-10 Thread Paul Hastings
Stephen Moretti wrote: Instead, we're now having a ColdFusion Celebration, where we will be serving up free food, and yes, free beer. free beer at a conference in scotland called Scotch on the Rocks? this is funny on some many levels ;-)

Re: Free Beer @ Scotch on the Rocks

2007-05-10 Thread Andy Allan
Well we ain't giving you single malt whisky ... we could provide cheap gutrot from the local supermarket, but we do want folks to come back again next year :) Andy ps as a sponsor (and the organiser) i will buy a single malt for the first five people who come up to me and ask Who's the Daddy? :)

RE: Free Beer @ Scotch on the Rocks

2007-05-10 Thread Robertson-Ravo, Neil (RX)
It's only free for us Scots, everyone else has to pay .. he missed that bit off ... :-) -Original Message- From: Paul Hastings [mailto:[EMAIL PROTECTED] Sent: 10 May 2007 13:03 To: CF-Talk Subject: Re: Free Beer @ Scotch on the Rocks Stephen Moretti wrote: Instead, we're now

Re: get code prior to commit

2007-05-10 Thread Jake Pilgrim
As previously mentioned, cfsavecontent is a good approach. Another alternative is the onRequest method within Application.cfc. You'll have to do a little reading on this function, but the basic idea is that the end result of your page request is delivered by onRequest. If onRequest doesn't

RE: ormAdapter / ormService in MG:U

2007-05-10 Thread Robertson-Ravo, Neil (RX)
Hey Joe, But if I have the following within modelglue/unity/config bean id=ormAdapter class=ModelGlue.unity.orm.ReactorAdapter constructor-arg name=frameworkref bean=ModelGlue //constructor-arg /bean bean id=ormService class=reactor.reactorFactory

Re: get code prior to commit

2007-05-10 Thread Richard Cooper
Not quite what I was looking for. I don't want to have to change the code on whateverpage.cfm, maybe just add get the output via onRequestEnd.cfm or onRequest function of Application.cfc I was hoping that some thing like GetPageContext() might have a method that holds all of the content?

MG + Transfer for multiple sites from same code folder

2007-05-10 Thread Peterson, Chris
I am writing my first site using MG and Transfer ORM. I want to serve 2 sites with similar code bases and many shared functions, but which pull from separate databases. In my application.cfc file, I have a cfswitch on #lcase(trim(cgi.HTTP_HOST))#, then I check www.sitename.com, or sitename.com,

Re: Passing a CFC to a web service

2007-05-10 Thread Esref Atak
My problem is resolved. To learn, how i do, follow :) cfset Variables.CentralAccountSystem = CreateObject(WebService, CentralAccountSystemDevelopment)/ cfset Variables.ClientInfo = StructNew() / !--- look this line --- cfset Variables.Sonuc =

Re: Microsoft Runtime Components required for CF5

2007-05-10 Thread Kevin Roche
Dave Watts, CTO, Fig Leaf Software wrote: http://support.microsoft.com/kb/259403 Thanks Dave, I had in fact already tried to install this but the install would not run. The Page you pointed to did have a list of DLLs and looking though the list I found one was missing so copied that

Blob/clob issue

2007-05-10 Thread Bob Imperial
Well . it's almost Friday and none to soon for me. I have an issue I've run into I'm hoping someone out there might have a solution for. First off I'm working with CFMX 7, MSSQL 2k on a Win 2003 Web Server and using an ODBC driver. I have an ntext field that's not returning any data to me for

Re: Frameworks view in CFEclipse

2007-05-10 Thread Andrew Scott
Yes nice addition Now if only I can get CFUnit view to work.. On 5/10/07, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote: I also sorted mine...;-) lovely. ~| Create Web Applications With ColdFusion MX7 Flex 2.

RE: Blob/clob issue

2007-05-10 Thread Peterson, Chris
Bob, First I would try the built in MS SQL driver, and if that still fails give the Microsoft JDBC driver a shot. Chris -Original Message- From: Bob Imperial [mailto:[EMAIL PROTECTED] Sent: Thursday, May 10, 2007 8:56 AM To: CF-Talk Subject: Blob/clob issue Well . it's almost Friday

Re: Free Beer @ Scotch on the Rocks

2007-05-10 Thread Michael Wright
Stephen, Andy You guys are certainly coming up with the goods. I'm guessing tickets must be pretty near sold out by now. Can't wait - only 3 weeks to go :) On 10/05/07, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote: It's only free for us Scots, everyone else has to pay .. he missed that

Re: Still having problems with encrypt

2007-05-10 Thread Les Mizzell
It seems you are getting the string to decrypt from a DB - are you originally inserting the encrypted string into the DB with cfqueryparam? I'm validating the submitted form data before encrypting, and then just doing a straight insert without cfqueryparam, which I was pretty sure would

Re: Still having problems with encrypt

2007-05-10 Thread Teddy R. Payne
Les, What are you trying to achieve in the encryption? If you are trying to encrypt a form submission, the data is still passed in plain text prior to the action page. Unless the form submission process resides in a folder that has SSL enabled on it, then you could be doing work for nothing. On

Re: Still having problems with encrypt

2007-05-10 Thread Les Mizzell
Will Tomlinson wrote: Les, Have you tried setting some of the optional arguments to see what happens? Here's some good info: http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=e546373d Trying this: cfset encrpt_myVAR=encrypt(#var.myVAR#, #getENR.varinfo#, DES, Hex) Believe it or

Re: Still having problems with encrypt

2007-05-10 Thread Les Mizzell
Ahhh - here's a clue (I hope) - what CHARACTER SET should I have the table cells storing this defined as? (MySQL) I just checked and it's Latin 1 like the other data, but I don't think that's going to be correct, is it? cfif IsDefined(form.fm_test) AND #fm_test# NEQ cfset

RE: Blob/clob issue

2007-05-10 Thread Bob Imperial
Unfortunately, I've not been able to successfully register a ds in cf w/ms sql drivers, yet another story ;). So, off to pull down jdbc drivers from ms and see what I can break. Gracias! -Original Message- From: Peterson, Chris [mailto:[EMAIL PROTECTED] Sent: Thursday, May 10, 2007

Re: Dir listing with cfdirectory

2007-05-10 Thread Shannon P
I see what this is supposed to do, but for the life of me I can't get it to work. Shannon For each directory, you could to a Query of Queries on the existing query to see if there are any records with parent equal to the current directory and type=file. If that RecordCount is zero, then you have

RE: Blob/clob issue

2007-05-10 Thread Peterson, Chris
I have also had good luck with the jTDS open source JDBC driver here : http://jtds.sourceforge.net/ Here is what you will need once you stick the JDBC drivers in the JVM path for CF and re-start coldfusion: Add a datasource of type 'other' The JDBC URL is:

Re: Scorpio

2007-05-10 Thread Cutter (CFRelated)
No, Scorpio M M's taste like Java Steve Cutter Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer _ http://blog.cutterscrossing.com Brad Wood wrote: I have one thing to say: ColdFusion Scorpio Flavored MM's ~Brad Andy

Subversion... CF's built-in webserver ... Can I do this?

2007-05-10 Thread Will Tomlinson
I've been reading the subversion docs, trying to wrap my head around things. Could someone shed some light on how I implement SVN in my particular situation? 1. I still use CF's built-in web server for development/testing. 2. All my sites' root folders reside in wwwroot. 3. I dloaded and

Re: Subversion... CF's built-in webserver ... Can I do this?

2007-05-10 Thread Jochem van Dieten
Will Tomlinson wrote: I've been reading the subversion docs, trying to wrap my head around things. Could someone shed some light on how I implement SVN in my particular situation? 1. I still use CF's built-in web server for development/testing. 2. All my sites' root folders reside in

RE: Subversion... CF's built-in webserver ... Can I do this?

2007-05-10 Thread Bobby Hartsfield
The repository is more or less the backup. It's not what you want served up on your web server. You need to create the repo in another location. I use my backup drive that gets backed up nightly to put any repos. My main webroot (where I put all applications) is something like... D:\webroot

Re: get code prior to commit

2007-05-10 Thread Richard Cooper
OK, I've got a way of doing it but I reckon there must be a better way as I think it will gobble up resources page.cfm [code] html head titleHello/title meta http-equiv=Content-Type content=text/html; charset=utf-8 /head body cfset myvar = 'hello world' cfoutput#myvar#/cfoutput /body /html

RE: Dir listing with cfdirectory

2007-05-10 Thread Ben Nadel
Is it throwing an error? Or just not doing what you want? .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Shannon P [mailto:[EMAIL PROTECTED] Sent: Thursday, May

RE: CFCs that extend CFCs - want to cfinclude a function

2007-05-10 Thread Tero Pikala
I'm assuming you have some general functions that you would like to use within several CFCs? How about writing functions.cfm as a separate utility component that is injected into subset.cfc when it's instantiated and then you can use your function within subset.cfc when you overwrite original

Re: Dir listing with cfdirectory

2007-05-10 Thread Shannon P
I get Element PARENTDIRECTORY is undefined in QDIR. or Element PARENT is undefined in QDIR. removing #qDir.parent#\ I get a new error Error Executing Database Query. Query Of Queries runtime error. The select column reference [parentdirectory] is not a column in any of the tables of the FROM

RE: Still having problems with encrypt

2007-05-10 Thread Christine Davis
Les, We had a similar problem with both our Java and CF encrypt/decrypt code. We found that our MS-SQL server was being helpful and converting, trimming or otherwise manipulating the string we sent in. We took an additional step and base64 encoded the string before we saved it to the

RE: Dir listing with cfdirectory

2007-05-10 Thread Adkins, Randy
The only issue I see is to truly determine that a folder ONLY contains folders, is that you have to access each of the subdirectories within the said folder to check if any files exists. If so, then it does not meet your requirement. So you would need to do a recursive listing for each directory

RE: Dir listing with cfdirectory

2007-05-10 Thread Ben Nadel
Sorry, the column name is directory qDir.directory .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Shannon P [mailto:[EMAIL PROTECTED] Sent: Thursday, May 10, 2007

help with java and chat server

2007-05-10 Thread Mik Muller
A few months ago I posted some help requests for using Babylon Chat server and got some suggestions, but I'm just too flat out to adequately trouble-shoot this on my own. I need help and I'm willing to pay. And since this isn't a job type posting I thought I'd post my request here. Hope it's

Re: Still having problems with encrypt

2007-05-10 Thread James Holmes
I'd definitely use cfqueryparam for a start. On 5/10/07, Les Mizzell wrote: It seems you are getting the string to decrypt from a DB - are you originally inserting the encrypted string into the DB with cfqueryparam? I'm validating the submitted form data before encrypting, and then just

Ajax Thumbnail Gallery Filter Grid

2007-05-10 Thread mjs
Hi All, Does anyone have any suggestions/pointers on creating a Thumbnail Gallery grid with filtering and pagination (kinda like http://www.endless.com/b/241993011/ref=topnav_sd_mn_gw/002-9754615-5336853?ie=UTF8deptLanding=1). My goal is to create a thumbnail page with the ability to live

Re: Subversion... CF's built-in webserver ... Can I do this?

2007-05-10 Thread Will Tomlinson
thanks to bobby for gettin' me all fixed up with svn. Man, this thing is slick! Doubt I woulda figured it out otherwise. I'll post the steps I'm using to make it work so it might be of use to others. Will ~| Upgrade to Adobe

RE: Subversion... CF's built-in webserver ... Can I do this?

2007-05-10 Thread Dawson, Michael
Yes, please post what you have learned and how you have your configuration setup. I would appreciate you like nobody's business. ;-) M!ke -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Thursday, May 10, 2007 10:45 AM To: CF-Talk Subject: Re: Subversion...

Re: Still having problems with encrypt - CFusion_Encrypt() Works!

2007-05-10 Thread Les Mizzell
This works great (out of the 20 or so test I've done so far: cfset encrpt_myVAR=CFusion_Encrypt(#var.myVAR#,#getENR.varinfo#) Why encrypt/decrypt isn't working correctly is totally beyond my understanding. I tried changing the database type to ascii with the same results.

Re: Ajax Thumbnail Gallery Filter Grid

2007-05-10 Thread Massimo Foti
My goal is to create a thumbnail page with the ability to live filter and certain criteria. I am not sure if Spry is the best direction or are there other libraries, code available (free or pay). Here you can find a demo app, build using Spry and CF. It display records, with filtering by

RE: Blob/clob issue

2007-05-10 Thread Dave Watts
Unfortunately, I've not been able to successfully register a ds in cf w/ms sql drivers, yet another story ;). So, off to pull down jdbc drivers from ms and see what I can break. If you're unable to use the DataDirect drivers that come with CF to connect, you will likely not be able to use

RE: defeating offline form posts

2007-05-10 Thread Dave Watts
Offsite forms can be submitted to use your email templates as Spam blasters or else to send Spam to you, and such submittals can be automated so they'll do their dirty work without any human intervention. I just recently had this problem with some creep attacking a site of mine with a

Re: Richest ColdFusion E-Commerce Site

2007-05-10 Thread mjs
Thank you Massimo!! What is the URL? ~| ColdFusion MX7 by AdobeĀ® Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV Archive:

Re: Richest ColdFusion E-Commerce Site

2007-05-10 Thread Massimo Foti
Thank you Massimo!! What is the URL? Sorry! I forgot the most important thing: http://www.massimocorner.com/spry/dynamic_spry.zip Massimo Foti, web-programmer for hire Tools for ColdFusion and Dreamweaver developers: http://www.massimocorner.com

Re: Ajax Thumbnail Gallery Filter Grid

2007-05-10 Thread mjs
Thank you Massimo!! What is the URL? My goal is to create a thumbnail page with the ability to live filter and certain criteria. I am not sure if Spry is the best direction or are there other libraries, code available (free or pay). Here you can find a demo app, build using Spry and

Re: Ajax Thumbnail Gallery Filter Grid

2007-05-10 Thread Massimo Foti
Sorry! I forgot the most important thing: http://www.massimocorner.com/spry/dynamic_spry.zip Massimo Foti, web-programmer for hire Tools for ColdFusion and Dreamweaver developers: http://www.massimocorner.com

Re: Ajax Thumbnail Gallery Filter Grid

2007-05-10 Thread mjs
THANK YOU VERY MUCH Sorry! I forgot the most important thing: http://www.massimocorner.com/spry/dynamic_spry.zip Massimo Foti, web-programmer for hire Tools for ColdFusion and Dreamweaver developers: http://www.massimocorner.com

Re: Frameworks view in CFEclipse

2007-05-10 Thread Mark Drew
*Sigh* whats wrong with the that view? Also, try emailing the cfeclipse user's group. They should also give you a hand. http://groups.google.com/group/cfeclipse-users?lnk=srg MD On 10 May 2007, at 13:56, Andrew Scott wrote: Yes nice addition Now if only I can get CFUnit view to work..

Re: Frameworks view in CFEclipse

2007-05-10 Thread Mark Drew
I have posted an intro screen-cast of using the frameworks view over at the CFEclipse web-site. I shall be posting more tomorrow morning. I tend to record these in my early morning (6 am) coding sessions so there will be more coming up over the next few weeks. Also, from now on I shall

Re: MG + Transfer for multiple sites from same code folder

2007-05-10 Thread Joe Rinehart
Hey Chris, If you're on the MG 2.0 code base (Unity), use two different ColdSpring.xml files to configure the application for the context - just edit index.cfm to switch which one to use based on host, etc. -Joe On May 10, 2007, at 8:44 AM, Peterson, Chris wrote: I am writing my first

OT: CF makes me look like a champ yet again

2007-05-10 Thread Jonathan Block
In record time I was able to create a tool that allows people to see who uses any website with on HTML tag or firefox extension... and its all powered by CF in the background. Behind the scenes, its dialing into a CF powered mashup which does geo IP locations and mixes it into google maps. This

RE: pop-up calendar selector

2007-05-10 Thread Stephens, Larry V
Check dynamicdrive.com -Original Message- From: Mike | NZSolutions Ltd [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 09, 2007 8:21 PM To: CF-Talk Subject: OT: pop-up calendar selector Sorry for the OT... Just trying to get my hands on a simple pop-up calendar for selecting a date

RE: MG + Transfer for multiple sites from same code folder

2007-05-10 Thread Peterson, Chris
Joe, I was hesitating to jump onto the beta MG:U because this is such a major deal for my client, and MG:U is still beta. I honestly haven't even downloaded the Unity release for only that reason, and went with the lately 1.x release. I followed along Ray Camden's Model Glue series, and I have

RE: Using .jar file with cfobject

2007-05-10 Thread Bruce, Rodney S C-E LCMC HQISEC/Signal Solutions
Thanks for your help. But still getting the error. This is the line were its erroring: cfset MakeImage.transcode(input, output) / The png file is being created. (the empty one, not with image). The svg is in the same directory as were the png file is being created. I have opened the svg file

Re: pop-up calendar selector

2007-05-10 Thread Massimo Foti
http://www.olimpo.ch/tmt/tag/datepicker/ Massimo Foti, web-programmer for hire Tools for ColdFusion and Dreamweaver developers: http://www.massimocorner.com ~|

Re: Subversion... CF's built-in webserver ... Can I do this?

2007-05-10 Thread Will Tomlinson
Here's the steps I used. I'm not saying it's the best way to implement SVN, but it sure does work! Thanks to Bobby for his help! How to Use Subversion for Version Control, Using Tortoise SVN My System: Windows Vista, CFMX7 using the built-in CF web server. Download Subversion here:

Debug on Production servers

2007-05-10 Thread Jim Louis
Hello, I was doing a search on a custom tag and came across a site that had its debug information on a live page that was indexed by google. This is what i searched for then. queries 0 ms .cfm it came up with 98500 hits. My question what is my responsability to them as a community member

Re: Debug on Production servers

2007-05-10 Thread Robertson-Ravo, Neil (RX)
Restrict it by IP, but obviously you don't have it on prod :-) 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

RE: Debug on Production servers

2007-05-10 Thread Dave Watts
My question what is my responsability to them as a community member let them know about this? I don't think you have any responsibility to them, to be perfectly honest. If you want to be a nice guy and drop them a line, more power to you, though. Unfortunately, in our litigious world, you may

RE: Debug on Production servers

2007-05-10 Thread Peterson, Chris
Well, there is nothing you can do to make Google stop spidering someone else's site, but you can always email them and link to a page showing them how to disable debugging. Chris -Original Message- From: Jim Louis [mailto:[EMAIL PROTECTED] Sent: Thursday, May 10, 2007 1:54 PM To:

RE: Adobe CS3 Web Edition leaves me wanting, moving to Eclipse! W AS (RE: Frameworks)

2007-05-10 Thread owner
I can't disable AV here to test that theory...all I know was it was like trying to run the current version of photoshop on a 286 hehehe. Eric Could it possibly have been AV? We had an awful time with it and Eclipse due to the JAR loading etc. We had to disable it in the end for the Eclipse

Re: Subversion... CF's built-in webserver ... Can I do this?

2007-05-10 Thread Josh Nathanson
Here's the steps I used. I'm not saying it's the best way to implement SVN, but it sure does work! Thanks to Bobby for his help! Thanks Will, this will help me out a lot. I'm just getting into SVN as well. -- Josh ~|

Re: Subversion... CF's built-in webserver ... Can I do this?

2007-05-10 Thread owner
Yeah...I am not a big fan of Open Source and I think it is awesome too. The way I generally use it is to have both dev and prod be checked out directories from the repository. I then have the repository set up to commit the file to prod when I commit the dev file. This allows me to save and

RE: Adobe CS3 Web Edition leaves me wanting, moving to Eclipse! W AS (RE: Frameworks)

2007-05-10 Thread Russ
Eclipse is slow... definatelly slower then CFStudio and takes up more ram then Dreamweaver. It is also a lot more flexible and extensible, not to mention free. We've found that using something like http://www.superspeed.com/desktop/supercache.php improved things a bit especially for svn

RE: Blob/clob issue

2007-05-10 Thread Bob Imperial
Dave this is what I've run into with every attempt so far: Connection verification failed for data source: Faculty_Profile2 java.sql.SQLException: [Macromedia][SQLServer JDBC Driver]Error establishing socket. Connection refused: connect The root cause was that: java.sql.SQLException:

CFUNITED news: Selling CF to clients, CF open source, CFbughunt

2007-05-10 Thread Michael Smith
Here is the ColdFusion and Fusebox news: * ColdFusion Open Source Code-off * CFBugHunt - help us find CF 7 bugs - http://www.cfbughunt.org/ * CFLive - TODAY Charlie Arehart New in CFMX 6 and 7: What Did You Miss? * New CFUNITED podcasts released http://cfunited.com/blog/index.cfm/podcast - Dave

Re: Adobe CS3 Web Edition leaves me wanting, moving to Eclipse! W AS (RE: Frameworks)

2007-05-10 Thread Marlon Moyer
You could always use SVK to check out the project from your subversion repo. SVK doesn't use the .svn directory approach and in essence looks like an exported version of the project. On 5/9/07, Andrew Scott [EMAIL PROTECTED] wrote: Thats why tools like Beyond Compare is good, you only migrate

Re: Adobe CS3 Web Edition leaves me wanting, moving to Eclipse! W AS (RE: Frameworks)

2007-05-10 Thread Doug Bezona
It can be slow to start up, but I haven't had any real issues with speed once it's up and running. RAM usage does tend to be around 200MB or so for my install. This tends to vary depending on how many plugins are installed and views are open. It's definitely faster than Dreamweaver in almost all

Db query help needed

2007-05-10 Thread DKI
Hi, I have a sql query like this that works fine: SELECT itemID, (SELECT COUNT (DISTINCT categoryid) FROM categories WHERE itemidID = items.itemID) AS categorycount FROM items But what i need is not the count, but the actual list of categories, as one column, in a single subquery. I tried the

RE: Blob/clob issue

2007-05-10 Thread Peterson, Chris
Check your SQL server configuration and make sure that TCP/IP access is enabled (its off by default) Chris Peterson -Original Message- From: Bob Imperial [mailto:[EMAIL PROTECTED] Sent: Thursday, May 10, 2007 3:07 PM To: CF-Talk Subject: RE: Blob/clob issue Dave this is what I've run

editing session variables

2007-05-10 Thread Won Lee
Hi, I want to edit the values of someone else's session variables. I have a session variable named session.user.isLoggedIn. I want to set it to 0. I have the session.sessionID. The reason I want to do this is because I want to be able to close my old session when I log in from another

RE: Db query help needed

2007-05-10 Thread Peterson, Chris
You cannot retrieve multiple records in a sub-query, only one. You want SELECT DISTINCT A.itemID, B.CategoryID FROM items A INNER JOIN Categories B ON A.ItemID = B.itemID WHERE A.itemID = whatever If you only want category ID's and nothing else, try: SELECT DISTINCT categoryID FROM categories

RE: Blob/clob issue

2007-05-10 Thread Bob Imperial
It is enabled, although I'm definitely not a db admin by a long shot. I know the basics of to get around and work within enterprise manager and such. But I'm always willing to break things ;) Bob -Original Message- From: Peterson, Chris [mailto:[EMAIL PROTECTED] Sent: Thursday, May

Re: Subversion... CF's built-in webserver ... Can I do this?

2007-05-10 Thread Will Tomlinson
Will Tomlinson wrote: Have you read the Introduction chapter of the SVN Book? ISTM you are confusing a repository with a working copy. Jochem Yeah I read that, but I'm kinda dense when it comes to this stuff. I just got more confused. Got it mostly straight now and working ok I think..

Re: help with java

2007-05-10 Thread Mik Muller
Bump. Someone help me out here, please. A few months ago I posted some help requests for using Babylon Chat server and got some suggestions, but I'm just too flat out to adequately trouble-shoot this on my own. I need help and I'm willing to pay. And since this isn't a job type posting I

Re: Subversion... CF's built-in webserver ... Can I do this?

2007-05-10 Thread Will Tomlinson
Here's the steps I used. I'm not saying it's the best way to implement SVN, but it sure does work! Thanks to Bobby for his help! Thanks Will, this will help me out a lot. I'm just getting into SVN as well. -- Josh No prob. I should probably add some info to my lil tutorial. Like, it's

Re: Annoying Dreamweaver error

2007-05-10 Thread Casey C Cook
I have seen this error, in our case it seems to hang on index.cfm for some of our older applications. Im not sure if its related to file size, or the fact that the person tried to mimic fusebox in a non fusebox app and its trying something in the background to do something with all the files it

RE: Adobe CS3 Web Edition leaves me wanting, moving to Eclipse! W AS (RE: Frameworks)

2007-05-10 Thread owner
BTW...anyone have Eclipse installed on Vista yet? Eric I can't disable AV here to test that theory...all I know was it was like trying to run the current version of photoshop on a 286 hehehe. Eric Could it possibly have been AV? We had an awful time with it and Eclipse due to the JAR

RE: Blob/clob issue

2007-05-10 Thread Peterson, Chris
Bob, Have you verified that your SQL server is listening on the standard port 1433? Try to telnet to it: Telnet servername 1433 If that doesn't open a blank screen telnet connection, that is your issue. Chris -Original Message- From: Bob Imperial [mailto:[EMAIL PROTECTED] Sent:

UPDATE: REPOST: CFMX 7 / Server restarts

2007-05-10 Thread blists
By removing all the cfchart calls and revising code in custom tags that does a dollarformat() on a zero value, my server does not crash any more. I'm stuck without graphs, and am going to open a ticket with adobe to try to figure out why the dollarformat() on a zero value and cfchart both

News Application with rolling animation on the header

2007-05-10 Thread Ali Majdzadeh
Hi: Is there any CF tutorial /free application that I can use to make a news part sof my website. I saw a javascript code that showed the news rolling on the header of the page and looked very nice. Is there any CF/JS one? Thanks Benign

  1   2   >