AjaxCFC Debugging

2009-09-28 Thread Andrew McDuff

Hi there,

I've got a nasty / dreaded Error executing Database Query error appearing 
when using AjaxCFC with CF8. Problem is that the code works fine in all of my 
CFC functions on my local machine but fails on certain functions on the hosted 
server. In other words, some CFC functions work fine and others don't. I swear 
the actual SQL query in the offending function within the CFC is just fine. The 
problem is I want to debug / step through the offending CFC function to try and 
figure out what the hell is going on. It's driving me nuts.. Anyone know how I 
could do this / any suggestions?

Thks, Andrew 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326684
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Using a Listbox to allow Users Access

2009-09-28 Thread Damo Drumm

Hi, I have a drop down list on a form showing a list of Companies, which ive 
linked to a table called Company,
Im trying to use this list to give access for each username,
at them min when someones name is added to the Table (Users) they have access 
to all Companies on the list box, im trying to change this so i can give each 
person access to only the companies I require
Can someone help me out on how I go a bout doing this? 
Thanks 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326685
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Using a Listbox to allow Users Access

2009-09-28 Thread Randy Adkins

Depending on how you have your validation structured for permissions, an
idea would be:

Session.CompanyAccess = '1,2,5,6'

Then you can validate it when needed.

Now if you are going further to set permissions such as CRUD:

Session.CompanyAccess.Permissions_1 = C,R,U,D
Session.CompanyAccess.Permissions_2 = R
Session.CompanyAccess.Permissions_3 = C,R,U

(CRUD = Create, Read, Update, Delete)




On Mon, Sep 28, 2009 at 6:01 AM, Damo Drumm damien.dr...@quinn-group.comwrote:


 Hi, I have a drop down list on a form showing a list of Companies, which
 ive linked to a table called Company,
 Im trying to use this list to give access for each username,
 at them min when someones name is added to the Table (Users) they have
 access to all Companies on the list box, im trying to change this so i can
 give each person access to only the companies I require
 Can someone help me out on how I go a bout doing this?
 Thanks

 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326686
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Using a Listbox to allow Users Access

2009-09-28 Thread Damo Drumm

Thanks, The first option will suit me
so if i set up a field in My Users table called CompanyAccess,
then followed by the correct code it will be able to pick out wheather or not I 
can access it depending which numbers I have entered in my CompanyAccess field

Depending on how you have your validation structured for permissions, an
idea would be:

Session.CompanyAccess = '1,2,5,6'

Then you can validate it when needed.

Now if you are going further to set permissions such as CRUD:

Session.CompanyAccess.Permissions_1 = C,R,U,D
Session.CompanyAccess.Permissions_2 = R
Session.CompanyAccess.Permissions_3 = C,R,U

(CRUD = Create, Read, Update, Delete)




On Mon, Sep 28, 2009 at 6:01 AM, Damo Drumm 
damien.dr...@quinn-group.comwrote:

 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326687
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: AjaxCFC Debugging

2009-09-28 Thread Scott Stewart

Andrew, 

If you're not using Firefox w/the Firebug plugin, get it, the Net function
alone can help tremendously in tracking down CF errors in Ajax calls. Ray
Camden has also written a plugin for Firefox called ColdFire which brings
CF errors into the Firebug interface.

-Original Message-
From: Andrew McDuff [mailto:andy.mcd...@gmail.com] 
Sent: Monday, September 28, 2009 5:36 AM
To: cf-talk
Subject: AjaxCFC Debugging


Hi there,

I've got a nasty / dreaded Error executing Database Query error appearing
when using AjaxCFC with CF8. Problem is that the code works fine in all of
my CFC functions on my local machine but fails on certain functions on the
hosted server. In other words, some CFC functions work fine and others
don't. I swear the actual SQL query in the offending function within the CFC
is just fine. The problem is I want to debug / step through the offending
CFC function to try and figure out what the hell is going on. It's driving
me nuts.. Anyone know how I could do this / any suggestions?

Thks, Andrew 



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326688
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


How to Handle Objects when Doing Several Updates and Once?

2009-09-28 Thread Glyn Jackson

I am trying to work with objects and better understand how to use them. So far 
it has been straight forward when updating/creating/deleting one record at a 
time. But I now need to update many records at once is getting a bit tricky.

I simplified version of what I am doing so far is below...


I create an object...
var productBean = variables.storeService.createProductBean(); //Create Product 
Bean

Push the data into it using this very useful plugin in CB
getPlugin('beanFactory').populateBean(productBean);//The Magic Bean Machine

and then simply update my DAO via my service like so
variables.storeService.saveProduct(productBean)

my question
However I am now faced with a situation where I need update several records at 
the same time. So my question is how to I handle this with an object? do I have 
to repopulate my object in a loop and then do the database updates one at a 
time? I can see this causing many issues what if the write fails halfway etc, 
and it means writing some sort of array to store all the data while its being 
looped over, sounds cumbersome!

Below is how I would have done the update before objects in a procedural manner 
if you get what I mean...

cfloop from=1 to=#FORM.qty# index=i
cfscript
value = ;
if (i IS 1) {
value = #FORM.value1#;
}
else if (i IS 2) {
value = #FORM.value2#;
}
else if (i IS 3) {
value = #FORM.value3#;
}
else if (i IS 4) {
value = #FORM.value4#;
}
else if (i IS 5) {
value = #FORM.value5#;
}
else if (i IS 6) {
value = #FORM.value6#;
}
else if (i IS 7) {
value = #FORM.value7#;
}
/cfscript

cfif NOT value IS 
cfquery name=addValue datasource=dbSource
INSERT INTO optionValues (value, optionId) VALUES ('#value#', '#optionId#')
/cfquery
/cfif
cfset i = i + 1
/cfloop
cfset success = TRUE  


how do other people do this sort of update using objects, any example, blog 
posts, ect would be very useful. Thanks.

:)


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326689
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: selecting different template based on file name

2009-09-28 Thread Tom Chiverton

On Tuesday 22 Sep 2009, Damo Drumm wrote:
   where IINVOICE_Key = #url.invoice#
   AND InvoiceTemplateType_Key = 1
   /cfquery

Use CFQUERYPARAM !
Unless you really want someone putting 
?invoice=0;drop table InvoiceTemplate; -- 
into their address bar to take down the system...

-- 
Helping to authoritatively bully best-of-breed impactful interactive 
deliverables as part of the IT team of the year, '09 and '08



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office together with a 
list of those non members who are referred to as partners.  We use the word 
“partner” to refer to a member of the LLP, or an employee or consultant with 
equivalent standing and qualifications. Regulated by the Solicitors Regulation 
Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.co

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326690
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: How to clear local cache when users logout

2009-09-28 Thread Tom Chiverton

On Thursday 24 Sep 2009, Nathan Chen wrote:
 How do you clear users'  local cache after they log out and the session
 variable is cleared? I can clear the session on the server, but if users
 click the Back button, they can still get back and that's not what I
 want. This must have been discussed but I guess I missed.

The logout page should redirect them to a page that redirects them to the home 
page.
This will keep 90% of people from pressing back.

For those that can/do skip back more than one page at a time, all your pages 
that are behind authentication should be checking a session token of some 
sort anyway.
OnRequestStart() might be a good place to do this.

-- 
Helping to continuously harvest slick attention-grabbing world-class 
enterprise e-business as part of the IT team of the year, '09 and '08



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office together with a 
list of those non members who are referred to as partners.  We use the word 
“partner” to refer to a member of the LLP, or an employee or consultant with 
equivalent standing and qualifications. Regulated by the Solicitors Regulation 
Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.co

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326691
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cf_barcode height not working in Firefox:

2009-09-28 Thread Richard White

does anyone have any ideas what may cause this?

thanks

 thanks for your reply, this has sorted out the height issue, although 
 the width has increased significatly (again only in Mozilla but works 
 fine in IE) 
 
 do you know what would cause this?
 
 thanks
 
 see if adding display:inline-block to the span's style, or setting
 line-height property, helps.
 iirc, span, by default,  is not a block-level element, and thus uses 
 the
 line-height of its parent for its height...
 
 Azadi Saryev
 Sabai-dee.com
 http://www.sabai-dee.com/
 
 
 On 25/09/2009 18:50, Richard White wrote:
  


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326692
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: cf_barcode height not working in Firefox:

2009-09-28 Thread Azadi Saryev

did you try specifying a fixed width in the span's style?

Azadi Saryev
Sabai-dee.com
http://www.sabai-dee.com/


On 28/09/2009 20:42, Richard White wrote:
 does anyone have any ideas what may cause this?

 thanks

   
 thanks for your reply, this has sorted out the height issue, although 
 the width has increased significatly (again only in Mozilla but works 
 fine in IE) 

 do you know what would cause this?

 thanks

 
 see if adding display:inline-block to the span's style, or setting
 line-height property, helps.
 iirc, span, by default,  is not a block-level element, and thus uses 
   
 the
 
 line-height of its parent for its height...

 Azadi Saryev
 Sabai-dee.com
 http://www.sabai-dee.com/


 On 25/09/2009 18:50, Richard White wrote:
   
 

 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326693
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


javascript / coldfusion ajax communication

2009-09-28 Thread Richard White

hi

our client side scripting is in javascript and server side code is coldfusion.

our javascript sends string data to coldfusion via url. 

what is the best way to encode/escape the javascript strings and 
decode/unescape them in coldfusion

thanks

richard 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326694
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Using a Listbox to allow Users Access

2009-09-28 Thread Randy Adkins

Yes, however you will need to validate permissions when needed

Ex:
CFIF ListFind(Session.companyAccess,thisCompanyID)
... GOOD
CFELSE
... BAD
/CFIF



On Mon, Sep 28, 2009 at 7:14 AM, Damo Drumm damien.dr...@quinn-group.comwrote:


 Thanks, The first option will suit me
 so if i set up a field in My Users table called CompanyAccess,
 then followed by the correct code it will be able to pick out wheather or
 not I can access it depending which numbers I have entered in my
 CompanyAccess field

 Depending on how you have your validation structured for permissions, an
 idea would be:
 
 Session.CompanyAccess = '1,2,5,6'
 
 Then you can validate it when needed.
 
 Now if you are going further to set permissions such as CRUD:
 
 Session.CompanyAccess.Permissions_1 = C,R,U,D
 Session.CompanyAccess.Permissions_2 = R
 Session.CompanyAccess.Permissions_3 = C,R,U
 
 (CRUD = Create, Read, Update, Delete)
 
 
 
 
 On Mon, Sep 28, 2009 at 6:01 AM, Damo Drumm damien.dr...@quinn-group.com
 wrote:
 
 

 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326695
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cf_barcode height not working in Firefox:

2009-09-28 Thread Richard White

we cannot specify a fixed width as it is a barcode feature that has varying 
widths between all the bars. the full code is as follows:

!--- 
==
FILE:   barcode39.cfm - Custom tag for Code 39 (3 from 9) 
barcodes
VERSION:1.0
AUTHOR: Philip Pearson (Inspired by Ryan Masuga's UPCA version)
MODIFIED BY:pears...@aquinas.vic.edu.au 
WRITTEN:17/11/2004
DESCRIPTION:Writes barcodes in a browser window ready to be printed 
and scanned.
COMMENTS:   Code 39 specs from www.barcodeman.com
===
 ---

!--- These are fairly self explanatory ---
cfparam name=Attributes.InputValue default=INVALID
cfparam name=Attributes.BarWidth   default=2
cfparam name=Attributes.BarHeight  default=50
cfparam name=Attributes.TextTopdefault=
cfparam name=Attributes.TextBottom default=
cfparam name=Attributes.TextFontTopdefault=font: bold 14px Arial, 
sans-serif
cfparam name=Attributes.TextFontBottom default=font: bold 18px Courier, 
sans-serif
cfparam name=Attributes.MarginTop  default=0
cfparam name=Attributes.MarginBottom   default=0

!--- Initialize array. Note: not all characters are supported by the code 39 
specification, --- 
!--- so invalid characters will show as a $ sign. Lowercase not supported 
either.   ---
cfset code39 = ArrayNew(1)
cfloop index=i from=1 to=256 
cfset code39[i] = 01110 !--- '$' is default init string ---
/cfloop

!--- Load array with all the supported characters' bar attributes --- 
cfset code39[32] = 001101000 !---   ---
cfset code39[36] = 01110 !--- $ ---
cfset code39[37] = 00111 !--- % ---
cfset code39[42] = 001101000 !--- * ---
cfset code39[43] = 01011 !--- + ---
cfset code39[45] = 000111000 !--- - ---
cfset code39[46] = 100101000 !--- . ---
cfset code39[47] = 01101 !--- / ---

cfset code39[48] = 001100100 !--- 0 ---
cfset code39[49] = 100010100 !--- 1 ---
cfset code39[50] = 010010100 !--- 2 ---
cfset code39[51] = 11100 !--- 3 ---
cfset code39[52] = 001010100 !--- 4 ---
cfset code39[53] = 101000100 !--- 5 ---
cfset code39[54] = 011000100 !--- 6 ---
cfset code39[55] = 000110100 !--- 7 ---
cfset code39[56] = 100100100 !--- 8 ---
cfset code39[57] = 010100100 !--- 9 ---

cfset code39[65] = 100010010 !--- A ---
cfset code39[66] = 010010010 !--- B ---
cfset code39[67] = 11010 !--- C ---
cfset code39[68] = 001010010 !--- D ---
cfset code39[69] = 10110 !--- E ---
cfset code39[70] = 01110 !--- F ---
cfset code39[71] = 000110010 !--- G ---
cfset code39[72] = 100100010 !--- H ---
cfset code39[73] = 010100010 !--- I ---
cfset code39[74] = 001100010 !--- J ---
cfset code39[75] = 100010001 !--- K ---
cfset code39[76] = 010010001 !--- L ---
cfset code39[77] = 11001 !--- M ---
cfset code39[78] = 001010001 !--- N ---
cfset code39[79] = 10101 !--- O ---
cfset code39[80] = 01101 !--- P ---
cfset code39[81] = 000110001 !--- Q ---
cfset code39[82] = 10011 !--- R ---
cfset code39[83] = 01011 !--- S ---
cfset code39[84] = 00111 !--- T ---
cfset code39[85] = 100011000 !--- U ---
cfset code39[86] = 010011000 !--- V ---
cfset code39[87] = 110001000 !--- W ---
cfset code39[88] = 001011000 !--- X ---
cfset code39[89] = 101001000 !--- Y ---
cfset code39[90] = 011001000 !--- Z ---

!--- Code 39 specification requires * at the start and end of the barcode ---
cfset Attributes.InputValue = *  Attributes.InputValue  *

cfoutput
span style=#Attributes.TextFontTop##Attributes.TextTop#/span
div
cfloop index=i from=1 to=#len(Attributes.InputValue)# 
span 
style=border-right:#val(mid(code39[asc(mid(Attributes.InputValue,i,1))],1,1)*(Attributes.BarWidth)+(Attributes.BarWidth/2))#px
 solid; border-color: black; height: 
#Attributes.BarHeight#px;margin-bottom:#Attributes.MarginBottom#px;margin-top:#Attributes.MarginTop#px;
 display:inline-block;/span
span 
style=border-right:#val(mid(code39[asc(mid(Attributes.InputValue,i,1))],6,1)*(Attributes.BarWidth)+(Attributes.BarWidth/2))#px
 solid; border-color: white; height: 
#Attributes.BarHeight#px;margin-bottom:#Attributes.MarginBottom#px;margin-top:#Attributes.MarginTop#px;
 display:inline-block;/span
span 
style=border-right:#val(mid(code39[asc(mid(Attributes.InputValue,i,1))],2,1)*(Attributes.BarWidth)+(Attributes.BarWidth/2))#px
 solid; border-color: black; height: 
#Attributes.BarHeight#px;margin-bottom:#Attributes.MarginBottom#px;margin-top:#Attributes.MarginTop#px;
 display:inline-block;/span
span 
style=border-right:#val(mid(code39[asc(mid(Attributes.InputValue,i,1))],7,1)*(Attributes.BarWidth)+(Attributes.BarWidth/2))#px
 solid; border-color: white; height: 

CF9 ORM - Using a mapping for cfclocation?

2009-09-28 Thread Jeff Chastain

Has anybody tried using a mapping or a directory path outside of the web
root for the CF9 ORM cfclocation setting?  I have tried both a mapping
defined in the Application.cfc as well as a full directory path and the
components / entities are found on reload as the database schema is built.
However, when I try to create a new entity, I get an error that the
component cannot be found.

 

Does this work for anybody or is this a bug/feature?

 

Thanks

-- Jeff



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326697
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: cf_barcode height not working in Firefox:

2009-09-28 Thread Josh Nathanson

I used this tag, and I think (this was awhile back) I modified it so instead
of using spans, it used table cells (td's).

Once I did that I was able to control the width and height across browsers.

-- Josh


-Original Message-
From: Richard White [mailto:rich...@j7is.co.uk] 
Sent: Monday, September 28, 2009 6:42 AM
To: cf-talk
Subject: Re: cf_barcode height not working in Firefox:


we cannot specify a fixed width as it is a barcode feature that has varying
widths between all the bars. the full code is as follows:




~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326698
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Cold Fusion Enterprise or Standard Installed?

2009-09-28 Thread Robert Kelso

Hi guys,

I'm doing a computer forensic investigation on a bad hard drive with Cold 
Fusion MX7 installed.  I'm trying to find out if the installed version is 
Enterprise or Standard.  Is there a way I can determine in the version is 
Enterprise or Standard just by looking at the files on the hard drive.  Please 
note that I'm viewing this drive as an external drive, so I cannot actually run 
the Cold Fusion, I can only look at the files and their content.  Any help 
would be appreciated.  Thanks!

Robert Kelso
Forensic Pursuit
robert.ke...@forensicpursuit.com 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326699
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Cold Fusion Enterprise or Standard Installed?

2009-09-28 Thread Mark Kruger

Robert,

Find the serial number (in license.properties) and go to an existing CF
installation - even one on your dev box - and update the serial number. Then
look at the server settings.

-Mark
 


Mark A. Kruger, CFG, MCSE
(402) 408-3733 ext 105
www.cfwebtools.com
www.coldfusionmuse.com
www.necfug.com

-Original Message-
From: Robert Kelso [mailto:robert.ke...@forensicpursuit.com] 
Sent: Monday, September 28, 2009 1:39 PM
To: cf-talk
Subject: Cold Fusion Enterprise or Standard Installed?


Hi guys,

I'm doing a computer forensic investigation on a bad hard drive with Cold
Fusion MX7 installed.  I'm trying to find out if the installed version is
Enterprise or Standard.  Is there a way I can determine in the version is
Enterprise or Standard just by looking at the files on the hard drive.
Please note that I'm viewing this drive as an external drive, so I cannot
actually run the Cold Fusion, I can only look at the files and their
content.  Any help would be appreciated.  Thanks!

Robert Kelso
Forensic Pursuit
robert.ke...@forensicpursuit.com 



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326700
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Cold Fusion Enterprise or Standard Installed?

2009-09-28 Thread brad

Better yet-- if you have access to the server.log file, crack it open
and look at its last restart:

Information,main,09/04/09,15:24:12,,Starting logging...
Information,main,09/04/09,15:24:12,,Starting license...
Information,main,09/04/09,15:24:14,,Enterprise Edition enabled

It should tell you what version was enabled after the starting license
part.

~Brad

 Original Message 
Subject: RE: Cold Fusion Enterprise or Standard Installed?
From: Mark Kruger mkru...@cfwebtools.com
Date: Mon, September 28, 2009 2:21 pm
To: cf-talk cf-talk@houseoffusion.com


Robert,

Find the serial number (in license.properties) and go to an existing CF
installation - even one on your dev box - and update the serial number.
Then
look at the server settings.

-Mark
 



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326701
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Cold Fusion Enterprise or Standard Installed?

2009-09-28 Thread Mark Kruger

Doh!  That is better :) 

-Original Message-
From: b...@bradwood.com [mailto:b...@bradwood.com] 
Sent: Monday, September 28, 2009 2:33 PM
To: cf-talk
Subject: RE: Cold Fusion Enterprise or Standard Installed?


Better yet-- if you have access to the server.log file, crack it open and
look at its last restart:

Information,main,09/04/09,15:24:12,,Starting logging...
Information,main,09/04/09,15:24:12,,Starting license...
Information,main,09/04/09,15:24:14,,Enterprise Edition enabled

It should tell you what version was enabled after the starting license part.

~Brad

 Original Message 
Subject: RE: Cold Fusion Enterprise or Standard Installed?
From: Mark Kruger mkru...@cfwebtools.com
Date: Mon, September 28, 2009 2:21 pm
To: cf-talk cf-talk@houseoffusion.com


Robert,

Find the serial number (in license.properties) and go to an existing CF
installation - even one on your dev box - and update the serial number.
Then
look at the server settings.

-Mark
 





~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326702
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Cold Fusion Enterprise or Standard Installed?

2009-09-28 Thread Robert Kelso

Hi Brad,

Thanks for that (Thanks to Mark as well).  I have looked through the server log 
but see no reference to either Enterprise or Standard.  Do you think the 
absence of the line Enterprise Edition enabled means that non-Enterprise 
edition was installed, or could it be something else?

Here's an excerpt from my log:

Information,main,05/14/07,19:46:55,,D:\CFusionMX7\logs\server.log 
initialized

Information,main,05/14/07,19:46:55,,Starting logging...

Information,main,05/14/07,19:46:55,,Starting crypto...

Information,main,05/14/07,19:46:56,,Starting license...

Information,main,05/14/07,19:46:56,,Starting License server ...

Information,main,05/14/07,19:46:58,,Starting scheduler...

Information,main,05/14/07,19:46:58,,Starting WatchService...

Information,main,05/14/07,19:46:58,,Starting debugging...

Information,main,05/14/07,19:46:58,,Starting sql...

Information,main,05/14/07,19:46:58,,Starting mail...

Information,main,05/14/07,19:46:58,,CORBA Configuration not enabled

Information,main,05/14/07,19:46:58,,Starting cron...

Information,main,05/14/07,19:46:58,,Starting registry...

Information,main,05/14/07,19:46:58,,Starting client...

Information,main,05/14/07,19:46:58,,Starting xmlrpc...

Information,main,05/14/07,19:46:58,,Starting graphing...

Information,main,05/14/07,19:46:58,,Starting verity...

Information,main,05/14/07,19:46:58,,Starting archive...

Information,main,05/14/07,19:46:58,,Starting document...

Information,main,05/14/07,19:46:59,,Starting eventgateway...

Information,main,05/14/07,19:46:59,,Starting FlexAssembler...

Information,main,05/14/07,19:46:59,,ColdFusion started

Information,main,05/14/07,19:50:07,,Starting logging...

Information,main,05/14/07,19:50:07,,Starting crypto...

Information,main,05/14/07,19:50:07,,Starting license...

Information,main,05/14/07,19:50:07,,Starting License server ...

Information,main,05/14/07,19:50:08,,Starting scheduler...

Information,main,05/14/07,19:50:08,,Starting WatchService...



Better yet-- if you have access to the server.log file, crack it open
and look at its last restart:

Information,main,09/04/09,15:24:12,,Starting logging...
Information,main,09/04/09,15:24:12,,Starting license...
Information,main,09/04/09,15:24:14,,Enterprise Edition enabled

It should tell you what version was enabled after the starting license
part.

~Brad

Robert,

Find the serial number (in license.properties) and go to an existing CF
installation - even one on your dev box - and update the serial number.
Then
look at the server settings.

-Mark 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326703
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Cold Fusion Enterprise or Standard Installed?

2009-09-28 Thread Robert Kelso

Mark,

Since the server.log didn't seem to give me what I was looking for, I started 
down the road of your idea of replacing the S/N into an existing installation 
of ColdFusion.  Of course, I had no such thing since I am a computer forensics 
guy, not a developer and I've never used ColdFusion.  Regardless, I downladed 
and installed a trial version of Cold Fusion and replaced the serial number 
into my own license.properties file.  Not sure where to go from here though.  
I'm sure look at the server settings makes perfect sense to all the 
ColdFusion developers out there, but I don't really know what that means.  By 
the way, the serial number I extracted is CED700-53365-17253-87902.  If it 
would be really fast for you pop this serial number into one of your ColdFusion 
installations and see what information you can gather, I would dearly 
appreciate it.  I could probably even arrange for some compensation for your 
efforts.  Let me know if you'd to give it a try.  Thanks!



 Hi Brad,
 
 Thanks for that (Thanks to Mark as well).  I have looked through the 
 server log but see no reference to either Enterprise or Standard.  
 Do you think the absence of the line Enterprise Edition enabled 
 means that non-Enterprise edition was installed, or could it be 
 something else?
 
 Here's an excerpt from my log:
 
 Information,main,05/14/07,19:46:55,,D:\CFusionMX7\logs\server.
 log initialized
 
 Information,main,05/14/07,19:46:55,,Starting logging...
 
 Information,main,05/14/07,19:46:55,,Starting crypto...
 
 Information,main,05/14/07,19:46:56,,Starting license...
 
 Information,main,05/14/07,19:46:56,,Starting License server ...
 
 
 Information,main,05/14/07,19:46:58,,Starting scheduler...
 
 Information,main,05/14/07,19:46:58,,Starting WatchService...
 
 
 Information,main,05/14/07,19:46:58,,Starting debugging...
 
 Information,main,05/14/07,19:46:58,,Starting sql...
 
 Information,main,05/14/07,19:46:58,,Starting mail...
 
 Information,main,05/14/07,19:46:58,,CORBA Configuration not 
 enabled
 
 Information,main,05/14/07,19:46:58,,Starting cron...
 
 Information,main,05/14/07,19:46:58,,Starting registry...
 
 Information,main,05/14/07,19:46:58,,Starting client...
 
 Information,main,05/14/07,19:46:58,,Starting xmlrpc...
 
 Information,main,05/14/07,19:46:58,,Starting graphing...
 
 Information,main,05/14/07,19:46:58,,Starting verity...
 
 Information,main,05/14/07,19:46:58,,Starting archive...
 
 Information,main,05/14/07,19:46:58,,Starting document...
 
 Information,main,05/14/07,19:46:59,,Starting eventgateway...
 
 
 Information,main,05/14/07,19:46:59,,Starting FlexAssembler...
 
 
 Information,main,05/14/07,19:46:59,,ColdFusion started
 
 Information,main,05/14/07,19:50:07,,Starting logging...
 
 Information,main,05/14/07,19:50:07,,Starting crypto...
 
 Information,main,05/14/07,19:50:07,,Starting license...
 
 Information,main,05/14/07,19:50:07,,Starting License server ...
 
 
 Information,main,05/14/07,19:50:08,,Starting scheduler...
 
 Information,main,05/14/07,19:50:08,,Starting WatchService...
 
 
 
 
 Better yet-- if you have access to the server.log file, crack it 
 open
 and look at its last restart:
 
 Information,main,09/04/09,15:24:12,,Starting logging...
 Information,main,09/04/09,15:24:12,,Starting license...
 Information,main,09/04/09,15:24:14,,Enterprise Edition 
 enabled
 
 It should tell you what version was enabled after the starting 
 license
 part.
 
 ~Brad
 
 Robert,
 
 Find the serial number (in license.properties) and go to an existing 
 CF
 installation - even one on your dev box - and update the serial 
 number.
 Then
 look at the server settings.
 
 -Mark 


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326704
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Cold Fusion Enterprise or Standard Installed?

2009-09-28 Thread Craig Dudley

I think the 'CED' at the beginning of the serial stands for ColdFusion 
Enterprise Edition, perhaps not a great idea posting the whole serial though ;-)

Anyway, you can prove it by logging into the administration web page and going 
to the system information page, though I'm not sure if it's called that in CF7, 
I think it's linked form the top menu as in Cf8 though.

Craig.

-Original Message-
From: Robert Kelso [mailto:robert.ke...@forensicpursuit.com] 
Sent: Monday, September 28, 2009 9:17 PM
To: cf-talk
Subject: Re: Cold Fusion Enterprise or Standard Installed?


Mark,

Since the server.log didn't seem to give me what I was looking for, I started 
down the road of your idea of replacing the S/N into an existing installation 
of ColdFusion.  Of course, I had no such thing since I am a computer forensics 
guy, not a developer and I've never used ColdFusion.  Regardless, I downladed 
and installed a trial version of Cold Fusion and replaced the serial number 
into my own license.properties file.  Not sure where to go from here though.  
I'm sure look at the server settings makes perfect sense to all the 
ColdFusion developers out there, but I don't really know what that means.  By 
the way, the serial number I extracted is CED700-53365-17253-87902.  If it 
would be really fast for you pop this serial number into one of your ColdFusion 
installations and see what information you can gather, I would dearly 
appreciate it.  I could probably even arrange for some compensation for your 
efforts.  Let me know if you'd to give it a try.  Thanks!



 Hi Brad,
 
 Thanks for that (Thanks to Mark as well).  I have looked through the 
 server log but see no reference to either Enterprise or Standard.  
 Do you think the absence of the line Enterprise Edition enabled 
 means that non-Enterprise edition was installed, or could it be 
 something else?
 
 Here's an excerpt from my log:
 
 Information,main,05/14/07,19:46:55,,D:\CFusionMX7\logs\server.
 log initialized
 
 Information,main,05/14/07,19:46:55,,Starting logging...
 
 Information,main,05/14/07,19:46:55,,Starting crypto...
 
 Information,main,05/14/07,19:46:56,,Starting license...
 
 Information,main,05/14/07,19:46:56,,Starting License server ...
 
 
 Information,main,05/14/07,19:46:58,,Starting scheduler...
 
 Information,main,05/14/07,19:46:58,,Starting WatchService...
 
 
 Information,main,05/14/07,19:46:58,,Starting debugging...
 
 Information,main,05/14/07,19:46:58,,Starting sql...
 
 Information,main,05/14/07,19:46:58,,Starting mail...
 
 Information,main,05/14/07,19:46:58,,CORBA Configuration not 
 enabled
 
 Information,main,05/14/07,19:46:58,,Starting cron...
 
 Information,main,05/14/07,19:46:58,,Starting registry...
 
 Information,main,05/14/07,19:46:58,,Starting client...
 
 Information,main,05/14/07,19:46:58,,Starting xmlrpc...
 
 Information,main,05/14/07,19:46:58,,Starting graphing...
 
 Information,main,05/14/07,19:46:58,,Starting verity...
 
 Information,main,05/14/07,19:46:58,,Starting archive...
 
 Information,main,05/14/07,19:46:58,,Starting document...
 
 Information,main,05/14/07,19:46:59,,Starting eventgateway...
 
 
 Information,main,05/14/07,19:46:59,,Starting FlexAssembler...
 
 
 Information,main,05/14/07,19:46:59,,ColdFusion started
 
 Information,main,05/14/07,19:50:07,,Starting logging...
 
 Information,main,05/14/07,19:50:07,,Starting crypto...
 
 Information,main,05/14/07,19:50:07,,Starting license...
 
 Information,main,05/14/07,19:50:07,,Starting License server ...
 
 
 Information,main,05/14/07,19:50:08,,Starting scheduler...
 
 Information,main,05/14/07,19:50:08,,Starting WatchService...
 
 
 
 
 Better yet-- if you have access to the server.log file, crack it 
 open
 and look at its last restart:
 
 Information,main,09/04/09,15:24:12,,Starting logging...
 Information,main,09/04/09,15:24:12,,Starting license...
 Information,main,09/04/09,15:24:14,,Enterprise Edition 
 enabled
 
 It should tell you what version was enabled after the starting 
 license
 part.
 
 ~Brad
 
 Robert,
 
 Find the serial number (in license.properties) and go to an existing 
 CF
 installation - even one on your dev box - and update the serial 
 number.
 Then
 look at the server settings.
 
 -Mark 




~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326705
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Cold Fusion Enterprise or Standard Installed?

2009-09-28 Thread Mark Kruger

Log into he CF admin (i.e. http://127.0.0.1/cfide/administrator/. On the
left hand side under server settings there is a link to settings
summary. Click on it and at the top you will see something like the
following:

Server Product  ColdFusion MX  
Version  7,0,2,142559
Edition  Standard
Serial Number  x-xx  
Operating System  Windows 2003
OS Version  5.2 



The edition value is the one you are looking for.

-Mark

-Original Message-
From: Robert Kelso [mailto:robert.ke...@forensicpursuit.com] 
Sent: Monday, September 28, 2009 3:17 PM
To: cf-talk
Subject: Re: Cold Fusion Enterprise or Standard Installed?


Mark,

Since the server.log didn't seem to give me what I was looking for, I
started down the road of your idea of replacing the S/N into an existing
installation of ColdFusion.  Of course, I had no such thing since I am a
computer forensics guy, not a developer and I've never used ColdFusion.
Regardless, I downladed and installed a trial version of Cold Fusion and
replaced the serial number into my own license.properties file.  Not sure
where to go from here though.  I'm sure look at the server settings makes
perfect sense to all the ColdFusion developers out there, but I don't really
know what that means.  By the way, the serial number I extracted is
CED700-53365-17253-87902.  If it would be really fast for you pop this
serial number into one of your ColdFusion installations and see what
information you can gather, I would dearly appreciate it.  I could probably
even arrange for some compensation for your efforts.  Let me know if you'd
to give it a try.  Thanks!



 Hi Brad,
 
 Thanks for that (Thanks to Mark as well).  I have looked through the 
 server log but see no reference to either Enterprise or Standard.
 Do you think the absence of the line Enterprise Edition enabled 
 means that non-Enterprise edition was installed, or could it be 
 something else?
 
 Here's an excerpt from my log:
 
 Information,main,05/14/07,19:46:55,,D:\CFusionMX7\logs\server.
 log initialized
 
 Information,main,05/14/07,19:46:55,,Starting logging...
 
 Information,main,05/14/07,19:46:55,,Starting crypto...
 
 Information,main,05/14/07,19:46:56,,Starting license...
 
 Information,main,05/14/07,19:46:56,,Starting License server ...
 
 
 Information,main,05/14/07,19:46:58,,Starting scheduler...
 
 Information,main,05/14/07,19:46:58,,Starting WatchService...
 
 
 Information,main,05/14/07,19:46:58,,Starting debugging...
 
 Information,main,05/14/07,19:46:58,,Starting sql...
 
 Information,main,05/14/07,19:46:58,,Starting mail...
 
 Information,main,05/14/07,19:46:58,,CORBA Configuration not 
 enabled
 
 Information,main,05/14/07,19:46:58,,Starting cron...
 
 Information,main,05/14/07,19:46:58,,Starting registry...
 
 Information,main,05/14/07,19:46:58,,Starting client...
 
 Information,main,05/14/07,19:46:58,,Starting xmlrpc...
 
 Information,main,05/14/07,19:46:58,,Starting graphing...
 
 Information,main,05/14/07,19:46:58,,Starting verity...
 
 Information,main,05/14/07,19:46:58,,Starting archive...
 
 Information,main,05/14/07,19:46:58,,Starting document...
 
 Information,main,05/14/07,19:46:59,,Starting eventgateway...
 
 
 Information,main,05/14/07,19:46:59,,Starting FlexAssembler...
 
 
 Information,main,05/14/07,19:46:59,,ColdFusion started
 
 Information,main,05/14/07,19:50:07,,Starting logging...
 
 Information,main,05/14/07,19:50:07,,Starting crypto...
 
 Information,main,05/14/07,19:50:07,,Starting license...
 
 Information,main,05/14/07,19:50:07,,Starting License server ...
 
 
 Information,main,05/14/07,19:50:08,,Starting scheduler...
 
 Information,main,05/14/07,19:50:08,,Starting WatchService...
 
 
 
 
 Better yet-- if you have access to the server.log file, crack it
 open
 and look at its last restart:
 
 Information,main,09/04/09,15:24:12,,Starting logging...
 Information,main,09/04/09,15:24:12,,Starting license...
 Information,main,09/04/09,15:24:14,,Enterprise Edition
 enabled
 
 It should tell you what version was enabled after the starting
 license
 part.
 
 ~Brad
 
 Robert,
 
 Find the serial number (in license.properties) and go to an existing
 CF
 installation - even one on your dev box - and update the serial
 number.
 Then
 look at the server settings.
 
 -Mark




~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326706
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Cold Fusion Enterprise or Standard Installed?

2009-09-28 Thread Robert Kelso

OK guys, that worked perfectly.  I've been able to confirm that the serial 
number belongs to ColdFusion Enterprise Edition.  Thanks to all of you for your 
help!



 I think the 'CED' at the beginning of the serial stands for ColdFusion 
 Enterprise Edition, perhaps not a great idea posting the whole serial 
 though ;-)
 
 Anyway, you can prove it by logging into the administration web page 
 and going to the system information page, though I'm not sure if it's 
 called that in CF7, I think it's linked form the top menu as in Cf8 
 though.
 
 Craig.
 
 -Original Message-
 From: Robert Kelso [mailto:robert.ke...@forensicpursuit.com] 
 Sent: Monday, September 28, 2009 9:17 PM
 To: cf-talk
 Subject: Re: Cold Fusion Enterprise or Standard Installed?
 
 
 Mark,
 
 Since the server.log didn't seem to give me what I was looking for, I 
 started down the road of your idea of replacing the S/N into an 
 existing installation of ColdFusion.  Of course, I had no such thing 
 since I am a computer forensics guy, not a developer and I've never 
 used ColdFusion.  Regardless, I downladed and installed a trial 
 version of Cold Fusion and replaced the serial number into my own 
 license.properties file.  Not sure where to go from here though.  I'm 
 sure look at the server settings makes perfect sense to all the 
 ColdFusion developers out there, but I don't really know what that 
 means.  By the way, the serial number I extracted is 
 CED700-53365-17253-87902.  If it would be really fast for you pop this 
 serial number into one of your ColdFusion installations and see what 
 information you can gather, I would dearly appreciate it.  I could 
 probably even arrange for some compensation for your efforts.  Let me 
 know if you'd to give it a try.  Thanks!
 
 
 
  Hi Brad,
  
  Thanks for that (Thanks to Mark as well).  I have looked through the 
 
  server log but see no reference to either Enterprise or Standard.  
 
  Do you think the absence of the line Enterprise Edition enabled 
  means that non-Enterprise edition was installed, or could it be 
  something else?
  
  Here's an excerpt from my log:
  
  Information,main,05/14/07,19:46:55,,
 D:\CFusionMX7\logs\server.
  log initialized
  
  Information,main,05/14/07,19:46:55,,Starting logging...
  
  Information,main,05/14/07,19:46:55,,Starting crypto...
  
  Information,main,05/14/07,19:46:56,,Starting license...
  
  Information,main,05/14/07,19:46:56,,Starting License server ...
 
  
  
  Information,main,05/14/07,19:46:58,,Starting scheduler...
  
  Information,main,05/14/07,19:46:58,,Starting WatchService...
 
  
  
  Information,main,05/14/07,19:46:58,,Starting debugging...
  
  Information,main,05/14/07,19:46:58,,Starting sql...
  
  Information,main,05/14/07,19:46:58,,Starting mail...
  
  Information,main,05/14/07,19:46:58,,CORBA Configuration not 
 
  enabled
  
  Information,main,05/14/07,19:46:58,,Starting cron...
  
  Information,main,05/14/07,19:46:58,,Starting registry...
  
  Information,main,05/14/07,19:46:58,,Starting client...
  
  Information,main,05/14/07,19:46:58,,Starting xmlrpc...
  
  Information,main,05/14/07,19:46:58,,Starting graphing...
  
  Information,main,05/14/07,19:46:58,,Starting verity...
  
  Information,main,05/14/07,19:46:58,,Starting archive...
  
  Information,main,05/14/07,19:46:58,,Starting document...
  
  Information,main,05/14/07,19:46:59,,Starting eventgateway...
 
  
  
  Information,main,05/14/07,19:46:59,,Starting FlexAssembler...
 
  
  
  Information,main,05/14/07,19:46:59,,ColdFusion started
  
  Information,main,05/14/07,19:50:07,,Starting logging...
  
  Information,main,05/14/07,19:50:07,,Starting crypto...
  
  Information,main,05/14/07,19:50:07,,Starting license...
  
  Information,main,05/14/07,19:50:07,,Starting License server ...
 
  
  
  Information,main,05/14/07,19:50:08,,Starting scheduler...
  
  Information,main,05/14/07,19:50:08,,Starting WatchService...
 
  
  
  
  
  Better yet-- if you have access to the server.log file, crack it 
  open
  and look at its last restart:
  
  Information,main,09/04/09,15:24:12,,Starting logging...
  Information,main,09/04/09,15:24:12,,Starting license...
  Information,main,09/04/09,15:24:14,,Enterprise Edition 
  enabled
  
  It should tell you what version was enabled after the starting 
  license
  part.
  
  ~Brad
  
  Robert,
  
  Find the serial number (in license.properties) and go to an 
 existing 
  CF
  installation - even one on your dev box - and update the serial 
  number.
  Then
  look at the server settings.
  
  -Mark 
 
 


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326707
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Re: Cold Fusion Enterprise or Standard Installed?

2009-09-28 Thread Ian Skinner

Log into he CF admin (i.e. http://127.0.0.1/cfide/administrator/. On the
left hand side under server settings there is a link to settings
summary. Click on it and at the top you will see something like the
following:

Server Product  ColdFusion MX  
Version  7,0,2,142559
Edition  Standard
Serial Number  x-xx  
Operating System  Windows 2003
OS Version  5.2 



The edition value is the one you are looking for.

-Mark


I do wonder how the CF8 trial he most likely downloaded and installed is going 
to digest a CF 7 license key forced into it's license.property file? 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326708
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Cold Fusion Enterprise or Standard Installed?

2009-09-28 Thread Robert Kelso

Although I have no Cold Fusion experience, I WAS smart enough to download a 
trial version of CF7, not CF8.

 Log into he CF admin (i.e. http://127.0.0.1/cfide/administrator/. On 
 the
 left hand side under server settings there is a link to settings
 summary. Click on it and at the top you will see something like the
 following:
 
 Server Product  ColdFusion MX  
 Version  7,0,2,142559
 Edition  Standard
 Serial Number  x-xx  
 Operating System  Windows 2003
 OS Version  5.2 
 
 
 
 The edition value is the one you are looking for.
 
 -Mark
 
 
 I do wonder how the CF8 trial he most likely downloaded and installed 
 is going to digest a CF 7 license key forced into it's license.
 property file? 


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326709
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Cold Fusion Enterprise or Standard Installed?

2009-09-28 Thread Mark Kruger

Er Uh Hmmm Good question. 


Mark A. Kruger, CFG, MCSE
(402) 408-3733 ext 105
www.cfwebtools.com
www.coldfusionmuse.com
www.necfug.com

-Original Message-
From: Ian Skinner [mailto:h...@ilsweb.com] 
Sent: Monday, September 28, 2009 3:41 PM
To: cf-talk
Subject: Re: Cold Fusion Enterprise or Standard Installed?


Log into he CF admin (i.e. http://127.0.0.1/cfide/administrator/. On 
the left hand side under server settings there is a link to settings 
summary. Click on it and at the top you will see something like the
following:

Server Product  ColdFusion MX  
Version  7,0,2,142559
Edition  Standard
Serial Number  x-xx  
Operating System  Windows 2003
OS Version  5.2 



The edition value is the one you are looking for.

-Mark


I do wonder how the CF8 trial he most likely downloaded and installed is
going to digest a CF 7 license key forced into it's license.property file? 



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326710
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Cold Fusion Enterprise or Standard Installed?

2009-09-28 Thread Ian Skinner

Robert Kelso wrote:
 Although I have no Cold Fusion experience, I WAS smart enough to download a 
 trial version of CF7, not CF8.

Then you are pretty good indead, because I find Adobe does not make that 
a very easy option.



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326711
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


SOT aligning multiple lists

2009-09-28 Thread Ian Skinner

I have 6 alphabetical lists, CFML structure key lists but I don't think 
that matters.

These 6 lists have many common keys with each having a few differences.  
I want to display a table with each list in its own column.  I would 
like it to sort such that common keys align together in the same row.  
But if no common key then skip that row for that list.  Maybe a diagram 
would clarify this.

ListA ListB ListC
1 1 1
2   2
  3 3
  4
5 5

The trouble is there is no master list to drive this from.  I just can 
not get my sleep deprived, aging mind to conceive of a way to create 
this display from six arbitrary lists.


TIA
Ian

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326712
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: SOT aligning multiple lists

2009-09-28 Thread Barney Boisvert

One solution would be to create a master list first, and then loop
over it, detecting which lists contain the value and indicating as
such.  Another would be to iterate over all three lists concurrently,
and at each iteration check and see which list (or lists) contains the
lowest unprocessed value, use that for the current row, and then mark
all instances of that value as processed.

The former is probably simpler to implement, but requires two passes,
an extra parallel data structure, and a whole bunch of
exists-in-collection checks.  As such, it's probably somewhat less
performant, but you'd have to do some tests to confirm that, as the
difference is probably trivial with small list sizes and counts.

cheers,
barneyb

On Mon, Sep 28, 2009 at 12:30 PM, Ian Skinner h...@ilsweb.com wrote:

 I have 6 alphabetical lists, CFML structure key lists but I don't think
 that matters.

 These 6 lists have many common keys with each having a few differences.
 I want to display a table with each list in its own column.  I would
 like it to sort such that common keys align together in the same row.
 But if no common key then skip that row for that list.  Maybe a diagram
 would clarify this.

 ListA ListB ListC
 1     1     1
 2           2
      3     3
      4
 5     5

 The trouble is there is no master list to drive this from.  I just can
 not get my sleep deprived, aging mind to conceive of a way to create
 this display from six arbitrary lists.


 TIA
 Ian



-- 
Barney Boisvert
bboisv...@gmail.com
h

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326713
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Scheduled Tasks

2009-09-28 Thread John M Bliss

This is the second time I've seen this: Adobe CF Standard 8,0,1,195765 just
declining/forgetting to run some (not all) scheduled tasks.  No errors.
Just not running.  Last time, I installed the latest hot fix(es), rebooted
the server, and everything has been fine for 1-2 months.  This time, there
are no new hot fixes so I suppose I'll just reboot the server and hope?

Anyone else seen this?

-- 
John Bliss
IT Professional
@jbliss (t) / http://www.linkedin.com/in/jbliss


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326714
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: SOT aligning multiple lists

2009-09-28 Thread Ian Skinner

Well I came up with one way.

|!--- loop over and create master list of unique values by creating a temp 
structure ---
cfset masterList = structNew()
cfloop collection=#positions# item=type
cfloop list=#structKeyList(positions[type])# index=item
  cfset masterList[item] = 
  /cfloop
/cfloop

!--- extract master list ---
cfset masterList = listSort(structKeyList(masterList),textNoCase)

cfoutput
table border=1
tr
  cfloop list=#listSort(structKeyList(positions),'textNoCase')# index=type
  th#type#/th
  /cfloop
  /tr
!--- loop over master list to display table of all elements 
cfloop list=#masterList# index=key
tr
  !--- loop over each of the contributint lists ---
  cfloop collection=#positions# item=type
  !--- if the current list has the current item, display item ---
  tdcfif structKeyExists(positions[type],key)#key#/cfif/td
  /cfloop
  /tr
/cfloop
/table
/cfoutput
|



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326715
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Cold Fusion Enterprise or Standard Installed?

2009-09-28 Thread Dave Watts

 I'm doing a computer forensic investigation on a bad hard drive with Cold 
 Fusion MX7
 installed.  I'm trying to find out if the installed version is Enterprise or 
 Standard.  Is
 there a way I can determine in the version is Enterprise or Standard just by 
 looking at
 the files on the hard drive.  Please note that I'm viewing this drive as an 
 external drive,
 so I cannot actually run the Cold Fusion, I can only look at the files and 
 their content.
 Any help would be appreciated.  Thanks!

While you've already gotten the answer to your immediate question, for
future reference, it's pretty easy to copy CF from the working copy of
your preserved forensic environment and run it in a separate
environment without actually installing it. This is true for most J2EE
application servers I've seen.

Simply copy the entire CF directory to another drive, then find the
batch file or executable used to start it as an application. If you're
using a standalone version of CF without a full copy of JRun, the file
in question is cfstart.bat. If you're using a version with jrun, you'd
run jrun.exe with the -start switch and the name of the specific EAR
you were trying to start.

If CF wasn't previously configured to provide its own web server,
you'll need to edit the appropriate configuration file as described
here:

http://www.adobe.com/support/coldfusion/adv_development/config_builtin_webserver/

CF, being Java under the covers, is quite portable.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more informa

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326716
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Scheduled Tasks

2009-09-28 Thread Ian Skinner

John M Bliss wrote:
 This is the second time I've seen this: Adobe CF Standard 8,0,1,195765 just
 declining/forgetting to run some (not all) scheduled tasks.  No errors.
 Just not running.  Last time, I installed the latest hot fix(es), rebooted
 the server, and everything has been fine for 1-2 months.  This time, there
 are no new hot fixes so I suppose I'll just reboot the server and hope?

 Anyone else seen this?

   

Do you have the scheduled task configured to log the results it gets 
when it makes the HTTP request?

I find these can be very helpful when the request generates unexpected 
results such as a 401 access denied error that to a programmer is a 
failed task run, but to the ColdFusion server is a success.  It made an 
HTTP request it got an HTTP response, it is happy.


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326717
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Scheduled Tasks

2009-09-28 Thread John M Bliss

Right...but the URL's in question never produce 401 or anything like that
when I call them manually...

On Mon, Sep 28, 2009 at 4:51 PM, Ian Skinner h...@ilsweb.com wrote:


 Do you have the scheduled task configured to log the results it gets
 when it makes the HTTP request?

 I find these can be very helpful when the request generates unexpected
 results such as a 401 access denied error that to a programmer is a
 failed task run, but to the ColdFusion server is a success.  It made an
 HTTP request it got an HTTP response, it is happy.



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326718
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: AjaxCFC Debugging

2009-09-28 Thread Andrew McDuff

Hi Scott,

Thks for the tips. I'm already using Firebug but didn't know about ColdFire. 
I'm going to install it on my local machine so if I can see CF errors within my 
CFC's (using AjaxCFC), it'll definitely come in handy. However, I don't think I 
can get hosting company (CrystalTech in my case) to configure their CF servers 
with Coldfire. In Firebug, I can see details of the wddx packet and the final 
result but what I really want to see is what the CFC is doing (variable states, 
query results, code stepping, etc..) before the result comes back (in my case I 
get either the Error executing Database Query result or the dreaded Invalid 
reply from server). With experience, I found that if you have a bug in your 
CFC, then the Invalid reply from Server message comes back. So then you have 
to review your code carefully...it's this kind of thing I wanted to debug and 
hopeflly, ColdFire will help with my local development.

Thks again, Andrew




Andrew, 

If you're not using Firefox w/the Firebug plugin, get it, the Net function
alone can help tremendously in tracking down CF errors in Ajax calls. Ray
Camden has also written a plugin for Firefox called ColdFire which brings
CF errors into the Firebug interface.



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326719
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: AjaxCFC Debugging

2009-09-28 Thread Rick Faircloth

Coldfire sounds interesting, but the lastest thing I see online about it
is from early 2008.  Is it up-to-date and working well?


-Original Message-
From: Andrew McDuff [mailto:andy.mcd...@gmail.com] 
Sent: Monday, September 28, 2009 7:00 PM
To: cf-talk
Subject: Re: AjaxCFC Debugging


Hi Scott,

Thks for the tips. I'm already using Firebug but didn't know about ColdFire.
I'm going to install it on my local machine so if I can see CF errors within
my CFC's (using AjaxCFC), it'll definitely come in handy. However, I don't
think I can get hosting company (CrystalTech in my case) to configure their
CF servers with Coldfire. In Firebug, I can see details of the wddx packet
and the final result but what I really want to see is what the CFC is doing
(variable states, query results, code stepping, etc..) before the result
comes back (in my case I get either the Error executing Database Query
result or the dreaded Invalid reply from server). With experience, I found
that if you have a bug in your CFC, then the Invalid reply from Server
message comes back. So then you have to review your code carefully...it's
this kind of thing I wanted to debug and hopeflly, ColdFire will help with
my local development.

Thks again, Andrew




Andrew, 

If you're not using Firefox w/the Firebug plugin, get it, the Net
function
alone can help tremendously in tracking down CF errors in Ajax calls. Ray
Camden has also written a plugin for Firefox called ColdFire which brings
CF errors into the Firebug interface.





~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326720
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Scheduled Tasks

2009-09-28 Thread William Seiter

sounds like a great reason to follow his advice of creating a log file for the 
http responses.  If its not recreatable, yet you know it happens.


--
William E. Seiter


Sep 28, 2009 03:53:19 PM, cf-talk@houseoffusion.com wrote:

===


Right...but the URL's in question never produce 401 or anything like that
when I call them manually...

On Mon, Sep 28, 2009 at 4:51 PM, Ian Skinner  wrote:


 Do you have the scheduled task configured to log the results it gets
 when it makes the HTTP request?

 I find these can be very helpful when the request generates unexpected
 results such as a 401 access denied error that to a programmer is a
 failed task run, but to the ColdFusion server is a success.  It made an
 HTTP request it got an HTTP response, it is happy.


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326721
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: AjaxCFC Debugging

2009-09-28 Thread Andrew McDuff

Rick,

Yes, looks like it: latest stable version released in June 2009. Check it out 
at: http://coldfire.riaforge.org/

Just installed Coldfire and it should work just fine on 'standard' CF 
implementations (i.e. using CFMs and CFCs) but it won't give you debug 
functionality on something like AjaxCFC. Just reading Coldfire documentation  
it looks like you need to go with the ColdSpring framework  
(www.coldspringframework.org). So more reading  just trying things out is in 
order (at least for me!)... Andrew



Coldfire sounds interesting, but the lastest thing I see online about it
is from early 2008.  Is it up-to-date and working well?



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326722
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


How to completely stop the RDS server?

2009-09-28 Thread Claude Schneegans

Hi,

I have a CF 5 server, but I never use Remote Development, so I don't 
need the RDS service.
The service is disabled in the Windows services.
However I get this line every 2 seconds in the executive.log:
Error,1716,09/28/09,16:21:15,,Unexpected Windows NT error 
number 1058 occurred while attempting to start the RDS service.

Apparently, the executive server is still trying to start the service.
I do not see any tool to manage the RDS server in the CF Administrator.
Can some one tell me where to look?

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326723
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: How to completely stop the RDS server?

2009-09-28 Thread Dave Watts

The RDS service is completely stopped. I don't know of a way to keep
the Executive service from generating these errors other than stopping
the Executive service as well. I recommend you simply disregard these
errors as they are harmless.

Dave Watts, CTO, Fig Leaf Software

On 2009-09-28, Claude Schneegans schneeg...@internetique.com wrote:

 Hi,

 I have a CF 5 server, but I never use Remote Development, so I don't
 need the RDS service.
 The service is disabled in the Windows services.
 However I get this line every 2 seconds in the executive.log:
 Error,1716,09/28/09,16:21:15,,Unexpected Windows NT error
 number 1058 occurred while attempting to start the RDS service.

 Apparently, the executive server is still trying to start the service.
 I do not see any tool to manage the RDS server in the CF Administrator.
 Can some one tell me where to look?

 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326724
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: How to completely stop the RDS server?

2009-09-28 Thread Claude Schneegans

 ... other than stopping the Executive service as well.

Which of course I can't do, or all scheduled tasks won't run.

 I recommend you simply disregard these errors as they are harmless.

No, they are harmless, except for building a hudge file for nothing.
I have to remember to delete it from time to time.

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326725
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: AjaxCFC Debugging

2009-09-28 Thread Rick Faircloth

I'll have to check it out.  I do all my ajax with jQuery.
Hopefully it'll work...

-Original Message-
From: Andrew McDuff [mailto:andy.mcd...@gmail.com] 
Sent: Monday, September 28, 2009 8:22 PM
To: cf-talk
Subject: Re: AjaxCFC Debugging


Rick,

Yes, looks like it: latest stable version released in June 2009. Check it
out at: http://coldfire.riaforge.org/

Just installed Coldfire and it should work just fine on 'standard' CF
implementations (i.e. using CFMs and CFCs) but it won't give you debug
functionality on something like AjaxCFC. Just reading Coldfire documentation
 it looks like you need to go with the ColdSpring framework
(www.coldspringframework.org). So more reading  just trying things out is
in order (at least for me!)... Andrew



Coldfire sounds interesting, but the lastest thing I see online about it
is from early 2008.  Is it up-to-date and working well?





~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326726
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


input type of File in a cflayout tab

2009-09-28 Thread Kevin Huff

I have this form, in a cflayout tab that I submit to a different page. The form 
has a input type file field in it. This works fine outside of the tab but 
within the tab the type file field always returns none. What is going on here? 
Any help would be great. 



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326727
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: input type of File in a cflayout tab

2009-09-28 Thread Azadi Saryev

is your form a regular form tag or cfform?

a cfform inside a cf ajax container (which cflayoutarea is) will
submit to that container (and not the main page) using an ajax post
request, which does not support uploading files.

Azadi Saryev
Sabai-dee.com
http://www.sabai-dee.com/


On 29/09/2009 09:38, Kevin Huff wrote:
 I have this form, in a cflayout tab that I submit to a different page. The 
 form has a input type file field in it. This works fine outside of the tab 
 but within the tab the type file field always returns none. What is going on 
 here? Any help would be great. 



 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326728
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4