Re: CF7 instances and server memory

2005-03-30 Thread Andy Allan
That's a limitation of 32 bit OS, not ColdFusion. Andy On Wed, 30 Mar 2005 16:44:03 +0800, James Holmes [EMAIL PROTECTED] wrote: Doesn't CF tank if the heap is over 1.6 GB or so? Or was that fixed in CF 7? -Original Message- From: Sean Corfield [mailto:[EMAIL PROTECTED] Sent:

Re: sorry, back to JVM/GC for a moment

2005-04-15 Thread Andy Allan
-XX:+UseConcMarkSweep can be used successfully on single CPU machines. This collector cleans up the tenured generation in parallel with the execution of the application but it doesn't actually require multiple CPUs (although it will of course benefit from 2+ CPUs) Andy On 4/15/05,

Re: sorry, back to JVM/GC for a moment

2005-04-15 Thread Andy Allan
of this collector. However, this collector should be considered for any application with a low pause time requirement. Optimal results have been observed for interactive applications with tenured generations of a modest size on a single processor. Andy On 4/15/05, Andy Allan [EMAIL PROTECTED] wrote: -XX

Re: sorry, back to JVM/GC for a moment

2005-04-15 Thread Andy Allan
*. -Original Message- From: Andy Allan [mailto:[EMAIL PROTECTED] Sent: 15 April 2005 09:38 To: CF-Talk Subject: Re: sorry, back to JVM/GC for a moment Mmmm, I need to read to emails more closely... :) This collector CAN be used on multiple CPU machines and just to quote the Sun JVM

Re: sorry, back to JVM/GC for a moment

2005-04-15 Thread Andy Allan
CF automatically makes a backup of jvm.config for you On 4/15/05, Douglas Knudsen [EMAIL PROTECTED] wrote: yeah, before editing make a backup, jvmconfig.original. :) you can look in Jrun the logs, jrun4home\logs for teh J2EE install, to see why your instance failed. Might just be a typo.

Re: sorry, back to JVM/GC for a moment

2005-04-15 Thread Andy Allan
gives you no access to the JVM. I can't recall if this changed in CF7 though. The JMC doesn't make backups and has a history of mucking up the jvmconfig file too. I always mod this file manually. D On 4/15/05, Andy Allan [EMAIL PROTECTED] wrote: CF automatically makes a backup

CF5 on Win2K3 fun

2005-04-26 Thread Andy Allan
Having some fun with getting CF5 set up on Windows 2003. Followed the guff in the following MM technote http://www.macromedia.com/go/tn_18689 to get things underway but the problem I've got is that the CF service won't stay running. Attempting to start it just tells me that it starts and then

Re: Can't set heap size in cfadmin interface

2005-05-16 Thread Andy Allan
Not that it helps with the error, but just modify the jvm.config directly. cfmxroot/runtime/bin/jvm.config Andy On 5/15/05, jt [EMAIL PROTECTED] wrote: Hello, I am trying to set the heap size in the cfadmin interface, but I get a wierd error and it doesn't let me change it. It is

Re: CFCHART Problem with tipstyle attribute?

2005-09-07 Thread Andy Allan
cfchart format=jpg tipstyle=none name=chart cfchartseries type=bar colorlist=red,blue,green cfchartdata item=Alpha value=#randrange(1,100)# / cfchartdata item=Beta value=#randrange(1,100)# / cfchartdata item=Gamma value=#randrange(1,100)# / /cfchartseries

Re: Cfadmin API

2005-09-19 Thread Andy Allan
Instantiate whatever Admin CFC you're interested in and run it through getMetaData() ... it'll tell you everything you need to know. Andy On 19/09/05, Snake [EMAIL PROTECTED] wrote: Just wondering if anyone has done much with the Admin API and has documented it better than Macromedia have. It

Re: CF7 admin api

2005-09-20 Thread Andy Allan
What specifically are you trying to do? I just created a new sandbox and restricted the CFObject tag using the following code: !--- Connect to the Admin API and log in --- cfset adminObj = createObject(component,cfide.adminapi.administrator).login(password) / !--- If logged in --- cfif adminObj

Re: CF7 admin api

2005-09-20 Thread Andy Allan
This got trimmed the first time (I think). What specifically are you trying to do? I just created a new sandbox and restricted the CFObject tag using the following code: !--- Connect to the Admin API and log in --- cfset adminObj =

Re: CF7 admin api

2005-09-20 Thread Andy Allan
From the code below, just do: cfdump var=#getMetaData(myObj)# / Andy On 20/09/05, Ryan Guill [EMAIL PROTECTED] wrote: Hey Andy, Refresh my memory, im going blank this morning. When you say put it through getMetaData(), whats the syntax for that? Thanks, On 9/20/05, Andy Allan

Re: CF7 admin api

2005-09-20 Thread Andy Allan
Please disregard that, im *really* out of it this morning... /goes to get more coffee/ :) -- [EMAIL PROTECTED] www.creative-restraint.co.uk www.scottishcfug.com ~| Logware (www.logware.us): a new and convenient web-based

Re: cfmx server 7 jvm heap set too high...

2005-09-22 Thread Andy Allan
cf_root/runtime/bin/jvm.config jrun/bin/jvm.config Andy On 22/09/05, Tony [EMAIL PROTECTED] wrote: and now my server will not restart error logs explain it perfectly... what xml file do i need to edit to have a smaller value so that i can get cfmx back up and running? thank you! --

Re: livedocs

2005-09-27 Thread Andy Allan
www.cfdocs.org/function/tag name e.g. www.cfdocs.org/dateformat Andy On 27/09/05, Michael Traher [EMAIL PROTECTED] wrote: Hi, Is it possible to go straight to the livedocs cf7 help page for a tag or a function? If so what is the url? Thanks MikeT

Re: Source Control

2005-09-28 Thread Andy Allan
Em .. big search box on every page with options for: House of Fusion, Fusion Authority and Google. Or you can go into the search page at houseoffusion.com/Search/ Seems pretty straight forward to me. Andy On 27/09/05, Snake [EMAIL PROTECTED] wrote: So how does one search the archive, the

Re: CFMX 7 Updater and updated docs for CFForm

2005-09-28 Thread Andy Allan
And I'll smack you with a hammer next time I see you for getting my surname wrong :p I'm sure a beer will make me forget :) Andy On 28/09/05, Stephen Moretti [EMAIL PROTECTED] wrote: Stephen Moretti wrote: Are there any updated docs or examples on using the additions to Flash CFForms out

Re: CFMX 7.01 on OSX dev only or production?

2005-09-28 Thread Andy Allan
Yes, it is now supported in production. http://www.macromedia.com/software/coldfusion/productinfo/systemreqs/ Andy On 28/09/05, Mark W. Breneman [EMAIL PROTECTED] wrote: Does any one know if CFMX 7.01 for OSX is for development only? Can it run in production? If so, then Blue Dragon is not

Re: JVM Help

2005-10-05 Thread Andy Allan
On 05/10/05, Snake [EMAIL PROTECTED] wrote: You can set each instance of CF to use it's own jvm.config file. You will need to edit the windows service for each once to specify which config file to use. But, I have found problems with security sandboxes when doing this, each instance needs to

Re: JVM Help

2005-10-06 Thread Andy Allan
. Thanks Agha Mehdi IDT - eBusiness Program Manager -Original Message- From: Andy Allan [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 05, 2005 1:56 PM To: CF-Talk Subject: Re: JVM Help On 05/10/05, Snake [EMAIL PROTECTED] wrote: You can set each instance of CF to use it's

Re: JVM Help

2005-10-06 Thread Andy Allan
On 06/10/05, Douglas Knudsen [EMAIL PROTECTED] wrote: On 10/5/05, Andy Allan [EMAIL PROTECTED] wrote: On 05/10/05, Snake [EMAIL PROTECTED] wrote: You can set each instance of CF to use it's own jvm.config file. You will need to edit the windows service for each once to specify which

Re: CFMX 6.1 download

2005-10-09 Thread Andy Allan
http://www.macromedia.com/software/coldfusionmx61/downloads/ Andy On 07/10/05, Ian Skinner [EMAIL PROTECTED] wrote: IIRC the upgrade was a full download, I know it can be installed clean if one chose to. Is the download only a few dozen megabytes or a few hundred megabytes?

Re: Jrun Update and cflocation

2005-10-10 Thread Andy Allan
It's a bug in the connector affecting IIS6 and IE6. For now, to resolve the issue you have to use the U5 connector. Get the jrun_ii6_wildcard.dll and jrun_iis6.dll files from /jrun4/updater6/backup/lib/wsconfig/1/ Rename the U6 version and replace with the old updater 5. Restart IIS/CF/JRun

Re: OT: Flashpaper

2004-11-26 Thread Andy Allan
Not Flashpaper, but I am using FOP to create PDFs Andy On Fri, 26 Nov 2004 13:01:54 -, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote: Anyone used or is using Flashpaper to convert HTML/HTM docs into PDF or SWF? N This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,

Re: OT: Flashpaper

2004-11-26 Thread Andy Allan
, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote: Hey Andy, You got a link on that? Does it convert HTML to PDF with any degree of success? N -Original Message- From: Andy Allan [mailto:[EMAIL PROTECTED] Sent: 26 November 2004 13:15 To: CF-Talk Subject: Re: OT: Flashpaper

Re: CFAdmin setting - Timeout Requests after ....

2004-12-03 Thread Andy Allan
Remember and adjust your threadWaitTimeout setting in jrun.xml to be GTE to what you set the Timeout Request. You'll find it under the ProxyService (2nd bottom service class) which deals with your CF to webserver connection otherwise you could end up with lots of java.lang.RuntimeException error

Re: How to make mx run all .php extensions

2004-12-23 Thread Andy Allan
cfmxroot/wwwroot/WEB-INF/web.xml Though I'm sure you're aware you can't actually process PHP code via CFMX Andy On Thu, 23 Dec 2004 10:04:28 -0500, gabriel l smallman [EMAIL PROTECTED] wrote: Hey all, Trying to make mx handle all .php extensions. On iis 6 we remapped to the extension but

Re: CF-Tag Weather for UK (London)?

2005-01-05 Thread Andy Allan
And the weather report from Bothwell Street, Glasgow is cold, dark, wet, gale force winds, utterly miserable ... could be worse though, i could be in Harthill or Shotts, etc where it's probably snowing or being battered by hail. On Wed, 5 Jan 2005 17:03:01 -, Robertson-Ravo, Neil (RX) [EMAIL

Re: IE6-SP1 (MS04-040 Update) Locks JRun Admin

2005-01-19 Thread Andy Allan
As I only use CF Standard (only install CF/JRun in 30 day trial mode when I'm keeping myself handy with multiple instances/clustering) I've obviously not run into the issue. Then again (and I don't mean this as a solution to your problem) I use Firefox rather than IE. Check the JMC with another

Re: SeeFusion

2005-01-20 Thread Andy Allan
I've given it a quick test (basically a single 2 hour session) to see what it is, and what it shows, but I've not yet formed any opinion on it other than it was extremely easy to set up. Andy On Thu, 20 Jan 2005 12:34:51 +0800, James Holmes [EMAIL PROTECTED] wrote: It may, but as we are on

Re: SeeFusion

2005-01-20 Thread Andy Allan
Yup On Thu, 20 Jan 2005 13:50:36 -, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote: Will this work on CFMX Standalone? -Original Message- From: Calvin Ward [mailto:[EMAIL PROTECTED] Sent: 20 January 2005 12:47 To: CF-Talk Subject: RE: SeeFusion Btw, it's 2 hours based

Re: CF Poll with Flash interface

2004-08-04 Thread Andy Allan
You can buy DRK5 and get Pollster 2, which is of course what Christian uses. Andy Quoting Marco Antonio C. Santos [EMAIL PROTECTED]: Do you know any? Maybe open source? Like Christian Cantrell (http://www.markme.com/cantrell/) is the best... ;-) Thanx -- [EMAIL PROTECTED]

Re: server-side forwarding in CFMS

2004-08-06 Thread Andy Allan
cfscript getPageContext().forward(page.cfm); /cfscript Andy Quoting [EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED]: Maybe I've imagined this, but I thought for sure that when MM went over the features that were to be in CFMX a while back, ASP style server forwarding was included.This

Re: CFC troulbe

2004-08-19 Thread Andy Allan
It's supposed to bring up the CFAdmin.. Fire in your password and then it gives you the CFC explorer. Quoting Dan Phillips [EMAIL PROTECTED]: it's looking for the component explorer since you've typed the .cfc extension - it should present you with the components introspection resuls. is this

Re: Create MYSQL Datasource

2004-08-20 Thread Andy Allan
The two latest entries on my blog tell you how to do it. The first post deals specifically with SQL Server, whilst the second one outlines the mods you have to make for MySQL. http://www.creative-restraint.co.uk is where you'll find them. Andy Quoting Pete Freitag [EMAIL PROTECTED]: cfhelp

Re: OT: Fake online orders--how common are they?

2004-08-21 Thread Andy Allan
You'd be surprised at just how many sites don't charge real time, especially sites involved in selling tickets for concerts, sporting events and the like... Andy Samuel Neff wrote: Do others get a lot of these orders (we get more of these than real orders, and we have plenty of real

Re: JRun Servlet Error

2004-08-23 Thread Andy Allan
I got caught out with that the first time I used CFEclipse as it puts the extends= attribute in regardless of whether you specify anything or not. Too lazy to see if there is a way to prevent it... Andy Quoting Geoff Bowers [EMAIL PROTECTED]: I thought I might follow on from Spike's email on

Re: Win XP sp2 and CF MX 6.1

2004-08-23 Thread Andy Allan
The only problem you should come up against is if you are using the in built web server on port 8500 as Windows Firewall will block this. You can of course configure the Windows Firewall so that traffic through port 8500 is allowed. I've upgraded both my XP dev machines to SP2 without a hitch,

Re: cfx JRun closed connection

2004-08-25 Thread Andy Allan
I'll back you 100% on that Doug! Definately worth the $50, or my case, winning it in my local user group raffle :-) Andy Doug Hughes wrote: Joe, Why don't you give my Image Component a try: http://www.alagad.com/index.cfm/name-aic/ This will resize images and much much more. Doug --

Re: CFMX 6.1 updater out

2004-08-25 Thread Andy Allan
Well I've got it installed on one dev machine and so far no issues ... installation went fine, no restarting issues, but too early to say about anything else. Andy Nathan Strutz wrote: Hey I just noticed the CFMX 6.1 updater came out today.

Re: Help with setting up DSN

2004-08-26 Thread Andy Allan
If you've set up SQL Server to run in Windows authentication mode only, then you will get problems trying to create a DSN that points to SQL Server because the JDBC driver that ships with CFMX for SQL Server doesn't support Windows Authentication - it only supports Mixed Mode Authentication. Andy

Re: Javascript delete confirmation

2004-08-26 Thread Andy Allan
function confirmDelete(aURL) { if(confirm(Do you really want to delete?)) document.location=aURL; } Andy Quoting Thane Sherrington [EMAIL PROTECTED]: I know I've seen this on the list before, but I can't find it in the archives, and my mind is pulling a blank on this.How do I pop up a

RE: Javascript delete confirmation

2004-08-26 Thread Andy Allan
=Delete > confirm('You sure?') / Ade -Original Message- From: Andy Allan [mailto:[EMAIL PROTECTED] Sent: 26 August 2004 11:22 To: CF-Talk Subject: Re: _javascript_ delete confirmation function confirmDelete(aURL) { if(confirm(Do you really want to delete?)) document.locat

RE: Javascript delete confirmation

2004-08-26 Thread Andy Allan
-Original Message- From: Andy Allan [mailto:[EMAIL PROTECTED] Sent: 26 August 2004 12:52 To: CF-Talk Subject: RE: _javascript_ delete confirmation Yup, definately shorter but not as reusable. Fire the function I posted into a commonfunctions .js file, and have it included

Re: CF, SQL Stored Proc

2004-08-29 Thread Andy Allan
SQL Server but default has no idea how to handle lists or arrays so you need to find another way of doing it ... http://www.creative-restraint.co.uk/blog/index.cfm?mode=entryentry=06040511-D699-DB87-BF0513EFF477CA0A Andy Yes of course. :-)But I was trying to figure out it is was possible to

Re: CFMX server locks up about every 2 weeks.

2004-08-31 Thread Andy Allan
I assume you've checked/compared all your logs ... *CFAdmin *cfmxroot/runtime/logs *Web Server Anything in those at the time of crashing that raises an eyebrow? Andy Quoting Bosky, Dave [EMAIL PROTECTED]: We have CFMX standard version 6.1 installed and the service seems to be hanging up

Re: Access alternatives (WAS: Security gurus out there?)

2004-09-02 Thread Andy Allan
I'll second that motion for an explanation. Quoting Scott Stroz [EMAIL PROTECTED]: Micha, Please explain. On Thu, 2 Sep 2004 14:43:16 +0200, Micha Schopman [EMAIL PROTECTED] wrote: MySQL is out of the question for sensitive information. MySQL is missing to much functionality to

Re: Access alternatives (WAS: Security gurus out there?)

2004-09-02 Thread Andy Allan
Sweet. That's what I (and probably others) was after rather than just a Don't use MySQL. Don't actually use MySQL myself but this sort of thing is good to know. Andy Quoting Jochem van Dieten [EMAIL PROTECTED]: Andy Allan wrote: I'll second that motion for an explanation. I'll second

Re: Crystaltech session invalid error

2005-05-17 Thread Andy Allan
JSP is enabled by default on CFMX and the CF Sandbox cannot restrict access to JSP functionality, hence on shared hosting it's a potential security risk, i.e. disable it. Andy On 5/17/05, dave [EMAIL PROTECTED] wrote: oh and wtf does having JSP enabled have to do with having no security?

Re: why use coldfusion 7?

2005-05-17 Thread Andy Allan
One thing to remember about CF7 is that at it's core is CFMX6.1 + Updater 1 Therefore if you're boss wants to go to 6.1 purely cause it's stable then you have absolutely no reason not to go to 7. Andy On 5/17/05, Mike Hanson [EMAIL PROTECTED] wrote: I have a meeting with my boss on Friday to

Re: Shared CF Host security

2005-05-18 Thread Andy Allan
Ah ... but you can only win CF Standard at UG meetings :) Andy On 5/18/05, Connie DeCinko [EMAIL PROTECTED] wrote: Almost. I need a couple more clients to spread the cost. And being able to win a copy of CF Enterprise would help! Guess I need to go to more UG meetings. -Original

Re: Shared CF Host security

2005-05-19 Thread Andy Allan
On 5/19/05, Jochem van Dieten [EMAIL PROTECTED] wrote: You will want to disable Java and COM. With CF 6.1 that means you need to disable all object access, with CF 7 you can disable just Java and COM. There is currently a bug in CFMX7 sandboxing in that if you disable COM it also

Re: Clustering CFMX 6.1 (J2EE Session Sharing)

2005-06-01 Thread Andy Allan
Try registering the JRun Admin server of the remote machine also, and *hopefully* you should be able to now stop/start the remote servers. Andy On 5/31/05, Jamie Jackson [EMAIL PROTECTED] wrote: I'm trying to cluster CFMX 6.1 on JRun 4, but I'm getting stuck early in the process. I'm trying

Re: cffile and Flash Forms

2005-06-02 Thread Andy Allan
No, the Flash player currently doesn't support file uploads, hence why you can't do it. Andy On 6/2/05, Saturday (Stuart Kidd) [EMAIL PROTECTED] wrote: Hi guys, Does anyone know whether it's possible to have a cfinput type=file name=myImage in a Flash Form? I'm coming across some problems.

Re: Crystal Reports is hurting my head

2005-06-24 Thread Andy Allan
We're currently planning a move away from Crystal due to licensing costs and the nightmare in trying to hook up CF to XI. We're actually still running on V8.5 but had started to evaluate XI. However due to hair pulling and PC damage (from being thrown against walls) we're now looking elsewhere.

Re: Oh..my...god!

2005-07-06 Thread Andy Allan
Damn it, Jim beat me too it! Having been subjected to the darkside of the .NET lately I can honestly say I feel bloated and somewhat icky and violated (OK I'm taking this too far) ... just like I would be if I ate some huge monsterous thing topped off with marzepan. However, some cup cakes

Re: Hot-fixes

2004-09-24 Thread Andy Allan
I evaluate each one and then decide whether it is required or not. Andy On Fri, 24 Sep 2004 11:48:54 +0100, John Beynon [EMAIL PROTECTED] wrote: no, i don't by default install them all. I'll decide if it affects something i know i use and if so apply the hotfix, eg I don't use CFFORM so never

Re: Headache with # in table colors

2004-10-05 Thread Andy Allan
Use CSS :) Andy On Tue, 5 Oct 2004 10:55:22 -0500, Donna French [EMAIL PROTECTED] wrote: Is there an easy way to go about handling table rows/columns colors as I am doing my page design/layout? -- Donna French [EMAIL PROTECTED] [Todays Threads] [This Message] [Subscription]

Re: Connection Reset By Peer

2004-10-18 Thread Andy Allan
Yup, though the reason why they are occuring excessively may need investigating, e.g. a sign of a bottleneck somewhere. Andy On Mon, 18 Oct 2004 15:26:26 +0100, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote: The log entry is benign and can be safely ignored. It is when a user clicks cancel

UUID as cftoken / createUUID bug

2004-10-19 Thread Andy Allan
Anyone know how the CFAdmin creates UUIDs for cftoken (on the Server Settings/Settings page)? Basically wanting to know if it uses createUUID() and is therefore affected by the clock speed bug affecting createUUID() on Windows

UUID as cftoken / createUUID bug

2004-10-20 Thread Andy Allan
This seemed to get lost yesterday, so trying again. Anyone know how the CFAdmin creates UUIDs for cftoken (see the Server Settings/Settings page)? Basically wanting to know if it uses createUUID() and is therefore affected by the clock speed bug affecting createUUID() on Windows

Re: OT: CSS Class vs ID?

2004-10-20 Thread Andy Allan
The ID attribute is unique. It should apply to one and only one div. Use the class attribute for general styles. Andy On Wed, 20 Oct 2004 12:06:20 -0400, Damien McKenna [EMAIL PROTECTED] wrote: Which is the more correct method for calling CSS styles, to use the id attribute or the class

Re: CF in Sweden

2004-10-22 Thread Andy Allan
We'll you're definately most welcome at the Scottish CFUG any time. Of course, you'll need to keep up with our mighty drinking binges, which reminds me ... Simon, when we get you back up in the not so distant future, I believe I promised you free drink on either Ben or Tim's blog... Andy On

Re: Out of Memory

2004-10-22 Thread Andy Allan
Check your logs under cfmx/runtime/logs as well .. what are they saying? Andy On Fri, 22 Oct 2004 16:38:02 +0100, Andrew Dixon [EMAIL PROTECTED] wrote: Hi Everyone. We noticed that our CF server service restarted itself twice today, and then after checking the cfserver.log file, just

Re: UK Dedicated Hosting Recomendations?

2004-11-19 Thread Andy Allan
You've also got www.firstserv.com The service and support they give us at the ScottishCFUG is top notch. Andy On Fri, 19 Nov 2004 10:44:42 -0400, Daniel Lancelot [EMAIL PROTECTED] wrote: Have you looked at RackSpace? Regards REX ~ Hi Rex, I'm looking at them now... Is this a

Re: CF Crash : Server Config or J2EE

2004-11-23 Thread Andy Allan
Remember there are certain tags that don't obey the timeout request, including cfstoredproc, cfcontent, cfftp, cfexecute, cfobject and CFX tags. Also, make sure your threadWaitTimeout in your jrun.xml file is set to be equal or greater than your Timeout Request value in the CFAdmin otherwise

Re: CF Crash : Server Config or J2EE

2004-11-23 Thread Andy Allan
from the MM technotes and to be honest make no difference at all.. -Original Message- From: Andy Allan [mailto:[EMAIL PROTECTED] Sent: 23 November 2004 16:39 To: CF-Talk Subject: Re: CF Crash : Server Config or J2EE Remember there are certain tags that don't obey

Re: Should I have heard from Macromedia?

2005-02-07 Thread Andy Allan
Fire off an email to them. That's precisely what I had to do to get my pack through ... and even then they managed to get my name wrong. 3rd time lucky :) Andy On Sun, 6 Feb 2005 15:37:44 +1100, Mike Kear [EMAIL PROTECTED] wrote: I sat my CFMX certification exam on Decemer 23 last year and

Re: null null The error occurred on line -1.

2005-02-07 Thread Andy Allan
Try the following link http://www.talkingtree.com/blog/index.cfm?mode=entryentry=25AA76D1-45A6-2844-747665275D126545 On Mon, 7 Feb 2005 14:34:20 -, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote: Could be a template with zero length? Or maybe a corrupt one? -Original Message-

Re: CFMX 7 - Multiple Instances

2005-02-08 Thread Andy Allan
If i remember correctly it's u: admin p: CFAdmin password Andy On Tue, 8 Feb 2005 06:50:07 -0500, Michael T. Tangorre [EMAIL PROTECTED] wrote: I would but what is the default username and password for the JMC? I tried using the cf admin and rds password asked for during the installation...

Re: Detailed CFMX 7 Release Notes (with comprehensive New Fetaures List)

2005-02-09 Thread Andy Allan
Yeah, it's a known issue and has already been reported by Sean Corfield. On Wed, 9 Feb 2005 10:47:08 +, Ian Winter [EMAIL PROTECTED] wrote: Yep looks knacked in FF here as well. On Wed, 09 Feb 2005 05:31:26 -0500, Cutter [EMAIL PROTECTED] wrote: Something I noticed, that I'll have to

Re: CF7 MySQL question

2005-02-09 Thread Andy Allan
You have to install the v4 driver yourself, and I believe there is already a technote on how to do so (as well as being blogged by Steven Erat). I'm sure someone from MM will pip in with the reasons as to why the v4 driver wasn't shipped :-) On Wed, 9 Feb 2005 10:49:06 +, Ian Winter [EMAIL

Re: CFMX 61 to CFMX 70 migration

2005-02-10 Thread Andy Allan
Remember that CFMX7 is built on CFMX6.1 + Updater 1 + other stuff It's as stable if not more so than CFMX6.1 On Thu, 10 Feb 2005 08:57:00 -0500, Dave Merrill [EMAIL PROTECTED] wrote: Any comments on migrating from CFMX 61 to CFMX 70, issues beyond what's listed in cfmx7_migrating.pdf?

Re: Upgrading and datasources

2005-02-25 Thread Andy Allan
DataDirect Andy On Fri, 25 Feb 2005 08:11:25 -0500, Calvin Ward [EMAIL PROTECTED] wrote: Is CFMX7 using the MS driver or DataDirect? -Original Message- From: Alin Sinpalean [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 23, 2005 2:30 PM To: CF-Talk Subject: Re: Upgrading

Re: Skins in XML forms

2005-03-03 Thread Andy Allan
I think it's /cfide/scripts Andy On Thu, 3 Mar 2005 21:58:24 +1100, Mike Kear [EMAIL PROTECTED] wrote: There is a lot of information in the new help files in CFMX7, but i havent been able to find out how to tinker with the skins of XML forms. Specifically, what files I need to tinker with.

Re: Problems at CrystalTech have gotten ugly!

2005-03-11 Thread Andy Allan
Interestingly I'm currently getting the Session is invalid error right now on the Macromedia forums. Andy On Fri, 11 Mar 2005 02:13:40 -0600, Jared Rypka-Hauer - CMG, LLC [EMAIL PROTECTED] wrote: Now, now, gentlemen, and in this case I use the term loosely... the whole bunch over there are

Re: Problems at CrystalTech have gotten ugly!

2005-03-11 Thread Andy Allan
Possibly the server i'm currently assigned to? ... cause if i try the site in another browser the forums are working fine. Andy On Fri, 11 Mar 2005 16:40:03 +0700, Paul Hastings [EMAIL PROTECTED] wrote: Andy Allan wrote: Interestingly I'm currently getting the Session is invalid error right

Re: Moving to Lucene

2005-03-17 Thread Andy Allan
Doug Hughes was raving about Lucene last year and had written a CFC that did this that and whatever. He never released it, but you could possibly chin him about it? http://www.doughughes.net/index.cfm/page-blogLink/entryid-28/ Andy On Thu, 17 Mar 2005 09:21:05 -, Robertson-Ravo, Neil (RX)

Re: Trac Project

2007-06-15 Thread Andy Allan
Trac is easy to install and manage. At least, I think so. Andy On 15/06/07, Damien McKenna [EMAIL PROTECTED] wrote: -Original Message- From: [Sunshine Tech Solutions] Ravi Gehlot Sent: Friday, June 15, 2007 8:18 AM Subject: Trac Project Does anyone know if the Trac Project

Re: Trac Project

2007-06-15 Thread Andy Allan
managed? Any clues? How do you delete stuff from the timeline? Ravi. Andy Allan wrote: Trac is easy to install and manage. At least, I think so. Andy On 15/06/07, Damien McKenna [EMAIL PROTECTED] wrote: -Original Message- From: [Sunshine Tech Solutions] Ravi Gehlot

Re: Trac Project

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

Re: configuring Apache to use multiple JRun Application Servers

2007-06-18 Thread Andy Allan
you need to manually configure this yourself in httpd.conf - check out brandon purcells entry at http://www.bpurcell.org On 18/06/07, AJ Mercer [EMAIL PROTECTED] wrote: Does any one know who to configure Apache to tie different domains to a particular JRun Application Server? I have

Re: BigIP F5

2007-06-23 Thread Andy Allan
Ask away. On 22/06/07, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote: Hi, Anyone using/used BigIP F5? If so, got a few questions! Thanks This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,

Re: CFCHART SSL

2007-06-26 Thread Andy Allan
wrap your cfchart with cfsavecontent and do a replace on it to change http with https On 26/06/07, Robert Rawlins - Think Blue [EMAIL PROTECTED] wrote: Hello Guys, I've recently installed SSL onto my site and I'm now having a few issues with my CFCHART tags as they are generating flash

Re: shared hosting with cfobject support (sandboxed)

2007-07-15 Thread Andy Allan
They should all be doing it. As of CF7 you can enable cfobject/createObject() to be used solely for calling any combination of CFC/WebService/Java/COM It's no longer an All or None decision. Andy On 13/07/07, Jim Rising [EMAIL PROTECTED] wrote: I was just wondering if there are any shared

Re: Time for another CF hosting site thread...

2007-07-16 Thread Andy Allan
I just wanted to throw in the following about hosts running CF7. They have absolutely no reason to disable cfobject fully. One of the little known tidbits of CF7 is that it introduced type specific sandboxing. What I mean by this is that you can now enable cfobject (and therefore createObject)

Re: Adobe Nails ColdFusion Cofin

2007-07-31 Thread Andy Allan
Go write your own integration with Exchange and evaluate those man hours ... On 31/07/07, Dale Fraser [EMAIL PROTECTED] wrote: I have to agree that I have never had issues selling the benefits of CF and ROI, it's actually an easy sell. I just purely don't understand the price hike, in a

Re: Adobe Nails ColdFusion Cofin

2007-08-02 Thread Andy Allan
ColdFusion 7 came out in February 2005. If you bought 7 then, with the two year subscription, then that subscription had expired before 8 was released so you got no benefit. If you happened to buy ColdFusion 7 from August 2005 onwards, woo hoo. On 02/08/07, Tom Chiverton [EMAIL PROTECTED]

Re: Adobe Nails ColdFusion Cofin

2007-08-02 Thread Andy Allan
Exactly ... subscriptions are good. On 02/08/07, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 02 Aug 2007, [EMAIL PROTECTED] wrote: If you bought 7 then, with the two year subscription, then that subscription had expired before 8 was released so you got no benefit. Except the sub.

Re: JVM versions supported by CF 7 and CF 8

2007-08-15 Thread Andy Allan
CF7: http://www.adobe.com/products/coldfusion/coldfusion7/pdfs/cfmx7_systemsupportmatrix.pdf CF8: http://www.adobe.com/products/coldfusion/pdfs/cf8_systemsupportmatrix.pdf Andy On 15/08/07, Bosky, Dave [EMAIL PROTECTED] wrote: What JVM versions are supported by CF 7 and CF 8? Thanks, Dave

Re: Configuring a CF Cluster

2007-08-21 Thread Andy Allan
You only need licenses for the machines running ColdFusion, i.e. the application servers. Your web servers don't need to be licensed. On your web servers you simply run the web server config tool, wsconfig.jar, which you can copy over from one of your application servers. Andy On 21/08/07,

Re: CF does not offer to set up Apache connectors

2007-08-21 Thread Andy Allan
Just install with the built in server, and then run the Web Server Config tool afterwards. The CF installer doesn't pick up Apache if you start it's installation procedure AFTER starting the CF installation process. In that situation, just quit the CF install and rerun. Andy On 22/08/07, Brad

Re: stupid maintenance agreement question...

2007-08-22 Thread Andy Allan
Here in the UK, certainly from past experience, you would receive your maintenance updates from whoever you purchased it from. I've not yet had to deal with Adobe for this, but from folks I know who have, it's been nothing short of a nightmare. One story I heard was that even though my contact

Re: CF 7 - What JVMs are supported

2007-08-22 Thread Andy Allan
Officially... http://www.adobe.com/products/coldfusion/coldfusion7/pdfs/cfmx7_systemsupportmatrix.pdf On 22/08/07, Bosky, Dave [EMAIL PROTECTED] wrote: Which JVM's does CF7 support? Thanks, Dave ** HTC Disclaimer: The

Re: CF 7 - What JVMs are supported

2007-08-22 Thread Andy Allan
C'mon ... it's in plain view on the Adobe site folks... http://www.adobe.com/products/coldfusion/pdfs/cf8_systemsupportmatrix.pdf Andy On 22/08/07, Jim McAtee [EMAIL PROTECTED] wrote: Is there a similar support matrix published for CF8? - Original Message - From: Andy Allan [EMAIL

Re: Map .htm to ColdFusion

2007-09-06 Thread Andy Allan
Yes, you need to modify the web.xml file by hand, and it is required (in addition to the IIS change) to get ColdFusion to process .htm files. Restart CF once you've made the change. Andy On 06/09/07, Jim McAtee [EMAIL PROTECTED] wrote: - Original Message - From: Andrew Scott [EMAIL

Re: CF8 Docs

2007-09-11 Thread Andy Allan
http://www.adobe.com/support/documentation/en/coldfusion/ Andy On 11/09/2007, Robert Harrison [EMAIL PROTECTED] wrote: For CF7 I had a CF Docs folder on the local. I don't have one where I installed CF8, and I use that a lot when I'm working off-line. Are there any downloadable CF8 docs?

Re: [CF-Dev] Adobe Max 2007

2007-09-14 Thread Andy Allan
Whilst we haven't announced pricing, yes, we will be much cheaper than MAX even with all the changes. Andy On 14/09/2007, Tom Chiverton [EMAIL PROTECTED] wrote: On Friday 14 Sep 2007, [EMAIL PROTECTED] wrote: You can always flight to Barcelona and attend MAX Europe. Not only the flight is

Re: CF8: Why would I be getting an access error with this query?

2007-09-20 Thread Andy Allan
Looks like your user hasn't been specifically granted the appropriate rights to your database. Andy On 20/09/2007, Rick Faircloth [EMAIL PROTECTED] wrote: This is on a remote shared server, so I only have access through an access panel. I can log into everything there without problem.

  1   2   3   >