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* webonix:net strength=Industrial / http

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 ajmer...@gmail.com wrote: with coldfusion (8) is there a way to retrieve the properties of an existing schedule? I want to get

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.

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 gerald.gu...@gmail.com wrote:

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

Re: how to detect null value from QoQ result

2013-07-01 Thread AJ Mercer
try cfquery name=myQuery dbtype=query Select id from myAnotherQuery Where [some where clause] /cfquery myQuery.RecordCount EQ 0 On 2 July 2013 11:38, Nathan Chen nathan.c...@cu.edu wrote: All: I have a simple query of query as follow: cfquery name=myQuery dbtype=query Select count(*)

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 nathan.c...@cu.edu wrote: I tried it but for some reason it just wouldn't work. Nathan -Original Message- From: AJ Mercer [mailto:ajmer...@gmail.com] Sent: Monday, July 01, 2013 9:45

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 r...@michaels.me.uk wrote: I was just thinking the other day, wouldn't it be handy if there

Re: A live CFML code testing tool

2013-05-18 Thread AJ Mercer
in there as well (which would suck up disk space). On Sat, May 18, 2013 at 9:59 PM, AJ Mercer ajmer...@gmail.com wrote: 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

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 r...@michaels.me.uk 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

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 funandlrnn...@gmail.com wrote: I have a query on looping in coldfusion.Why does the below loop run twice? cfloop from=1 to=1 index=j cfoutput#j#/cfoutput /cfloop I thought the

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

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 jenn...@fasttrackonline.co.ukwrote:

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 j...@inomi.com wrote: Hi all - I've got some very

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 bobchang...@yahoo.com wrote: Hello, I have a need to add staff title's to the extensionAttribute1 field in Active Directory. I found that

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* webonix:net strength=Industrial / http://webonix.net | webonix:org community=Open / http://webonix.org http://twitter.com/webonix Railo

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

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 dwa...@figleaf.com 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

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

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 robvo...@voyle.com wrote: Hi Folks I am wondering what is considered best practices for the cfoutput tag I have a large page many tables, paragraphs etc.

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 mary...@cfwebstore.com wrote: I've

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 mdino...@houseoffusion.com wrote: I was looking around for CF integration with the highcharts graphing package and I found a reference to

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 ajmer...@gmail.com wrote: I have reported the error on this page to the Railo team http://blog.getrailo.com/post.cfm/railo-highcharts On 22 May

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

Re: CF 10 Release

2012-04-17 Thread AJ Mercer
wish. Wife 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 ajmer...@gmail.com wrote: I would guess not at MAX as it will get lost within the Create Suite product hype. But then again, cf.O() and CFOANZ

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 nich...@gmail.com wrote: https://github.com/atuttle/Taffy Excellent RESTful framework, in my opinion. Can a REST API webservice be implemented in Pre CF 10

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 andr...@andyscott.id.au wrote: Considering 8 and 9 where, I think that is a very safe guess. -- Regards, Andrew Scott WebSite:

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 br...@logiforms.com wrote: Anybody ever tried to call CFFILE or CFDIRECTORY to a connected RDP session? I'm getting an access denied

Re: CFFILE to \\tsclient\c$\

2012-01-29 Thread AJ Mercer
this successfully? 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 will need access permissions to that share

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 quackfu...@gmail.com 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

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 jhan...@uhlig.com wrote:

Re: CFBuilder 2 Search

2011-08-04 Thread AJ Mercer
cool. Hat tip to Sean Corfield :-) On 5 August 2011 07:02, Justin Hansen jhan...@uhlig.com 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

Re: CFML in the Cloud

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

Re: Help us Please - CF 5 Server Licenses

2011-05-05 Thread AJ Mercer
wrote: 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. -Ralph -- *AJ

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 http://cfhour.com/post.cfm/show-83-opencf-summit-interview On 18 January 2011 20:36, Donna Bing bingdo...@ymail.com wrote: Ever since CFUnited closed up shop, I've been looking around for an

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 rid...@gmail.com 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

Re: CF Blog software

2010-11-09 Thread AJ Mercer
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 -- *AJ Mercer* webonix:net strength=Industrial

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 ajmer...@gmail.com wrote: Hi Fusioneers, Railo are once again sponsoring cf.Objective(anz) with Gert Franz and Mark Drew attending

Railo Training in Australia

2010-09-13 Thread AJ Mercer
/post/railo-training-in-australia -- *AJ Mercer* webonix:net strength=Industrial / http://webonix.net | webonix:org community=Open / http://webonix.org http://twitter.com/webonix ~| Order the Adobe Coldfusion Anthology now! http

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 rushg...@yahoo.com wrote: Is CF9 developer restricted to 3 ip addresses and how does one edit

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 dwa...@figleaf.com 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

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 ke...@webdiva.org wrote: Anyone know any good, reasonable CF 9 hosting companies w/ mysql. Thanks! ~|

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 c...@webenergy.ca 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

Re: cfoutput query within cfoutput query

2010-03-19 Thread AJ Mercer
I think my first post failed :-( SQL with JOIN CFOUTPUT with group cfquery datasource=#dsn# name=qryPetPerson SELECT tblPerson.id, tblPerson.name, tblPets.pet FROM tblPerson, tblPets WHERE tblPets.ownerID = tblPerson.id order by tblPerson.id /cfquery table cfoutput

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 li...@commadelimited.com 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:

Re: Why i fear ColdFusion is on its last legs

2010-01-20 Thread AJ Mercer
2010/1/21 Sean Corfield seancorfi...@gmail.com snip 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

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_Documentationfile=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=entryentry=E565633C-E081-51EF-A7F883614F752942 2009/10/27 Patrick Santora patwe...@gmail.com Yes, CFCUnit has not been update for some time. CFer's have moved to unit

Re: SOT: Mango Blog

2009-07-15 Thread AJ Mercer
Laura Arguello CCd 2009/7/15 Cutter (ColdFusion Related) cold.fus...@cutterscrossing.com 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

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 arsalk...@hotmail.com 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 jor...@viviotech.net I know this isn't what you're asking, but I

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 philthylab...@gmail.com 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

Re: Strange Datasource error

2009-02-05 Thread AJ Mercer
- 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? Maybe transaction behavior was changed there - As I understand it, CF will use the default

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 smulholl...@aimg.com Out of nowhere today I had two

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 -

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 timothyfar...@sosensible.com Adrian, I used 8.0.1, with the cumulative hotfix installed.

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 pruckelsh...@gmail.com 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 someone who can

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 of

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/ 2008/11/13

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: Radio button selection question

2008-11-10 Thread AJ Mercer
This will do it input type=radio id=apple name=Fruit value=Apple cfif qryResults.Fruit EQ Applechecked=checked /cfif / input type=radio id=mango name=Fruit value=Mango cfif qryResults.Fruit EQ Mangochecked=checked /cfif / input type=radio id=orange name=Fruit value=Orange cfif qryResults.Fruit EQ

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 script

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

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

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 and

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, and

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

ReFind - finding too much :-(

2008-10-07 Thread AJ Mercer
for pretty well everything :-( cfif ReFind([(0-9)4\-(0-9)2\-(0-9)2T(0-9)2:(0-9)2:(0-9)2], local.fieldValue) Can some one please point out what I am doing wrong here? -- AJ Mercer Web Log: http://webonix.net ~| Adobe

Re: ReFind - finding too much :-(

2008-10-07 Thread AJ Mercer
in another string or on it's own? \d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2} Should do it but it won't stop 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

Re: ReFind - finding too much :-(

2008-10-07 Thread AJ Mercer
this is doing the trickcfif ReFind(\d{4}\-\d{2}\-\d{2}T\d{2}:\d{2}:\d{2}, local.fieldValue) Thanks for your assistance Adrian. On Tue, Oct 7, 2008 at 5:48 PM, AJ Mercer [EMAIL PROTECTED] wrote: like thiscfif ReFind(\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}, local.fieldValue) or does

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 CF

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 nbsp; 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

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 to do:

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

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, including

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 Trial http

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 sorta

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- From: James

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-04 Thread AJ Mercer
or this cfset minuteTime = 8 / cfset round15 = round(minuteTime/15) * 15 cfoutput#minuteTime# : #round15#br //cfoutput 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:

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 If you

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 you

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 mls in the

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 being to

Re: load balancing / failover

2008-05-15 Thread AJ Mercer
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: Wednesday, May 14, 2008 6:58 PM To: CF-Talk Subject: Re: load balancing / failover So if money was not object

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

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 [EMAIL

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 using

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=20group2=16,3,17group3=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
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 it

Re: cfhttp stopped working, anyone experienced this

2008-04-16 Thread AJ Mercer
] 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, anyone experienced this if you log onto

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 cfset VARIABLES.serialnumber = Trim(get.serialnumber) / where serialnumber = '#VARIABLES.serialnumber#' On Thu, Apr 10, 2008 at 9:36

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

get web server name/ip

2008-04-06 Thread AJ Mercer
. It 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   >