Re: Session stickiness breaks in CF 8

2009-02-11 Thread James Holmes
I can do this in our test cluster. I'll try it tomorrow and wait for another incident. mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ 2009/2/11 Jochem van Dieten joch...@gmail.com: On Tue, Feb 10, 2009 at 4:30 AM, James Holmes wrote: We have an issue with

Managing Software Releases

2009-02-11 Thread Chad McCue
We are a company that just picked up a very big client. We will be having 3 programmers working on this clients projects/bug fixes at one time. I need some help finding a packaged solution that will allow my programmers to code independently from each other but then merge together for multiple

Re: Maybe I need a SQL Service Consultant...

2009-02-11 Thread Rick Root
Well, using perfmon I was able to see significant amounts of disk read and write on the SQL Box during these times... but I still didn't really know what that meant. We've contracted a 4 hour block of time from a sql server tuning expoert and in conversations with him, just based on that

Re: Managing Software Releases

2009-02-11 Thread Eric Cobb
You need Subbversion (http://subversion.tigris.org/). Aaron West wrote an awesome step-by-step tutorial on how to install and configure Subversion, and even shows you how to check out code files to your local development system. It's a 5 part blog series, but you can breeze through them

Re: Managing Software Releases

2009-02-11 Thread Tom Chiverton
On Wednesday 11 Feb 2009, Eric Cobb wrote: You need Subbversion (http://subversion.tigris.org/). Well, you need a revision control system of some sort. One that supports branches (for the released version, some number of other versions etc.) in particular. You also need something that plugs

Re: Managing Software Releases

2009-02-11 Thread Gerald Guido
Geoff Bowers has a bunch of posts on the matter. http://blog.daemon.com.au/1118C117-EA69-0EC7-F51FB27420E60F40 and some presentation slides http://blog.daemon.com.au/go/blog-post/taming-the-code-at-web-on-the-piste HTH G! -- Gerald Guido http://www.myinternetisbroken.com To invent, you

(ot) SQL 2000 + FCKEdit truncation problem

2009-02-11 Thread Les Mizzell
SQL Server 2000 (8.0.x) Database field type ntext Using FCKEditor as a rich text editor for this field There's no restriction on size in the insert query. There's no restriction on the amount of stuff that can be typed/pasted into the field. Can anyone come up with a reason why all inserts are

Re: (ot) SQL 2000 + FCKEdit truncation problem

2009-02-11 Thread Jochem van Dieten
On Wed, Feb 11, 2009 at 4:48 PM, Les Mizzell wrote: SQL Server 2000 (8.0.x) Database field type ntext Can anyone come up with a reason why all inserts are truncated after approx 31,000 (give or take) characters? Did you enable CLOB support in the advanced properties of the DSN definition?

RE: (ot) SQL 2000 + FCKEdit truncation problem

2009-02-11 Thread Adrian Lynch
Nope, but putting debug code throughout the process will help hunt down the point at which it's going missing. If you suspect FCK, see if a regular text area does the same. Adrian -Original Message- From: Les Mizzell [mailto:lesm...@bellsouth.net] Sent: 11 February 2009 15:48 To:

Re: (ot) SQL 2000 + FCKEdit truncation problem

2009-02-11 Thread Rick Root
check our Datasource settings make sure enable large text retrieval is ON On Wed, Feb 11, 2009 at 10:48 AM, Les Mizzell lesm...@bellsouth.net wrote: SQL Server 2000 (8.0.x) Database field type ntext Using FCKEditor as a rich text editor for this field There's no restriction on size in the

Form vars when display set to none

2009-02-11 Thread Adrian Lynch
Just for peace of mind, if I have a form field that has it's display set to none... cfdump var=#FORM# form action=test.cfm method=post input type=text name=field-1 style=display: none; / input type=text name=field-2 / input type=submit name=submit value=Submit / /form

Re: (ot) SQL 2000 + FCKEdit truncation problem

2009-02-11 Thread John M Bliss
Are you using cfstoredproc or cfquery? If cfquery, can you reply with body of query? On Wed, Feb 11, 2009 at 9:48 AM, Les Mizzell lesm...@bellsouth.net wrote: SQL Server 2000 (8.0.x) Database field type ntext Using FCKEditor as a rich text editor for this field There's no restriction on

Array of textboxes in cfform

2009-02-11 Thread Nupur Gupta
I have a set of textboxes in a form as cfloop from=1 to=10 index=curIndex cfinput type=text name=theTextBox_#curIndex# value= / cfloop On submitting the form, I need to get the value in each text box as cfloop from=1 to=10 index=curIndex cfset val = Form.theTextBox_#curIndex# cfloop

Re: (ot) SQL 2000 + FCKEdit truncation problem

2009-02-11 Thread Jason Fisher
Have you checked the Long Text Buffer setting, under Advanced Settings for the Datasource in CF Administrator? Maybe it's at 32000 or something? ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to

Re: Array of textboxes in cfform

2009-02-11 Thread Azadi Saryev
cfset val = form['theTextBox_' curIndex] Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ Nupur Gupta wrote: I have a set of textboxes in a form as cfloop from=1 to=10 index=curIndex cfinput type=text name=theTextBox_#curIndex# value= / cfloop On submitting the form, I need to

Query Caching Function: Clearing Cached Query

2009-02-11 Thread Robert Harrison
I have a huge query that is used in a timed loop process completes. The process could take from a minute to 15 hours, and it runs the query each time is goes through a loop. If I cache the query (cached within the last 15 hours), it can save a lot of re-querying processing... but what if the

Re: (ot) Drop down menu bar recommendations

2009-02-11 Thread Gerald Guido
Thanx Massimo. I didn't use the custom tags but the rendered HTML fit the bill. With some massaging it allowed me to use the existing tabs. That was the biggie. Your stuff is always first rate. G! On Tue, Feb 10, 2009 at 6:19 PM, Massimo Foti mass...@massimocorner.comwrote: I was trying to

RE: Query Caching Function: Clearing Cached Query

2009-02-11 Thread Adrian Lynch
I don't think you can clear one query, but cfobjectcache will clear them all. Best check the docs on that one though because I'm just recalling it. Adrian -Original Message- From: Robert Harrison [mailto:rob...@austin-williams.com] Sent: 11 February 2009 16:07 To: cf-talk Subject:

Re: Array of textboxes in cfform

2009-02-11 Thread Charlie Griefer
cfloop from=1 to=10 index=curIndex cfset val = Form[theTextBox_ curIndex] / cfloop On Wed, Feb 11, 2009 at 8:04 AM, Nupur Gupta nupurgupta0...@gmail.comwrote: I have a set of textboxes in a form as cfloop from=1 to=10 index=curIndex cfinput type=text name=theTextBox_#curIndex#

Re: Array of textboxes in cfform

2009-02-11 Thread Gerald Guido
Replace Form.theTextBox_#curIndex# with #Form[theTextBox_ curIndex]# On Wed, Feb 11, 2009 at 11:04 AM, Nupur Gupta nupurgupta0...@gmail.comwrote: I have a set of textboxes in a form as cfloop from=1 to=10 index=curIndex cfinput type=text name=theTextBox_#curIndex# value= / cfloop

Re: Form vars when display set to none

2009-02-11 Thread Rick Root
CFFormProtect uses this method of putting in a hidden form field and requiring that it be empty as part of it's anti-spamming tests. the CSS display none will NOT affect whether or not the field is submitted, it should always be there. Rick On Wed, Feb 11, 2009 at 10:55 AM, Adrian Lynch

Re: Array of textboxes in cfform

2009-02-11 Thread Jason Fisher
cfset val = Form[theTextBox_#curIndex#] ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f Archive:

Re: Array of textboxes in cfform

2009-02-11 Thread Rick Root
On Wed, Feb 11, 2009 at 11:04 AM, Nupur Gupta nupurgupta0...@gmail.com wrote: cfset val = Form.theTextBox_#curIndex# All that does is set val to a string, not the actual form value. Use this: cfset val = form[theTextBox_#curindex#] or if you prefer, this: cfset val =

Re: (ot) Drop down menu bar recommendations

2009-02-11 Thread Massimo Foti
Thanx Massimo. I didn't use the custom tags but the rendered HTML fit the bill. With some massaging it allowed me to use the existing tabs. That was the biggie. Your stuff is always first rate. The custom tags are just a convenience, nothing more. Glad to be of help Massimo

RE: Query Caching Function: Clearing Cached Query

2009-02-11 Thread Robert Harrison
I looked in the docs first. What if at the end of the process I ran the query using the same query name and no caching. Would that actually get rid of the cached query? Robert B. Harrison Director of Interactive services Austin Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788 T :

Re: Array of textboxes in cfform

2009-02-11 Thread Gerald Guido
Is there an echo in here? On Wed, Feb 11, 2009 at 11:08 AM, Jason Fisher ja...@wanax.com wrote: cfset val = Form[theTextBox_#curIndex#] ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to

RE: Query Caching Function: Clearing Cached Query

2009-02-11 Thread Adrian Lynch
No, it needs to have the same SQL. I wonder if it also needs the same params, doesn't CF8 allow cached queries with cfqueryparam? Maybe change the param to something that'll return an empty result. That's all conjecture mind! Would cfobjectcache be overkill for the situation? Adrian

Re: (ot) Drop down menu bar recommendations

2009-02-11 Thread Casey Dougall
On Tue, Feb 10, 2009 at 6:14 PM, Gerald Guido gerald.gu...@gmail.comwrote: I have a finicky CSS/XHTML design that took forever to get pixel perfect (my first CSS based design) and I need a drop down menuing system (an after thought). We are on CF7 so no cfmenu. I was trying to use

How do I create XML elements without the namespace (xmlns) attribute

2009-02-11 Thread Manuel Ruf
Hi, I'm creating an xml element using XMLElemNew(doc, dc:subject) for my xml document. When creating the element, CF resolves the namespace from the dc prefix and adds it as an attribute: dc:subject xmlns:dc=http://purl.org/dc/elements/1.1/;Text/dc:subject Now is there a way to create a node

Re: Array of textboxes in cfform

2009-02-11 Thread Priya Koya
cfset val = Form.theTextBox_#curIndex# All that does is set val to a string, not the actual form value. Use this: cfset val = form[theTextBox_#curindex#] or if you prefer, this: cfset val = evaluate(form.theTextBox_#curIndex#) But if you evaluate, people with harass you. =) Rick --

RE: Form vars when display set to none

2009-02-11 Thread Dawson, Michael
Are you positive about that? We worked on a project that had display:none and, from what I remember, those fields were not submitted. This is easy enough for the OP to test, however. (CFDUMP and/or Firebug) Thanks, Mike -Original Message- From: Rick Root

Re: (ot) Drop down menu bar recommendations

2009-02-11 Thread Gerald Guido
Thanx Casey. That is perfect. On Wed, Feb 11, 2009 at 11:35 AM, Casey Dougall ca...@uberwebsitesolutions.com wrote: On Tue, Feb 10, 2009 at 6:14 PM, Gerald Guido gerald.gu...@gmail.com wrote: I have a finicky CSS/XHTML design that took forever to get pixel perfect (my first CSS

Re: Array of textboxes in cfform

2009-02-11 Thread Priya Koya
May be this is what you are looking for... cfform cfloop from=1 to=10 index=curIndex cfinput type=text name=theTextBox_#curIndex# value= /br/ /cfloop cfinput type=Submit name=Submit value=Submit / /cfform cfif isDefined(form.Submit)

Re: Array of textboxes in cfform

2009-02-11 Thread Priya Koya
cfform cfloop from=1 to=10 index=curIndex cfinput type=text name=theTextBox_#curIndex# value= /br/ /cfloop cfinput type=Submit name=Submit value=Submit / /cfform cfif isDefined(form.Submit) cfloop list=#form.fieldnames# index=i br/ !--- cfoutput#Form[i]#/cfoutput --- cfset va1 =

RE: Form vars when display set to none

2009-02-11 Thread Adrian Lynch
Well yeah, but not on all browsers. Should have said I tested on the following: FF 3.0.6 IE 7.0.5 Chrome 0.2.1 On Win XP, these all pass the value. Does anyone know a browser/OS combo that doesn't? If anyone's interested in checking, submitting this form will say for sure: cfdump var=#FORM#

RE: Form vars when display set to none

2009-02-11 Thread Dawson, Michael
We are on the same platform. It may have been a slightly different situation, but I seem to recall that under some circumstance, the fields were not passed, either based on CSS or JS. I'm glad it's working for you, tho. Thanks, Mike -Original Message- From: Adrian Lynch

Re: Query Caching Function: Clearing Cached Query

2009-02-11 Thread Dave Watts
I wonder if it also needs the same params, doesn't CF8 allow cached queries with cfqueryparam? Maybe change the param to something that'll return an empty result. CF 8 does allow cached queries with CFQUERYPARAM. However, it requires the bound parameter values to match before it uses the

Re: Query Caching Function: Clearing Cached Query

2009-02-11 Thread Dave Watts
What if at the end of the process I ran the query using the same query name and no caching. Would that actually get rid of the cached query? That won't work, but you can flush a single query from the cache by rerunning the query with only one change - set CACHEDWITHIN to CreateTimeSpan(0, 0,

RE: Form vars when display set to none

2009-02-11 Thread Adrian Lynch
Also wondering what the situation with a parent display set to none would be? div style=display: none; input... / /div I wonder if that works the same way? Adrian -Original Message- From: Dawson, Michael [mailto:m...@evansville.edu] Sent: 11 February 2009 17:55 To: cf-talk

Re: (ot) Setting IIS 6 Content-Type HTTP header

2009-02-11 Thread Kris Jones
cfcontent type=text/html; charset=[whatever charset you want] / FYI: the above must appear in the first 1024 bytes of the response. Cheers, Kris From: Dave Watts: CF sets the content type for documents generated by CF. Otherwise, IIS sets the content type. Ok, that's the impression that

RE: (ot) Setting IIS 6 Content-Type HTTP header

2009-02-11 Thread Adrian Lynch
Really? That's a new one to me. Good to know. Will also mean having to control the whitespace above that point. cfcontent reset=true is great at that :O) Adrian -Original Message- From: Kris Jones [mailto:kris.jon...@verizon.net] Sent: 11 February 2009 18:46 To: cf-talk Subject:

Re: (ot) Setting IIS 6 Content-Type HTTP header

2009-02-11 Thread Dave Watts
cfcontent type=text/html; charset=iso-8859-1 / cfcontent type=text/html; charset=[whatever charset you want] / FYI: the above must appear in the first 1024 bytes of the response. I think the original poster is trying to specify the content type for non-CF documents, not CF documents. This

Re: CF Vertical Expanding Menu

2009-02-11 Thread Joel Polsky
Bryan (or anyone) Have an implimentation question regarding the Jquery plug mentions. If I use a cfinclue (or other method) -- when clicking a link to another page, does the Jquery remember the state of the navigation for the subsequent page? Meaning if I have a menu: membership +membership

RE: CF Vertical Expanding Menu

2009-02-11 Thread Bryan Hogan
Look at the demo code. There is some cookie code that will save the state. Bryan F. Hogan Product Manager eDonor(r) - Recruit, Retain, Repeat A Global Med Technologies(r) Company P 602.489.7844 F 602.489.7801 www.edonor.com The information contained in this electronic mail message,

Re: CF Vertical Expanding Menu

2009-02-11 Thread Joel Polsky
Thanks!! On Wed, Feb 11, 2009 at 2:32 PM, Bryan Hogan bho...@edonor.com wrote: Look at the demo code. There is some cookie code that will save the state. Bryan F. Hogan Product Manager eDonor(r) - Recruit, Retain, Repeat A Global Med Technologies(r) Company P 602.489.7844 F

Re: CF Log Viewer Question

2009-02-11 Thread Varun Dixit
Thanks Ray. Worked gr8. Use the AdminAPI: cfscript adminObj = createObject(component,cfide.adminapi.administrator); adminObj.login(admin); debugger = createObject(component, cfide.adminapi.debugging); logfolder = debugger.getLogProperty(logdirectory); /cfscript cfoutput#logfolder#/cfoutput

(ot) More SQL Profiler questions

2009-02-11 Thread Rick Root
Alright so now that I'm back to using the regular SQL Server JDBC driver, my queries are flying. Most of them. Problem is, there are some that don't. Watching in SQL Provider, all I see is stuff like this: exec sp_execute 162, 5909, 1973 That took 956ms of cpu... did over 180,000 reads, and

Re: (ot) Drop down menu bar recommendations

2009-02-11 Thread Dominic Watson
Perhaps a little late in the conversation but the very first drop downs I used I found on a list apart. Do a search on Suckerfish drop downs if you're interested - very elegent and entirely css based for FF at least. Dominic 2009/2/11 Gerald Guido gerald.gu...@gmail.com: Thanx Casey. That is

(ot) WYSIWYG

2009-02-11 Thread John M Bliss
On an *old* project, I'm getting rid of http://www.zrinity.com/activedit/ Which do you prefer...? http://fckeditor.net http://tinymce.moxiecode.com something else -- John Bliss IT Professional LinkedIn: http://www.linkedin.com/in/jbliss

Re: (ot) WYSIWYG

2009-02-11 Thread Mark Mandel
I like tinyMCE, but that may just be because I'm more used to it. Mark On Thu, Feb 12, 2009 at 11:30 AM, John M Bliss bliss.j...@gmail.com wrote: On an *old* project, I'm getting rid of http://www.zrinity.com/activedit/ Which do you prefer...? http://fckeditor.net

Re: (ot) WYSIWYG

2009-02-11 Thread James Holmes
I also vote for TinyMCE. mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ 2009/2/12 Mark Mandel: I like tinyMCE, but that may just be because I'm more used to it. ~| Adobe® ColdFusion® 8

Re: (ot) WYSIWYG

2009-02-11 Thread Scott Stroz
IF I am using CF8, I'll use cftextarea richtext=true / which is FCK. But if I need a lot of cusotm config, I'll probably use TinyMCE. On Wed, Feb 11, 2009 at 7:45 PM, James Holmes james.hol...@gmail.comwrote: I also vote for TinyMCE. mxAjax / CFAjax docs and other useful articles:

Re: (ot) WYSIWYG

2009-02-11 Thread Gerald Guido
I am in the middle of this as well. The best free one I have seen is xstandard http://xstandard.com/ But it requires an install. I am currently using FCK Editor. Mainly because it dovetails with Rick Root's CFFM - Coldfusion File Manager G! On Wed, Feb 11, 2009 at 7:38 PM, Mark Mandel

Re: (ot) WYSIWYG

2009-02-11 Thread Kym Kovan
Gerald Guido wrote: I am currently using FCK Editor. Mainly because it dovetails with Rick Root's CFFM - Coldfusion File Manager I am using TinyMCE - Mainly because it dovetails so nicely with CFFM! :-) On factor that might be important is style sheets, making your editor's edit area

Re: Form vars when display set to none

2009-02-11 Thread Azadi Saryev
Safari 4 for Windows sends both fields, too. same with field inside a hidden div on all these browsers. Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ Adrian Lynch wrote: Also wondering what the situation with a parent display set to none would be? div style=display: none;

Re: (ot) WYSIWYG

2009-02-11 Thread Gerald Guido
Go Rick! On Wed, Feb 11, 2009 at 8:21 PM, Kym Kovan dev-li...@mbcomms.net.au wrote: Gerald Guido wrote: I am currently using FCK Editor. Mainly because it dovetails with Rick Root's CFFM - Coldfusion File Manager I am using TinyMCE - Mainly because it dovetails so nicely with CFFM!

RE: Form vars when display set to none

2009-02-11 Thread Adrian Lynch
Cheers Azadi. Does anyone know of a browser/OS combo that doesn't? Adrian -Original Message- From: Azadi Saryev [mailto:az...@sabai-dee.com] Sent: 12 February 2009 01:32 To: cf-talk Subject: Re: Form vars when display set to none Safari 4 for Windows sends both fields, too.

Re: Query Caching Function: Clearing Cached Query

2009-02-11 Thread Azadi Saryev
even whitespace inside sql statement must be the same! so mind those tabs/spaces in your code formatting... Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ Dave Watts wrote: What if at the end of the process I ran the query using the same query name and no caching. Would that actually

Referencing a preset session timeout value

2009-02-11 Thread boybles maldooney
How do I reference the session timeout value (that has been set globally in administrator or locally in the application)? I want to use that value within an app I'm developing, which needs to be implimented as part of a bigger application on different servers/configurations. So I need to

ColdFusion Hosts

2009-02-11 Thread Robert Bailey
I am trying to find a decent CF8 hosting company that offers SQL Server. The company I am working with now (remotely) does not have a dev server, so I am looking for something that is going to have very little traffic, simply just allowing him to review. No email is needed, etc Thanks!

Re: ColdFusion Hosts

2009-02-11 Thread Charlie Griefer
if you're really just looking for a place to throw stuff up, i don't think you'll get cheaper than hostingatoz.com. On Wed, Feb 11, 2009 at 7:47 PM, Robert Bailey cft...@tropicalbean.comwrote: I am trying to find a decent CF8 hosting company that offers SQL Server. The company I am working

Hosting

2009-02-11 Thread Robert Bailey
I am trying to find a decent CF8 hosting company that offers SQL Server. The company I am working with now (remotely) does not have a dev server, so I am looking for something that is going to have very little traffic, simply just allowing him to review. My current host does not offer CF at

Re: Hosting

2009-02-11 Thread Mike Kear
Pick me! Pick me!!! See our packages at http://afpwebworks.com/index.cfm?pid=111216 - our servers are in a gigantic datacentre in California with multiple redundancy, high bandwidth, UPSs, security etc etc etc. We offer CF8 Enterprise on all our servers, and SQLServer2005 as well as MySQL if

Need someone with a mac, and someone with Linux to test a stream for me

2009-02-11 Thread Mike Kear
I am implementing streaming on the radio station site i manage, and need someone who has a mac and someone who has linux to check that what i'm going to put up as instructions work. To be frank, the instructions from the server company we use aren't all that clear, and i'm not sure i have

Re: Need someone with a mac, and someone with Linux to test a stream for me

2009-02-11 Thread Wil Genovese
I have both Mac and Linux. Wil Genovese One man with courage makes a majority. -Andrew Jackson A fine is a tax for doing wrong. A tax is a fine for doing well. On Feb 11, 2009, at 10:47 PM, Mike Kear wrote: I am implementing streaming on the radio station site i manage, and need someone

Re: Hosting

2009-02-11 Thread Patrick Santora
This is known as a good one in the CF community http://www.hostmysite.com/ -Pat On Wed, Feb 11, 2009 at 7:48 PM, Robert Bailey robert.bai...@gmail.comwrote: I am trying to find a decent CF8 hosting company that offers SQL Server. The company I am working with now (remotely) does not have a

Re: Hosting

2009-02-11 Thread Brad Wood
Charlie Arehart's CF411 to the rescue. He has a decent list of CF hosting companies. GoDaddy is probably the cheapest of them all, but you will get what you pay for. http://www.carehart.org/cf411/#cfhost ~Brad - Original Message - From: Robert Bailey robert.bai...@gmail.com To:

tools for creating DAO, Gateway, Bean, etc CFCs

2009-02-11 Thread Mike Soultanian
So I've been reading a bunch of stuff about CFCs and I read in a few blog posts where people said something like ...if you're still writing your DAO CFC by hand..., implying that there was a tool to do this for you. Are there tools that help in writing CFCs? Just like how FuseBuilder is a

Re: Session stickiness breaks in CF 8

2009-02-11 Thread James Holmes
I finally found the cause of this issue. It wasn't the JRun internal webserver - it was a session cookie being set by our portal servers. The portal server cookie is set domain wide and even though it has a string prepended to JSESSIONID in its name it seems that occasionally JRun is getting

Re: tools for creating DAO, Gateway, Bean, etc CFCs

2009-02-11 Thread Brad Wood
http://cfcgenerator.riaforge.org/ - Original Message - From: Mike Soultanian msoul...@csulb.edu To: cf-talk cf-talk@houseoffusion.com Sent: Thursday, February 12, 2009 12:12 AM Subject: tools for creating DAO, Gateway, Bean, etc CFCs So I've been reading a bunch of stuff about CFCs

Scheduled Tasks in CFMX 6.01 executing automatically on server reboot

2009-02-11 Thread Vineet Mangal
Hi All, I am facing a strange issue with ColdFusionMX6.1 Enterprise (Multiserver instance), scheduled tasks executing every time ColdFusion Server restarts. We are running CFMX 6.1,IIS 6.0. It runs on Windows Server 2003 machine. I have tried finding more information through google and

Nigel Phillips invites you to their network on Ecademy

2009-02-11 Thread nigel . phillips
Connect with me on Ecademy Hi I'd like to invite you to be part of my Ecademy network. I use Ecademy to manage my professional contacts, share knowledge and market my business. Take a look - it has paid off for me. * Click here to accept the invitation to join my network! * Nigel Phillips