Re: cfzip and Native Windows Zip Support

2011-04-12 Thread Jochem van Dieten

IIRC the Windows native compressed file facility is not Unicode aware and
has a 256 character path lenght limit.

Jochem


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343667
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


GeoTrust SSL importing cert to server store doesn't help

2011-04-12 Thread Duncan

Hi Everyone,

Securepay.com.au issued a new SSL certificate on their test environment
7/4/2011 and it has had an effect on our code when running in test mode. I
have isolated it to be related to the I/O Exception: peer not authenticated
issue as detailed by Rob Gonda and Steven Erat
- http://www.talkingtree.com/blog/index.cfm/2004/7/1/keytool
 -
http://coldfusion-archive.robgonda.com/blog/index.cfm/2007/10/29/ErrorDetail-IO-Exception-peer-not-authenticated/

However, I have followed these posts and imported the
test.securepay.com.aucertificate and still ColdFusion 8 (Enterprise)
doesn't like the URL. My Key
store implies I have GeoTrust items in it, and it worked before the SSL
change, so I am now a bit lost.

I have put together a test script below, it is located at
http://www.red5.com.au/gatewaytest.cfm so you can see the behaviour. I put
in the Eway URL too, just as a sanity check.

I would really appreciate some one running this on their own CF8 environment
to see if the issue exists there, and if so, does importing the certificate
resolve the issue for you?

Could this be some new type of SSL certificate and I actually need the root
CA cert? If so, how do I go about finding this?

Thanks!

[code]
cfsavecontent variable=XmlRequest
?xml version=1.0 encoding=UTF-8 ?
SecurePayMessage
MessageInfo
messageID/messageID
messageTimestamp#DateFormat(
now(), mmdd)##TimeFormat(now(), HHmmssL000+600)#/messageTimestamp
timeoutValue60/timeoutValue
apiVersionxml-4.2/apiVersion
/MessageInfo
/SecurePayMessage
/cfsavecontent

cfhttp method=post url=https://www.securepay.com.au/xmlapi/payment;
timeout=80 result=XmlResponse
cfhttpparam type=xml value=#XmlRequest#/
/cfhttp

cfdump var=#XmlResponse# label=
https://www.securepay.com.au/xmlapi/payment;

cfhttp method=post url=https://test.securepay.com.au/xmlapi/payment;
timeout=80 result=XmlResponse
cfhttpparam type=xml value=#XmlRequest#/
/cfhttp

cfdump var=#XmlResponse# label=
https://test.securepay.com.au/xmlapi/payment;

cfhttp method=post url=https://www.eway.com.au/gateway/xmlpayment.asp;
timeout=80 result=XmlResponse
cfhttpparam type=xml value=#XmlRequest#/
/cfhttp

cfdump var=#XmlResponse# label=
https://www.eway.com.au/gateway/xmlpayment.asp;
[/code]


-- 
Duncan I Loxton
duncan.lox...@gmail.com


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343668
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: GeoTrust SSL importing cert to server store doesn't help

2011-04-12 Thread James Holmes

Yes. Vist the URL for the test site in your browser and view the cert
details. Go to the certification path and you'll see it's a chained
cert with two CAs in the path. You need to export both of them from
your browser and then bring both into the CA keystore with keytool.

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/



On 12 April 2011 15:55, Duncan duncan.lox...@gmail.com wrote:


 Could this be some new type of SSL certificate and I actually need the root
 CA cert? If so, how do I go about finding this?

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343669
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: GeoTrust SSL importing cert to server store doesn't help

2011-04-12 Thread Duncan

Hi James - Thanks for the quick response!

Yes.  Is that a yes because its a new fancy certificate, or I need all the
certs?

When I look at the hierarchy, there are 3 each with different serials.

Do I need just the two geotrust ones, or the securepay one too?



On Tue, Apr 12, 2011 at 6:01 PM, James Holmes james.hol...@gmail.comwrote:


 Yes. Vist the URL for the test site in your browser and view the cert
 details. Go to the certification path and you'll see it's a chained
 cert with two CAs in the path. You need to export both of them from
 your browser and then bring both into the CA keystore with keytool.

 --
 WSS4CF - WS-Security framework for CF
 http://wss4cf.riaforge.org/



 On 12 April 2011 15:55, Duncan duncan.lox...@gmail.com wrote:

 
  Could this be some new type of SSL certificate and I actually need the
 root
  CA cert? If so, how do I go about finding this?

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343670
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: GeoTrust SSL importing cert to server store doesn't help

2011-04-12 Thread James Holmes

Just the two CAs from Geotrust will be fine. The intermediate cert was
issued in 2010, so it's very likely that it's not in your CA store.

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/



On 12 April 2011 16:08, Duncan duncan.lox...@gmail.com wrote:

 Hi James - Thanks for the quick response!

 Yes.  Is that a yes because its a new fancy certificate, or I need all the
 certs?

 When I look at the hierarchy, there are 3 each with different serials.

 Do I need just the two geotrust ones, or the securepay one too?



 On Tue, Apr 12, 2011 at 6:01 PM, James Holmes james.hol...@gmail.comwrote:


 Yes. Vist the URL for the test site in your browser and view the cert
 details. Go to the certification path and you'll see it's a chained
 cert with two CAs in the path. You need to export both of them from
 your browser and then bring both into the CA keystore with keytool.

 --
 WSS4CF - WS-Security framework for CF
 http://wss4cf.riaforge.org/



 On 12 April 2011 15:55, Duncan duncan.lox...@gmail.com wrote:

 
  Could this be some new type of SSL certificate and I actually need the
 root
  CA cert? If so, how do I go about finding this?



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343671
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: cfselect selected bug?

2011-04-12 Thread Tim Do

Thanks Azadi!  

-Original Message-
From: Azadi Saryev [mailto:azadi.sar...@gmail.com] 
Sent: Monday, April 11, 2011 5:49 PM
To: cf-talk
Subject: Re: cfselect selected bug?


that's a known issue with cf's json implementation.
what you can do, is add a leading space to all your ids so cf stops 
stripping zeros . you will then need to trim that space on the back-end 
when user selections are submitted.

Azadi

On 12/04/2011 06:38 , Tim Do wrote:
 I have two dropdowns that I've made related using cfselect and bind.  The 
 problem I'm having is the default for the second drop down.  It seems to work 
 fine when the value of the second dropdown is a number that doesn't start 
 with a zero, but I have IDs that start w/ 3-4 zeros.  Somehow the leading 
 zeros are getting stripped out during comparison?  Anybody else run into this 
 issue?

 Thanks,
 Tim




 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343672
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cfzip and Native Windows Zip Support

2011-04-12 Thread Mallory Woods

Just reporting back.

If you had character limit, you're a big winner. I found the problem and
fixed it. Thanks for all the help!

On Tue, Apr 12, 2011 at 2:20 AM, Jochem van Dieten joch...@gmail.comwrote:


 IIRC the Windows native compressed file facility is not Unicode aware and
 has a 256 character path lenght limit.

 Jochem


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343673
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cfzip and Native Windows Zip Support

2011-04-12 Thread Leigh

 has a 256 character path lenght limit.

Ah, I seem to recall the unicode issue but not the path limit. Good tip.

-Leigh


  

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343674
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Uploading Largish Files

2011-04-12 Thread Jenny Gavin-Wear

Hi all,

I'm trying to upload video files, around 25mb max.

I can't see that it's a problem as they fall well short of the 30mb max set
by IIS 7 and the 100mb max set in CF admin.

The site I'm uploading them to is on my local network (100mb), so there
shouldn't be any timeout issues, but I did add

cfsetting enableCFoutputOnly = no  requestTimeOut = 1 

just in case.

Would be grateful for any ideas as to why it's a problem, please?

Jenny
No virus found in this outgoing message.
Checked by AVG - www.avg.com
Version: 9.0.894 / Virus Database: 271.1.1/3567 - Release Date: 04/11/11
20:25:00



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343675
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Uploading Largish Files

2011-04-12 Thread Robert Harrison

We upload gig+ files to our CF based extranet all the time with no problem.  

What server are you running? 


Robert B. Harrison
Director of Interactive Services
Austin  Williams
125 Kennedy Drive, Suite 100 
Hauppauge NY 11788
P : 631.231.6600 Ext. 119 
F : 631.434.7022
http://www.austin-williams.com 

Great advertising can't be either/or.  It must be .

Plug in to our blog: AW Unplugged
http://www.austin-williams.com/unplugged

-Original Message-
From: Jenny Gavin-Wear [mailto:jenn...@fasttrackonline.co.uk] 
Sent: Tuesday, April 12, 2011 12:13 PM
To: cf-talk
Subject: Uploading Largish Files


Hi all,

I'm trying to upload video files, around 25mb max.

I can't see that it's a problem as they fall well short of the 30mb max set by 
IIS 7 and the 100mb max set in CF admin.

The site I'm uploading them to is on my local network (100mb), so there 
shouldn't be any timeout issues, but I did add

cfsetting enableCFoutputOnly = no  requestTimeOut = 1 

just in case.

Would be grateful for any ideas as to why it's a problem, please?

Jenny
No virus found in this outgoing message.
Checked by AVG - www.avg.com
Version: 9.0.894 / Virus Database: 271.1.1/3567 - Release Date: 04/11/11
20:25:00





~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343676
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Custom tags in CF 9

2011-04-12 Thread Donnie Carvajal

Hi,

I recently installed an enterprise version of CF9 and the default directory is 
c:\jrun4 and there is no CustomTags directory.  I added my customtags directory 
from my MX7 server and the custom tags calls are returning errors that they 
can't be found.  Does anyone know where the CustomTags default directory is?  
BTW, this is a library of tags that all of the apps on the server will use, 
so placing them in the root of the web app is not an option.

Thanks,

Donnie 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343677
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Custom tags in CF 9

2011-04-12 Thread Eric Cobb

The default for multi-instance is: 
C:\JRun4\servers\cfusion\cfusion-ear\cfusion-war\WEB-INF\cfusion\CustomTags

If you've created additional instances, then you'll need to look in the 
appropriate directory under C:\JRun4\servers

Thanks,

Eric Cobb
http://www.cfgears.com
Help me make a difference this summerhttp://bit.ly/i8dJvQ


On 4/12/2011 2:04 PM, Donnie Carvajal wrote:
 Hi,

 I recently installed an enterprise version of CF9 and the default directory 
 is c:\jrun4 and there is no CustomTags directory.  I added my customtags 
 directory from my MX7 server and the custom tags calls are returning errors 
 that they can't be found.  Does anyone know where the CustomTags default 
 directory is?  BTW, this is a library of tags that all of the apps on the 
 server will use, so placing them in the root of the web app is not an option.

 Thanks,

 Donnie

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343678
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Custom tags in CF 9

2011-04-12 Thread Russ Michaels

You have chosen  the multi-server installation instead of the standalone
version, thus why the folders and paths are totally different.
The default instance is located at c:\jrun4\servers\cfusion

However if you have no need of the multi server features and did this by
mistake then I would suggest you un-install and install the standalone
version and just avoid all the issues.

If you intend to run multiple versions of CF for compatibility testing, then
multi-server is probably the easiest way to do this as you can run previous
version as a new instanced deployed as war files.

On Tue, Apr 12, 2011 at 8:04 PM, Donnie Carvajal 
donnie.carva...@transformyx.com wrote:


 Hi,

 I recently installed an enterprise version of CF9 and the default directory
 is c:\jrun4 and there is no CustomTags directory.  I added my customtags
 directory from my MX7 server and the custom tags calls are returning errors
 that they can't be found.  Does anyone know where the CustomTags default
 directory is?  BTW, this is a library of tags that all of the apps on the
 server will use, so placing them in the root of the web app is not an
 option.

 Thanks,

 Donnie

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343679
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Custom tags in CF 9

2011-04-12 Thread Ian Skinner

On 4/12/2011 12:04 PM, Donnie Carvajal wrote:
 Hi,

 I recently installed an enterprise version of CF9 and the default directory 
 is c:\jrun4 and there is no CustomTags directory.  I added my customtags 
 directory from my MX7 server and the custom tags calls are returning errors 
 that they can't be found.  Does anyone know where the CustomTags default 
 directory is?  BTW, this is a library of tags that all of the apps on the 
 server will use, so placing them in the root of the web app is not an option.

 Thanks,

 Donnie

If you have a c:\jrun4 folder, that means you installed the multi-server 
or J2EE version that puts ColdFusion as a Java Server under a JRun, 
rather then the other way around.

That means your Custom Tags path is going to be deep inside each of 
these servers.  For example for the default 'cfusion' server it is 
located here:

C:\JRun4\servers\cfusion\cfusion-ear\cfusion-war\WEB-INF\cfusion\CustomTags\

Obviously if you use the multi-server feature and create other 
ColdFusion server instances, there will be a corresponding path for each 
of them.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343680
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Custom tags in CF 9

2011-04-12 Thread Donnie Carvajal

Thanks for the feedback.

The intention is to set up a multi-server instance.  I did find the customtags 
and the cfx directories for this instance; however, the customtags are more of 
a library that we use across servers.  Is there a generic place that i can put 
these files so that all instances that I will install on this server will see 
them?  I would like to put the CFX tags and components in a common place as 
well.

Donnie 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343681
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Custom tags in CF 9

2011-04-12 Thread Russ Michaels

you can stick them anywhere (c:\custom tags) and then create a custom tags
directory in the CFADMIN for each instance pointing to that location.

On Tue, Apr 12, 2011 at 8:28 PM, Donnie Carvajal 
donnie.carva...@transformyx.com wrote:


 Thanks for the feedback.

 The intention is to set up a multi-server instance.  I did find the
 customtags and the cfx directories for this instance; however, the
 customtags are more of a library that we use across servers.  Is there a
 generic place that i can put these files so that all instances that I will
 install on this server will see them?  I would like to put the CFX tags and
 components in a common place as well.

 Donnie

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343682
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Custom tags in CF 9

2011-04-12 Thread Ian Skinner

On 4/12/2011 12:28 PM, Donnie Carvajal wrote:
 Thanks for the feedback.

 The intention is to set up a multi-server instance.  I did find the 
 customtags and the cfx directories for this instance; however, the customtags 
 are more of a library that we use across servers.  Is there a generic place 
 that i can put these files so that all instances that I will install on this 
 server will see them?  I would like to put the CFX tags and components in a 
 common place as well.

 Donnie

Not out of the box.  But you define as many custom tag locations as you 
like in the administrator.  So it would be easy enough to use your 
c:/jrun4/customtags/  and just define that in each and every instance 
that you would like to search that directory for tags.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343683
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Attribute validation error for tag cfcontent

2011-04-12 Thread Paulo Roberto

Hello, I have a system by which countless times intermittently, the following 
error occurs only with the browser refresh (F5), restores.
I wonder what can be wrong for this problem from occurring

Error:

Attribute validation error for tag cfcontent
coldfusion.runtime.Array is not a supported variable type. The variable is 
expected to contain binary data.

I use the CF8 on my systems and database SQL Server 2005 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343684
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Attribute validation error for tag cfcontent

2011-04-12 Thread Russ Michaels

I think we will need to see some code to help you with this.


On Tue, Apr 12, 2011 at 8:57 PM, Paulo Roberto so.messen...@hotmail.comwrote:


 Hello, I have a system by which countless times intermittently, the
 following error occurs only with the browser refresh (F5), restores.
 I wonder what can be wrong for this problem from occurring

 Error:

 Attribute validation error for tag cfcontent
 coldfusion.runtime.Array is not a supported variable type. The variable is
 expected to contain binary data.

 I use the CF8 on my systems and database SQL Server 2005

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343685
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Custom tags in CF 9

2011-04-12 Thread Raymond Camden

Don't forget that in CF8 you gained the ability to specify custom tag
folders in your Application.cfc file instead. I know you are looking
for the simplest solution, but this is an option as well.


On Tue, Apr 12, 2011 at 2:44 PM, Ian Skinner h...@ilsweb.com wrote:

 On 4/12/2011 12:28 PM, Donnie Carvajal wrote:
 Thanks for the feedback.

 The intention is to set up a multi-server instance.  I did find the 
 customtags and the cfx directories for this instance; however, the 
 customtags are more of a library that we use across servers.  Is there a 
 generic place that i can put these files so that all instances that I will 
 install on this server will see them?  I would like to put the CFX tags and 
 components in a common place as well.

 Donnie

 Not out of the box.  But you define as many custom tag locations as you
 like in the administrator.  So it would be easy enough to use your
 c:/jrun4/customtags/  and just define that in each and every instance
 that you would like to search that directory for tags.


-- 
===
Raymond Camden, ColdFusion Jedi Master

Email    : r...@camdenfamily.com
Blog      : www.coldfusionjedi.com
AOL IM : cfjedimaster

Keep up to date with Android news: http://www.andro

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343686
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Custom tags in CF 9

2011-04-12 Thread Ian Skinner

On 4/12/2011 1:21 PM, Raymond Camden wrote:
 Don't forget that in CF8 you gained the ability to specify custom tag
 folders in your Application.cfc file instead. I know you are looking
 for the simplest solution, but this is an option as well.

I do forget about that cool option all to often.



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343687
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Custom tags in CF 9

2011-04-12 Thread Andrew Scott

You need to drill into the jrun directory, there should be servers directory
which should contain the server with the name of the context you gave it. By
default this is cfusion, and then underneath that you will end up finding
the standard CF directory structure.

I think this is explained in the Installation documentation of ColdFusion.


Regards,
Andrew Scott
http://www.andyscott.id.au/


 -Original Message-
 From: Donnie Carvajal [mailto:donnie.carva...@transformyx.com]
 Sent: Wednesday, 13 April 2011 5:05 AM
 To: cf-talk
 Subject: Custom tags in CF 9
 
 
 Hi,
 
 I recently installed an enterprise version of CF9 and the default
directory is
 c:\jrun4 and there is no CustomTags directory.  I added my customtags
 directory from my MX7 server and the custom tags calls are returning
errors
 that they can't be found.  Does anyone know where the CustomTags default
 directory is?  BTW, this is a library of tags that all of the apps on
the server
 will use, so placing them in the root of the web app is not an option.
 
 Thanks,
 
 Donnie


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343688
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Uploading Largish Files

2011-04-12 Thread Jenny Gavin-Wear

Windows 2003 Server running IIS V6.0 and CF MX 7.



-Original Message-
From: Robert Harrison [mailto:rob...@austin-williams.com]
Sent: 12 April 2011 17:30
To: cf-talk
Subject: RE: Uploading Largish Files



We upload gig+ files to our CF based extranet all the time with no problem.

What server are you running?


Robert B. Harrison
Director of Interactive Services
Austin  Williams
125 Kennedy Drive, Suite 100
Hauppauge NY 11788
P : 631.231.6600 Ext. 119
F : 631.434.7022
http://www.austin-williams.com

Great advertising can't be either/or.  It must be .

Plug in to our blog: AW Unplugged
http://www.austin-williams.com/unplugged

-Original Message-
From: Jenny Gavin-Wear [mailto:jenn...@fasttrackonline.co.uk]
Sent: Tuesday, April 12, 2011 12:13 PM
To: cf-talk
Subject: Uploading Largish Files


Hi all,

I'm trying to upload video files, around 25mb max.

I can't see that it's a problem as they fall well short of the 30mb max set
by IIS 7 and the 100mb max set in CF admin.

The site I'm uploading them to is on my local network (100mb), so there
shouldn't be any timeout issues, but I did add

cfsetting enableCFoutputOnly = no  requestTimeOut = 1 

just in case.

Would be grateful for any ideas as to why it's a problem, please?

Jenny
No virus found in this outgoing message.
Checked by AVG - www.avg.com
Version: 9.0.894 / Virus Database: 271.1.1/3567 - Release Date: 04/11/11
20:25:00







~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343689
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Javascript not working inside of cflayoutarea

2011-04-12 Thread Steve Sequenzia

Thanks guys. Any idea how to make this jquery work in cflayout?

!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN 
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;
html xmlns=http://www.w3.org/1999/xhtml;
head
meta http-equiv=Content-Type content=text/html; charset=utf-8 /
titleMAMBA - Martial Arts Management  Business Automation/title
link href=style.css rel=stylesheet type=text/css /

  link 
href=http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css;
 rel=stylesheet type=text/css/
  script 
src=http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js;/script
  script 
src=http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js;/script
  
  script
  $(document).ready(function() {
$(#accordion).accordion();
  });
  /script
  
/head

body

cfajaximport tags=cflayout-accordion, cfdiv, cfpod, cfinput-autosuggest, 
cfwindow, cfform, cfgrid, cflayout-border, cftree, cfinput-datefield

cflayout type=border fittowindow=yes

cflayoutarea name=top position=top style=background:##414144; 
height:90px; source=top.cfm/cflayoutarea
cflayoutarea name=left position=left style=width:200px; 
splitter=false collapsible=false source=test.cfm/cflayoutarea
cflayoutarea name=main position=center style=background:##E8E8E8; 
height:100%; source=main.cfm/cflayoutarea

/cflayout


/body
/html


Test.cfm

div id=accordion
h3a href=#Section 1/a/h3
div
p
/p
/div
h3a href=#Section 2/a/h3
div
p

/p
/div
h3a href=#Section 3/a/h3
div
p

/p
ul
liList item one/li
liList item two/li
liList item three/li
/ul
/div

/div





Steve

cfajaximport scriptsrc=... is only for cf's built-in scripts - you 
do not use it to load anything else. and you only need to use it if you 
do not have access to default cf's scripts folder or if you have moved 
the default cf scripts to another folder.

to load jquery or any other js scripts, you just use your regular 
script tags in the head section of your page.

specifically for dealing with scripts in pages loaded into cf's ajax 
containers i found this approach working best:

- include your js library (jquery) in the main page (the one that has 
cflayout tags in you case)
- include any js code that needs to run after pages have been loaded 
into ajax containers as separate js functions in the main page's head 
section as well.
- in the pages loaded inside ajax containers add cfset 
ajaxonload('name-of-your-js-function-to-execute-here') as the last line 
before the closing /body tag: this will run the specified js function 
after the page has been loaded inside the container

Azadi

On 11/04/2011 22:31 , Steve Sequenzia wrote:
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343690
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Javascript not working inside of cflayoutarea

2011-04-12 Thread Andrew Scott

Put this

  script
  $(document).ready(function() {
$(#accordion).accordion();
  });
  /script

Inside your test.cfm and leave the rest where it is.


Regards,
Andrew Scott
http://www.andyscott.id.au/


 -Original Message-
 From: Steve Sequenzia [mailto:c...@thinksys.com]
 Sent: Wednesday, 13 April 2011 1:09 PM
 To: cf-talk
 Subject: Re: Javascript not working inside of cflayoutarea
 
 
 Thanks guys. Any idea how to make this jquery work in cflayout?
 
 !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;
 html xmlns=http://www.w3.org/1999/xhtml;
 head
 meta http-equiv=Content-Type content=text/html; charset=utf-8 /
 titleMAMBA - Martial Arts Management  Business Automation/title
 link href=style.css rel=stylesheet type=text/css /
 
   link
 href=http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jque
 ry-ui.css rel=stylesheet type=text/css/
   script

src=http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js;/scrip
 t
   script src=http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-
 ui.min.js/script
 
   script
   $(document).ready(function() {
 $(#accordion).accordion();
   });
   /script
 
 /head
 
 body
 
 cfajaximport tags=cflayout-accordion, cfdiv, cfpod, cfinput-autosuggest,
 cfwindow, cfform, cfgrid, cflayout-border, cftree, cfinput-datefield
 
 cflayout type=border fittowindow=yes
 
   cflayoutarea name=top position=top
 style=background:##414144; height:90px;
 source=top.cfm/cflayoutarea
   cflayoutarea name=left position=left style=width:200px;
 splitter=false collapsible=false source=test.cfm/cflayoutarea
 cflayoutarea name=main position=center
 style=background:##E8E8E8; height:100%;
 source=main.cfm/cflayoutarea
 
 /cflayout
 
 
 /body
 /html
 
 
 Test.cfm
 
 div id=accordion
   h3a href=#Section 1/a/h3
   div
   p
   /p
   /div
   h3a href=#Section 2/a/h3
   div
   p
 
   /p
   /div
   h3a href=#Section 3/a/h3
   div
   p
 
 /p
   ul
   liList item one/li
   liList item two/li
   liList item three/li
   /ul
   /div
 
 /div
 
 
 
 
 
 Steve
 
 cfajaximport scriptsrc=... is only for cf's built-in scripts - you
 do not use it to load anything else. and you only need to use it if you
 do not have access to default cf's scripts folder or if you have moved
 the default cf scripts to another folder.
 
 to load jquery or any other js scripts, you just use your regular
 script tags in the head section of your page.
 
 specifically for dealing with scripts in pages loaded into cf's ajax
 containers i found this approach working best:
 
 - include your js library (jquery) in the main page (the one that has
 cflayout tags in you case)
 - include any js code that needs to run after pages have been loaded
 into ajax containers as separate js functions in the main page's head
 section as well.
 - in the pages loaded inside ajax containers add cfset
 ajaxonload('name-of-your-js-function-to-execute-here') as the last
 line before the closing /body tag: this will run the specified js
 function after the page has been loaded inside the container
 
 Azadi
 
 On 11/04/2011 22:31 , Steve Sequenzia wrote:
 
 
 ~~
 ~~~|
 Order the Adobe Coldfusion Anthology now!
 http://www.amazon.com/Adobe-Coldfusion-
 Anthology/dp/1430272155/?tag=houseoffusion
 Archive: http://www.houseoffusion.com/groups/cf-
 talk/message.cfm/messageid:343690
 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
 Unsubscribe: http://www.houseoffusion.com/groups/cf-
 talk/unsubscribe.cfm


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343691
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Javascript not working inside of cflayoutarea

2011-04-12 Thread Azadi Saryev

1) in your main page change this:
   $(document).ready(function() {
 $(#accordion).accordion();
   });

to this:
   doAccordion = function() { $(#accordion).accordion(); });

2) make html code in your test.cfm standards-compliant (add doctype, 
html, head, body, etc tags) and then add this as the last line before 
the closing /body tag:

cfset ajaxonload('doAccordion')

Azadi

On 13/04/2011 11:09 , Steve Sequenzia wrote:
 Thanks guys. Any idea how to make this jquery work in cflayout?

 !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN 
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;
 html xmlns=http://www.w3.org/1999/xhtml;
 head
 meta http-equiv=Content-Type content=text/html; charset=utf-8 /
 titleMAMBA - Martial Arts Management  Business Automation/title
 link href=style.css rel=stylesheet type=text/css /

link 
 href=http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css;
  rel=stylesheet type=text/css/
script 
 src=http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js;/script
script 
 src=http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js;/script

script
$(document).ready(function() {
  $(#accordion).accordion();
});
/script

 /head

 body

 cfajaximport tags=cflayout-accordion, cfdiv, cfpod, cfinput-autosuggest, 
 cfwindow, cfform, cfgrid, cflayout-border, cftree, cfinput-datefield

 cflayout type=border fittowindow=yes
   
   cflayoutarea name=top position=top style=background:##414144; 
 height:90px; source=top.cfm/cflayoutarea
   cflayoutarea name=left position=left style=width:200px; 
 splitter=false collapsible=false source=test.cfm/cflayoutarea
  cflayoutarea name=main position=center style=background:##E8E8E8; 
 height:100%; source=main.cfm/cflayoutarea

 /cflayout


 /body
 /html


 Test.cfm

 div id=accordion
   h3a href=#Section 1/a/h3
   div
   p
   /p
   /div
   h3a href=#Section 2/a/h3
   div
   p
   
   /p
   /div
   h3a href=#Section 3/a/h3
   div
   p
   
  /p
   ul
   liList item one/li
   liList item two/li
   liList item three/li
   /ul
   /div

 /div





 Steve

 cfajaximport scriptsrc=...  is only for cf's built-in scripts - you
 do not use it to load anything else. and you only need to use it if you
 do not have access to default cf's scripts folder or if you have moved
 the default cf scripts to another folder.

 to load jquery or any other js scripts, you just use your regular
 script  tags in thehead  section of your page.

 specifically for dealing with scripts in pages loaded into cf's ajax
 containers i found this approach working best:

 - include your js library (jquery) in the main page (the one that has
 cflayout tags in you case)
 - include any js code that needs to run after pages have been loaded
 into ajax containers as separate js functions in the main page'shead
 section as well.
 - in the pages loaded inside ajax containers addcfset
 ajaxonload('name-of-your-js-function-to-execute-here')  as the last line
 before the closing/body  tag: this will run the specified js function
 after the page has been loaded inside the container

 Azadi

 On 11/04/2011 22:31 , Steve Sequenzia wrote:
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343692
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm