Re: cfschedule - retrieve properties

2014-10-23 Thread AJ Mercer
I had to go to the 2nd page off google results - What? http://www.thecfguy.com/blog/listing-scheduled-task/ findTask() On 23 October 2014 18:09, AJ Mercer wrote: > with coldfusion (8) is there a way to retrieve the properties of an > existing schedule? > > I want to get the sta

cfschedule - retrieve properties

2014-10-23 Thread AJ Mercer
with coldfusion (8) is there a way to retrieve the properties of an existing schedule? I want to get the start time so I can compare to local time to highlight if it needs to be updated because of a change in day light saving -- *AJ Mercer* <http://webonix.net> | <http://webonix.

Re: "The long tail of ColdFusion fail"

2014-03-19 Thread AJ Mercer
bit of Adobe PR coming out https://twitter.com/coldfusion/status/446212052982321152 https://twitter.com/coldfusion/status/446211830839402496 The majority of attacks we are seeing are exploiting software that are not up-to-date on the latest security updates. #ColdFusion

Re: "The long tail of ColdFusion fail"

2014-03-17 Thread AJ Mercer
CFers are just as bad - take a look back on the PHP comments in this thread :-P But you are right, the focus on this article should have been about keeping your systems upgraded and patched - irrespective of language used. On 18 March 2014 12:04, Gerald Guido wrote: > > On Mon, Mar 17, 2014 a

Re: SOT: Client wants CMS that functions similar to Joomla, for example

2013-07-23 Thread AJ Mercer
another (free) open source CFML CMS for your consideration Farcry CMS http://www.farcrycore.org/ CMSs do not replace a programmer - they are for managing content. Most will have a WYSIWYG editor so they can do formatting via a tool bar. If customisation is required, you will most likely wan

Re: how to detect null value from QoQ result

2013-07-01 Thread AJ Mercer
what do you see when you dump 'myAnotherQuery'? is it NULL?? On 2 July 2013 12:03, Nathan Chen wrote: > > I tried it but for some reason it just wouldn't work. > > Nathan > > -----Original Message- > From: AJ Mercer [mailto:ajmer...@gmail.com] > S

Re: how to detect null value from QoQ result

2013-07-01 Thread AJ Mercer
try Select id from myAnotherQuery Where [some where clause] myQuery.RecordCount EQ 0 On 2 July 2013 11:38, Nathan Chen wrote: > > All: > > I have a simple query of query as follow: > > Select count(*) as r_count from myAnotherQuery > Where [some where clause] > > > I want the result to

Re: A live CFML code testing tool

2013-05-18 Thread AJ Mercer
Is this on the same server you provide hosting on? On 19 May 2013 10:26, Russ Michaels wrote: > > I was just thinking the other day, wouldn't it be handy if there was a > website where you could just type in some CF code and have it executed > instantly. this would really make it so much easie

Re: A live CFML code testing tool

2013-05-18 Thread AJ Mercer
wrote: > > > > > > > Russ, what will happen if I do: > > > > > > > > > > > > > > > > > > > > > > > > And put a cflog in there as well (which would suck up disk space). > > > > > > >

Re: A live CFML code testing tool

2013-05-18 Thread AJ Mercer
It is not all that hard to download Railo Express to test code. http://www.getrailo.org/index.cfm/download/ These really seems to be a very risky thing to do. On 19 May 2013 10:26, Russ Michaels wrote: > > I was just thinking the other day, wouldn't it be handy if there was a > website wh

Re: question on cfloop

2013-02-28 Thread AJ Mercer
not on Railo 4 is this the whole script? is it in at Custom Tag? On 1 March 2013 08:22, fun and learning wrote: > > I have a query on looping in coldfusion.Why does the below loop run twice? > > >#j# > > > I thought the above code should return only 1, but it returns 1 2 > > ~~

Re: EXF Photo Information

2013-02-27 Thread AJ Mercer
Railo 4 is now using Sanselan library http://commons.apache.org/proper/commons-imaging//index.html >From the Railo team > With Railo 4 we decided to switch the library used to handle images, but > the lib is only halfway used ATM On 28 February 2013 14:04, Justin Scott wrote: > > > Not

Re: EXF Photo Information

2013-02-24 Thread AJ Mercer
you can try CFIMAGE action="info" https://github.com/getrailo/railo/wiki/Documentation:4_0:Tags:cfimage You can download and test out quickly with Railo Express http://www.getrailo.org/index.cfm/download/ On 25 February 2013 10:34, Jenny Gavin-Wear wrote: > > Hi all, > > I am still

Re: CF10 REST has completely tanked

2013-01-15 Thread AJ Mercer
when you tried to register a different ReST app, did you take the old one out of the rest search path? this.restsettings.cfclocation Or try this this.restsettings.skipCFCWithError=true On 16 January 2013 03:35, Jim Campbell wrote: > > Hi all - > > I've got some very strange errors in

Re: CFLAP extensionAttribute1 comma

2012-09-20 Thread AJ Mercer
CFLDAP has a ' separator ' attribute which defaults to comma - try setting this http://cfquickdocs.com/#cfldap On 21 September 2012 01:31, Bob Chang wrote: > > Hello, > > I have a need to add staff title's to the extensionAttribute1 field in > Active Directory. I found that titles that contain

Re: ColdFusion 10 : ReST calls with user and password

2012-08-06 Thread AJ Mercer
oh, ok. I will play around with this. Thank you. On 7 August 2012 11:50, Dave Watts wrote: > > > That is for a challenge/response security set at the web server level. > > > > For a ReST call, you can pass in a user and password. > > > > In CF, this can be done with cfhttp > > > > > http://li

Re: ColdFusion 10 : ReST calls with user and password

2012-08-06 Thread AJ Mercer
That is for a challenge/response security set at the web server level. For a ReST call, you can pass in a user and password. In CF, this can be done with cfhttp http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=Tags_g-h_09.html On 7 August 2012 09:59, Dave Watts wrote: > >

ColdFusion 10 : ReST calls with user and password

2012-08-06 Thread AJ Mercer
Would someone be able to direct me to some information on how to access user and password passed to a ReST service in ColdFusion 10 please? -- *AJ Mercer* <http://webonix.net> | <http://webonix.org> http://twitter.com/webonix Railo Community Manager <http://www.getrail

Re: The age old Question. Which framework

2012-07-24 Thread AJ Mercer
I think FW/1 is great for a barebones framework where you don't want it getting in your way. I think the documentation and examples are excellent. As I understand it, the next version will be packaged with DI/1 ( dependency Injection) and with routing you can sort of do ReST stuff (though I don't

Re: Best practices

2012-06-19 Thread AJ Mercer
If you use cfsetting show output only (cant recall attribute) You have to wrap html in cfoutput tags On Jun 20, 2012 7:20 AM, "Rob Voyle" wrote: > > Hi Folks > > I am wondering what is considered best practices for the tag > > I have a large page many tables, paragraphs etc. that has text and a

Re: Wait for File to Get Written

2012-05-29 Thread AJ Mercer
maybe use cfdirectory and look at 'dateLastModified' to wait for it to be 2~5 old (so you know it has finished writing to it) I would make a retry loop, say 5 times with a sleep in between and break out if file found On 30 May 2012 07:03, Mary Jo Sminkey wrote: > > I've run into this a number

Re: CFHIGHCHARTS

2012-05-21 Thread AJ Mercer
Gert has resolved the issue on this page http://wow.getrailo.org/highcharts/index.cfm?chart=area_basic On 22 May 2012 08:27, AJ Mercer wrote: > I have reported the error on this page to the Railo team > http://blog.getrailo.com/post.cfm/railo-highcharts > > > On 22

Re: CFHIGHCHARTS

2012-05-21 Thread AJ Mercer
I have reported the error on this page to the Railo team http://blog.getrailo.com/post.cfm/railo-highcharts On 22 May 2012 00:10, Michael Dinowitz wrote: > > I was looking around for CF integration with the highcharts graphing > package and I found a reference to CFHIGHCHARTS on a Railo p

Re: CF 10 Release

2012-04-17 Thread AJ Mercer
is in finals that week so no travel at all at the > end of April/beginning of May. > > On Tue, Apr 17, 2012 at 8:37 AM, AJ Mercer wrote: > > > > I would guess not at MAX as it will get lost within the Create Suite > > product hype. > > But then again, cf.O

Re: CF 10 Release

2012-04-17 Thread AJ Mercer
I would guess not at MAX as it will get lost within the Create Suite product hype. But then again, cf.O() and CFOANZ is preaching to the choir. Maybe more of a HTML5 conference?? WebDU [1] is in a few of weeks. So Ray - you up for a trip to Sydney AU ;-) [1] http://www.webdu.com.au/ On 17 Apr

Re: CF 10 Release

2012-04-16 Thread AJ Mercer
Maybe they will save it for http://cfobjective.com.au/ Blatant plug :-P 1~2 November 2012 :: Melbourne, AU On 17 April 2012 08:29, Andrew Scott wrote: > > Considering 8 and 9 where, I think that is a very safe guess. > > -- > Regards, > Andrew Scott > WebSite: http://www.andyscott.id.au/

Re: REST on Pre CF 10?

2012-04-16 Thread AJ Mercer
ColdBox and FW/1 (and most likely others) frameworks have ReST capabilities built in. On 17 April 2012 05:40, N kips wrote: > > >https://github.com/atuttle/Taffy > > > >Excellent RESTful framework, in my opinion. > > > > > > > > > >> > >> Can a REST API webservice be implemented in Pre CF 10 e

Re: CFFILE to \\tsclient\c$\

2012-01-29 Thread AJ Mercer
; > Brook > > > > -Original Message- > From: AJ Mercer [mailto:ajmer...@gmail.com] > Sent: January-29-12 5:25 PM > To: cf-talk > Subject: Re: CFFILE to \\tsclient\c$\ > > > you will need to run your CF services with a named account and that account

Re: CFFILE to \\tsclient\c$\

2012-01-29 Thread AJ Mercer
you will need to run your CF services with a named account and that account will need access permissions to that share On 30 January 2012 09:17, Brook Davies wrote: > > Anybody ever tried to call CFFILE or CFDIRECTORY to a connected RDP > session? > I'm getting an access denied error even thou

Re: Programattically CREATE DATABASE in MySQL

2012-01-19 Thread AJ Mercer
Hi Matt, Are you thinking of the admin API to create the dsn? On 20 January 2012 02:39, Matt Quackenbush wrote: > > I think you'll want to look into the ColdFusion Administrator API. There > are hooks for doing just these types of tasks programmatically. If you are > on Railo, it also has an

Re: CFBuilder 2 & Search

2011-08-04 Thread AJ Mercer
cool. Hat tip to Sean Corfield :-) On 5 August 2011 07:02, Justin Hansen wrote: > > Ahhh Thank you that's much much better! This has been bugging > me for weeks! Thank you! Thank you! Thank you! > > Justin > > -Original Message- > From: Wil Genovese [mailto:jugg...@trunkfu

Re: CFBuilder 2 & Search

2011-08-04 Thread AJ Mercer
in the search dialog you will see three tabs. I think the default on is JAVA, and you want one of the others. Once you have found the one you want, there is a customise button on the search dialog and you can turn the other 2 off. On 5 August 2011 04:42, Justin Hansen wrote: > > In CFBuilder

Re: CFML in the Cloud

2011-05-11 Thread AJ Mercer
Mark Drew has a blog post on how to deploy Railo onto CloudBees http://www.markdrew.co.uk/blog/post.cfm/running-railo-in-cloudbees On 12 May 2011 09:29, Maureen wrote:

Re: Help us Please - CF 5 Server Licenses

2011-05-05 Thread AJ Mercer
t; Thank-you all for your replies. > > A. Open Source > Last month, a student worker setup a test Railo server and moved a copy of > the CF code there. It immediately errored out. So I am not sure how much > of a rewrite is needed. FYI, CF 5 predates the JAVA version of CF. &

Re: Anyone know anything about this new ColdFusion conference?

2011-01-18 Thread AJ Mercer
you can hear about it on cfHour http://cfhour.com/post.cfm/show-83-opencf-summit-interview On 18 January 2011 20:36, Donna Bing wrote: > > Ever since CFUnited closed up shop, I've been looking around for an > affordable > substitu

Re: Free ColdFusion Hosting

2010-11-24 Thread AJ Mercer
Do you have broadband at home? I run my free OS website from home Ubuntu/Railo/Tomcat/mySQL/mangoBlog On 25 November 2010 02:03, Matthew Lowrey wrote: > > Hello Fellow HoFer's: > > Because of the economy and me being out of work until this year for almost > 2 years I had to let my personal web

Re: CF Blog software

2010-11-09 Thread AJ Mercer
ideas on cf blogging software I can use? Any tutorials on dumbing > down the current options to make them work? I found a tutorial for > blogcfc but it was so many versions back, some of the changes that the > tutorial suggested weren't even there anymore. > > Steve > >

Re: Railo Training in Australia

2010-09-27 Thread AJ Mercer
I have updated my blog with more details including costs http://webonix.net/post/railo-training-in-australia On 14 September 2010 09:22, AJ Mercer wrote: > > Hi Fusioneers, > > Railo are once again sponsoring cf.Objective(anz) with Gert Franz and Mark > Drew attending the

Railo Training in Australia

2010-09-13 Thread AJ Mercer
/post/railo-training-in-australia -- *AJ Mercer* <http://webonix.net> | <http://webonix.org> http://twitter.com/webonix ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Antho

Re: CF9 developer ip addresses

2010-06-13 Thread AJ Mercer
I just bounce CF CF logs the first (3??) IP addresses that connect Not sure about CF9, but as I recall, previous releases were localhost plus one other IP On 14 June 2010 10:33, Andrew Grosset wrote: > > Is CF9 developer restricted to 3 ip addresses and how does one edit these > ip addresses?

Re: fckeditor and FW/1

2010-06-10 Thread AJ Mercer
This is a neat addon for FireFox https://addons.mozilla.org/en-US/firefox/addon/2691/ On 11 June 2010 02:01, Dave Watts wrote: > > > Has anyone successfully used fckeditor and FW/1? Specifically the image > uploader. > > > > I have a working version on my server in a Non-FW/1 site and it w

Re: CF 9 Hosting

2010-05-20 Thread AJ Mercer
it doesn't show it here (yet) but FASThit have CF9 hosting http://fasthit.net/ On 20 May 2010 06:10, Kelly Matthews wrote: > > Anyone know any good, reasonable CF 9 hosting companies w/ mysql. > Thanks! > > ~| Order the Adobe

Re: Joomla?

2010-04-19 Thread AJ Mercer
Take a look at Farcry CMS http://www.farcrycore.org/ Version 6 is due real soon now On 20 April 2010 07:58, Rick Sanders wrote: > > I am curious to know if there's any Open-source free ColdFusion CMS out > there like Joomla? > > > > Joomla is the latest craze in CMS making it easy for peop

Re: cfoutput query within cfoutput query

2010-03-19 Thread AJ Mercer
I think my first post failed :-( SQL with JOIN CFOUTPUT with group SELECT tblPerson.id, tblPerson.name, tblPets.pet FROM tblPerson, tblPets WHERE tblPets.ownerID = tblPerson.id order by tblPerson.id #ID# #name# #pet# On 20 March 2010 06:

Re: Why i fear ColdFusion is on its last legs in Australia

2010-01-21 Thread AJ Mercer
it would be interesting to see the figures by region/country 2010/1/21 Andy Matthews > > Gotcha. > > And I'm guessing that Adobe's numbers are worldwide, and not in one > geographic region. > > -Original Message- > From: Mike Kear [mailto:afpwebwo...@gmail.com] > Sent: Thursday, Januar

Re: Why i fear ColdFusion is on its last legs

2010-01-20 Thread AJ Mercer
2010/1/21 Sean Corfield > > I don't actually see it locally - there are three CFUGs within easy > driving distance for me and they're all active and have lots of > interesting (and CF-focused) talks. But I am hearing it from various > parts of the world. Is it a UG manager problem perhaps? i.e

Re: Writing query to a csv file

2009-12-09 Thread AJ Mercer
you will want to use cffile action="append" http://livedocs.adobe.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentation&file=0246.htm

Re: list files on user's computer?

2009-11-01 Thread AJ Mercer
The hosting provider has most likely disabled cffile & cfdirectory You will need to get in contact with them to see what CF functions / tags have been disabled - for 'security purposes' and see what work arounds they can provide for you. They may be able to set up a sandbox such that you can see

Re: Unit Testing Frameworks

2009-10-26 Thread AJ Mercer
there is also RocketUnit: A Simple Unit Testing Framework for ColdFusion http://www.rocketboots.com/blog/index.cfm?mode=entry&entry=E565633C-E081-51EF-A7F883614F752942 2009/10/27 Patrick Santora > > Yes, CFCUnit has not been update for some time. > > CFer's have moved to unit testing framewor

Re: SOT: Mango Blog

2009-07-15 Thread AJ Mercer
Laura Arguello CCd 2009/7/15 Cutter (ColdFusion Related) > > Does anybody know anyone associated with Mango Blog? I tried signing up > for their forums, which sends you an email to confirm, and never > received the email. I even checked my spam filter. Now it won't let me > sign in, because I h

Re: Reading PDF Form values

2009-07-14 Thread AJ Mercer
if you have CF8 (or 9 beta) http://cfquickdocs.com/cf8/?getDoc=pdf#cfpdfform 2009/7/14 Arsalan Tariq Keen > > Hi Guys... > > Is there a way I can read the already stored values in a pdf form using > coldfusion? > > > Regards, > Arsalan > >

Re: FFMpeg & FlowPlayer

2009-03-24 Thread AJ Mercer
Just to let people know Railo has cfvideo and cfvideoplayer tags http://www.railo.ch/blog/index.cfm/2008/9/30/Railo-30-released--Features-part-III--Multimedia cfvideo uses ffmpeg under the hood 2009/3/25 Jordan Michaels > > I know this isn't what you're asking, but I figured you may be > inte

Re: Did I screw up my CF Multiserver install?

2009-03-18 Thread AJ Mercer
does it have to be accessed via localhost? http://localhost/cfide/administrator/ 2009/3/18 Phill B > > You know I never noticed that before. > > Yes, it is says "Server: cfusion" but it doesn't have the "Enterprise > Manager" section at the bottom of the left nav. > > On Wed, Mar 18, 2009 at 9

Re: Strange Datasource error

2009-02-05 Thread AJ Mercer
se ever experienced this?? > > > -Original Message- > From: AJ Mercer [mailto:ajmer...@gmail.com] > Sent: Tuesday, January 27, 2009 7:38 PM > To: cf-talk > Subject: Re: Strange Datasource error > > > Has someone been modifying the settings on the database server? &g

Re: Strange Datasource error

2009-01-30 Thread AJ Mercer
Has someone been modifying the settings on the database server? Maybe transaction behavior was changed there - As I understand it, CF will use the default transaction settings (eg dirty read, committed read ...) 2009/1/28 Scott Mulholland > Out of nowhere today I had two different applications

Re: GetTimeZoneInfo() Schedules in local timezone based on UTC

2009-01-23 Thread AJ Mercer
Paul Hastings has an excellent CFC that handles timezones and DLT. http://www.sustainablegis.com/blog/cfg11n/ Look for timezone spatial locator which has a link to here http://www.sustainablegis.com/projects/tz/testTZCFC.cfm with a link to download the CFC Make sure your JVM is up to date - i

Re: Coldfusion Audio conversion

2009-01-08 Thread AJ Mercer
is your CF service running as a named user? If not, may try running with the same user account you have logged in with. 2009/1/9 Timothy Farrar > Adrian, > > I used 8.0.1, with the cumulative hotfix installed. > > ~| Adobe® C

Re: How to cfdump a single row in a query?

2009-01-05 Thread AJ Mercer
try myQuery[myQuery.CurrentRow] 2009/1/6 Pete Ruckelshaus > I'm using cfloop to go through a query result set. Some of the data > is giving me trouble...is there a way to use cfdump to dump out the > contents of the current row in the recordset? > > Thanks > > Pete > > ~~~

Re: Strange application variables behavior with flash remoting

2008-12-09 Thread AJ Mercer
something very similar to this happened to me last week and Fritz Dimmel put me onto this which fixed the problem in CFIDE, go to Cache and uncheck Cache web server paths 2008/12/10 David Wilson <[EMAIL PROTECTED]> > We're running two similar structured sites on IIS6 and CF8 with similar >

Re: Very basic/simple forum

2008-11-20 Thread AJ Mercer
I am with the same ISP and I get the blocked IP ?? 2008/11/21 James Holmes <[EMAIL PROTECTED]> > If they are on a dynamic IP address? > > mxAjax / CFAjax docs and other useful articles: > http://www.bifrost.com.au/blog/ > > > > 2008/11/21 Don L <[EMAIL PROTECTED]>: > How do you ban som

Re: Official ColdFusion IDE announced

2008-11-18 Thread AJ Mercer
would those with FlexBuilder get a discount on Bolt (if it is not free)?? On Wed, Nov 19, 2008 at 6:49 AM, Aaron Rouse <[EMAIL PROTECTED]> wrote: > I am in the same boat as you, do not find it comfortable. Do you think the > comfort issue is because of Eclipse itself though? I am wondering just

Re: CF8 administrator access (Windows OS)

2008-11-13 Thread AJ Mercer
can you get to the cf admin from the server? http://127.0.0.1/cfide/administrator On Thu, Nov 13, 2008 at 10:55 PM, David Koehler <[EMAIL PROTECTED]>wrote: > I installed CF8 (update from CF7) on two servers both running Windows > Server 2003. Everything was fine and continues to be fine on one

Re: ColdFusion + SVNkit

2008-11-12 Thread AJ Mercer
I think the skweegee project uses it http://skweegee.riaforge.org/ On Tue, Nov 11, 2008 at 9:16 PM, Kamru Miah <[EMAIL PROTECTED]> wrote: > Has anyone used the SVNkit (http://svnkit.com/) and can advise me how to > interface ColdFusion (to obtain log messages from Subversion)? > >

Re: CF8 administrator access (Windows OS)

2008-11-12 Thread AJ Mercer
and the web server has a mapping to /cfide On Thu, Nov 13, 2008 at 12:45 PM, James Holmes <[EMAIL PROTECTED]>wrote: > No, it's open to all IP addresses to which the rest of the CF server is > open. > > mxAjax / CFAjax docs and other useful articles: > http://www.bifrost.com.au/blog/ > > > > 2

Re: Radio button selection question

2008-11-10 Thread AJ Mercer
This will do it checked="checked" /> checked="checked" /> checked="checked" > Where qryResults is the data returned from your datbase On Tue, Nov 11, 2008 at 4:34 AM, Damayanti Gupta <[EMAIL PROTECTED]>wrote: > HI, > I guess this is a rather basic question, but I am really having a hard time

Re: Script to move email to from undelivr to spool?

2008-11-03 Thread AJ Mercer
This might give you some ideas http://www.coldfusionjedi.com/index.cfm/2006/1/16/Yet-another-project--announcing-SpoolMail you can manage your undelivered emails from within CFIDE On Mon, Nov 3, 2008 at 10:27 PM, Nick Gleason <[EMAIL PROTECTED]>wrote: > Hi folks, > > We need to develop a scrip

Re: Oracle 11g

2008-10-28 Thread AJ Mercer
you can do a JDBC connect then use the drivers from your Oracle client Here are a couple of blog posts to get your started http://www.talkingtree.com/blog/index.cfm/2005/11/14/Oracle10gJDBCHowTo http://blog.sixsigns.com/2008/01/25/configure-the-jdbc-driver-for-oracle-on-coldfusion-8-standard-

Re: CFEclipse "intellisense" doesn't work

2008-10-26 Thread AJ Mercer
Try right-click the project folder and select Add/Remove CFE Nature On Mon, Oct 27, 2008 at 7:05 AM, Greg Morphis <[EMAIL PROTECTED]> wrote: > I can't get the intellisense to work within cfeclipse.. > I had eclipse3.2 installed, I dumped that and downloaded eclispe europa.. > I downloaded and in

Re: Alternative to coldfusion8

2008-10-23 Thread AJ Mercer
Add Railo to your search http://railo-technologies.com/ On Fri, Oct 24, 2008 at 8:24 AM, Don L <[EMAIL PROTECTED]> wrote: > Just ran a search for it and found two, of which one is well-known, that > is, BlueDragon, the other contender is "Smith", did a quick browse of > features respectively

Re: Updater 8.0.1 crashes CF8

2008-10-23 Thread AJ Mercer
Hi Gert, Did you stop the CF services before doing the update? On Thu, Oct 23, 2008 at 9:54 PM, Gert Franz <[EMAIL PROTECTED]> wrote: > Hi all, > > yes I am using CF8. We need to test some of our Railo examples under CF8 > as well. So here's what happened. I had an old version of CF8 8.0.0.1x >

Re: Inexpensive student/developer oriented CF hosting?

2008-10-13 Thread AJ Mercer
Do you know you can get ColdFusion 8 for free for educational purposes? https://freeriatools.adobe.com/coldfusion/ http://www.adobe.com/products/coldfusion/faq/#section-5 On Mon, Oct 13, 2008 at 8:46 PM, Pete Ruckelshaus <[EMAIL PROTECTED]>wrote: > I'm the computer science teacher at a p

Re: ReFind - finding too much :-(

2008-10-07 Thread AJ Mercer
this is doing the trick Thanks for your assistance Adrian. On Tue, Oct 7, 2008 at 5:48 PM, AJ Mercer <[EMAIL PROTECTED]> wrote: > like this local.fieldValue)> > > or does it need the square brackets? > local.fieldValue)> > > > On Tue, Oct 7, 2008

Re: ReFind - finding too much :-(

2008-10-07 Thread AJ Mercer
top invalid dates like > > 2008-99-99T99:99:99 > > Adrian > > Building a DB of errors at http://cferror.org/ > > -Original Message- > From: AJ Mercer [mailto:[EMAIL PROTECTED] > Sent: 07 October 2008 09:32 > To: cf-talk > Subject: ReFind - finding too much :

ReFind - finding too much :-(

2008-10-07 Thread AJ Mercer
for pretty well everything :-( Can some one please point out what I am doing wrong here? -- AJ Mercer Web Log: http://webonix.net ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date

Re: Two CF 8.01 Clustering problems

2008-10-01 Thread AJ Mercer
for point 2there maybe some timeout setting on the network - if it cant see it for a period of time it may think the cluster is dead. Is the newtowrk under load when it drops out? On Thu, Oct 2, 2008 at 2:28 PM, James Holmes <[EMAIL PROTECTED]> wrote: > We have two problems with clustering our

Re: using anchors

2008-09-24 Thread AJ Mercer
I have found in the past that there needs to be content on the tag that has the anchortry putting in   On Thu, Sep 25, 2008 at 11:04 AM, Eric Roberts < [EMAIL PROTECTED]> wrote: > I am having a bit of an issue here... > > I have a column link that set off a javascript form submission. This > pr

Re: CFFILE and Ajax file uploads

2008-09-17 Thread AJ Mercer
I used this jQuery plugin http://www.phpletter.com/Demo/AjaxFileUpload-Demo/ On Thu, Sep 18, 2008 at 5:02 AM, Brent Nicholas <[EMAIL PROTECTED]>wrote: > Hi all, > > So I did some googling and searched through the threads here as well. I'm > not finding what I need to know. > > What I'm trying

Re: JRun4 - what updater is installed?

2008-09-10 Thread AJ Mercer
for those playing at home *JRun Updater 7* should not be applied if ColdFusion 8.0.1 is installed. http://kb.adobe.com/selfservice/viewContent.do?externalId=kb403823 On Thu, Sep 11, 2008 at 1:10 PM, AJ Mercer <[EMAIL PROTECTED]> wrote: > Does anyone know how to find what version,

JRun4 - what updater is installed?

2008-09-10 Thread AJ Mercer
Does anyone know how to find what version, including updater, of JRun I have installed? I have installed CF801 and am trying to determine if I should install updater 7 for JRun4. -- AJ Mercer Web Log: http://webonix.net Once you come to the realisation that everyone is crazy, You will never

QoQ string as field

2008-06-26 Thread AJ Mercer
Can QoQ strings as a field? eg SELECT '#myVariable#' as myVariable -- AJ Mercer Web Log: http://webonix.net ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free

Re: built-in javaloader? (was Re: Deviceatlas and ColdFusion)

2008-06-17 Thread AJ Mercer
something like this http://javaloader.riaforge.org/ On Wed, Jun 18, 2008 at 9:18 AM, denstar <[EMAIL PROTECTED]> wrote: > On Tue, Jun 17, 2008 at 5:15 PM, Dave Watts wrote: > > > In either case, after adding your Java file to the appropriate directory, > > restart CF. > > Would some sor

Re: LinkedIn CF group

2008-06-12 Thread AJ Mercer
Theis is a Railo group too ***http://www.linkedin.com/e/gis/71368/0CF7D323BBC1 * On Thu, Mar 6, 2008 at 11:54 PM, Ben Forta <[EMAIL PROTECTED]> wrote: > And here's a Flex group, just coz ;-) > > http://www.linkedin.com/e/gis/65596/7DF3445D30E0 > > --- Ben > > > -Original Message- > Fr

Re: Railo 3 -> Open Source with JBoss

2008-06-05 Thread AJ Mercer
Adam Lehman (Adobe) has a great blog entry http://www.adrocknaphobia.com/post.cfm/breaking-railo-partners-with-jbossorg-to-open-source-cfml On Fri, Jun 6, 2008 at 4:24 AM, Andy Matthews <[EMAIL PROTECTED]> wrote: > I'd say that's a strong certainty. Maybe they think that if BD has to go > open

Re: Time Rounding

2008-06-03 Thread AJ Mercer
or this #minuteTime# : #round15# If round15 equal 60 you will need to increment the hour and set minutes to 0 On Wed, Jun 4, 2008 at 1:36 PM, Michael E. Carluen <[EMAIL PROTECTED]> wrote: > Terry, > Try this: > #minute(now())# > > > > > > > > > > > >

Re: Jrun Alteratives

2008-05-23 Thread AJ Mercer
Thanks Larry. Have you done any clustering with JBoss / Apache? Can you compare/contrast with JRun? On Fri, May 23, 2008 at 10:56 PM, Larry Lyons <[EMAIL PROTECTED]> wrote: > Steve Brownlee has a short tutorial on how to do this with JBoss: > http://www.fusioncube.net/?p=8 > > hth, > larry > >

Re: Jrun Alteratives

2008-05-22 Thread AJ Mercer
Hi Larry, Are you using JBoss as the web server too? Or are you using IIS/Apache/Other? On Fri, May 23, 2008 at 3:34 AM, Larry Lyons <[EMAIL PROTECTED]> wrote: > We've been using CF Enterprise on JBoss. Its been an easy install that > worked very well. Just put the Jboss app server whereever yo

Re: Possible to use value statement and dual in mysql 5?

2008-05-21 Thread AJ Mercer
I think you will find 'dual' is an oracle only thing On Wed, May 21, 2008 at 3:39 AM, Rick Faircloth <[EMAIL PROTECTED]> wrote: > Hi, all... > > Does anyone know if it's possible to use a value statement > in this query that uses "dual"? > > I need to insert a value of "hmls" for the field "ml

Re: coldfusion printing to an Epson receipt printer

2008-05-19 Thread AJ Mercer
I have many years ago - using asp >From memory, you have to use a particular font and send down control characters using ascii() On Mon, May 19, 2008 at 9:05 PM, Toby King <[EMAIL PROTECTED]> wrote: > HI all > > I'm wondering if anyone has ever developed an application with one > requirement bei

Re: load balancing / failover

2008-05-15 Thread AJ Mercer
dify the Apache connector a bit to make this work. I basically > added a new config command which restricts which instances it's allowed to > connect to. > > Russ > > > -Original Message- > > From: AJ Mercer [mailto:[EMAIL PROTECTED] > > Sent: Wed

Re: load balancing / failover

2008-05-14 Thread AJ Mercer
So if money was not object, what would be the perfect set up for a ColdFusion Environment? Do other vendor's provide a better J2EE server that has better clustering that JRun? When it comes to connecting to the JRun (CF) cluster, does IIS work differently than Apache? (for clustering) is one bet

Re: cfmail won't send

2008-04-27 Thread AJ Mercer
you may have to get the CF server trusted by the mail server ALLOW RELAY Your mail administrator should know what these means On Mon, Apr 28, 2008 at 1:31 PM, James Holmes <[EMAIL PROTECTED]> wrote: > Have you checked your junk mail folder? > > On Sat, Apr 26, 2008 at 5:45 AM, daniel kessler <[

Re: cfexecute - at my wits end!

2008-04-23 Thread AJ Mercer
Have you got your ColdFusion Service running with a user account? If not, try using the same account that you use to log onto the server with. On Thu, Apr 24, 2008 at 8:54 AM, Dave Phillips < [EMAIL PROTECTED]> wrote: > Hi all, > > I am trying to combine two wav files from the command prompt us

Re: Parse phone number characters - almost there ...

2008-04-22 Thread AJ Mercer
you are not using regex so just use the replace function (no REreplace) On Tue, Apr 22, 2008 at 3:25 PM, <[EMAIL PROTECTED]> wrote: > I've got different phone number formats due to an csv import. I'm trying > to remove > phone number formating from the database and just have the numbers. As I

Re: ColdFusion 8.0 clustering - quick question.

2008-04-20 Thread AJ Mercer
we have unique ports per server (that is port 8301 & 8302 is used on two server), but we are having issues adding a third server to the cluster - I too would be interested in hearing a authoritative view on this question. On Sun, Apr 20, 2008 at 1:30 AM, WebSite CFtalk <[EMAIL PROTECTED]> wrote:

Re: Coldfusion Array help

2008-04-17 Thread AJ Mercer
That is a horrible URL to work with Do you have any control over that? If so, try something like ?group1=20&group2=16,3,17&group3=2,11,18 The you can use CGI.query_string as a list of lists loop through with a delimiter of '&' to get you groups then do listFirst & listLast with a delimiter of '=

Re: cfhttp stopped working, anyone experienced this

2008-04-16 Thread AJ Mercer
TED]> wrote: > Yes on the browse, yes on the ping, I have an inquiry in on the firewall > settings. > > -Original Message- > From: AJ Mercer [mailto:[EMAIL PROTECTED] > Sent: Wednesday, April 16, 2008 3:18 AM > To: CF-Talk > Subject: Re: cfhttp stopped working,

Re: cfhttp stopped working, anyone experienced this

2008-04-16 Thread AJ Mercer
if you log onto the server, can you browse to the URL? Can you ping the domain? Have firewall settings changed? On Wed, Apr 16, 2008 at 7:05 AM, Scott Mulholland <[EMAIL PROTECTED]> wrote: > I have a piece of code that has always worked that does a cfhttp to create > a > static file. The file

Re: simple loop

2008-04-10 Thread AJ Mercer
I have had weird things happing with queies with in a query loop try putting the outer query column into it's own variable and use that in the inner query where serialnumber = '#VARIABLES.serialnumber#' On Thu, Apr 10, 2008 at 9:36 PM, Orlini, Robert <[EMAIL PROTECTED]> wrote: > I have a

Re: CFMX 8 and Oracle RAC database

2008-04-09 Thread AJ Mercer
I ma not sure if it has changed in CF8, but this is what our CF702 connect string looks like jdbc:macromedia:oracle://mustang-vip:1522;serviceName=iprod;alternateServers=(cougar-vip:1522);loadBalancing=true This seems to be doing the trick. On Wed, Apr 9, 2008 at 2:43 AM, Alex DeMarco <[EMAIL PR

get web server name/ip

2008-04-06 Thread AJ Mercer
would be neat if it could lookup the name/IP itself. Any ideas / suggestions? -- AJ Mercer Web Log: http://webonix.net ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

  1   2   3   >