Re: Regex for High Ascii Chars

2012-04-17 Thread Azadi Saryev

http://cflib.org/udf/stripExtendedAscii

On Wed, Apr 18, 2012 at 01:16, Che Vilnonis  wrote:
>
> Hello all. I'm dealing with a API where some of the results are populated
> with certain Ascii characters in order to get higher sorting results. For
> example, some of the characters I'm finding are: &8635 or &9606 or &9658 or
> &9668 or &9734 or &9835
>
> Is there a regex that could remove all of these characters at once w/o
> having to maintain an ever growing list of them?
>
> TIA, Che
>
>
>
> 

~|
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:350772
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: real number returned with comma as decimal delimiter GOT IT!

2012-04-17 Thread Claude Schnéegans

Ok, I got it!

The query is produced by a UNION, ans in one of the sub SELECTs, the column was 
set to '0' instead of 0. This tiggered a converstion to text for the same 
column in the next SELECT, probably in the ODBC driver, and this conversion 
implied the use of a comma instead of a dot. For some unknown reason, it 
follows the rule for French because the vesion of Windows is French, but 
bypasses the settings in Windows.

~|
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:350771
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


cfindex varity collection issue

2012-04-17 Thread Keith McGee

I am purging the collections and then updating them. I am indexing two 
directories using the same code with the exception of the directories and 
categoriee tree, ect. I understand it should take longer   at the directory is 
5x larger, im thinking it should take 30 - 40 min. Not 2 hours.

First directory has 2,681 files in 353 folders and updates the collection in 
7min

collection1  2,568  24,474 Apr 17, 2012 11:17 AM  english  Yes  


Second directory has 12,793 files in 428 folders and updates the collection in 
1hour 56min

collection2  11,701  246,984 Apr 17, 2012 1:30 PM english Yes 


 




 

~|
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:350770
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: real number returned with comma as decimal delimiter

2012-04-17 Thread Claude Schnéegans

 >>Can you reply with the line of code throwing that error and perhaps a few
relevant lines above it?

It has nothing to do with the code, which by the way works perfectly on my 
production server under W 3000 in English.
The problem occurs in #numberFormat(paiementMontant, "_9.99")#
The error is that paiementMontant contains "-488,7" in the query when the value 
should be "-488.7".
The problem may be not even with CF, but someone somewhere is converting the 
dot into a comma.

~|
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:350769
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: real number returned with comma as decimal delimiter

2012-04-17 Thread John M Bliss

Can you reply with the line of code throwing that error and perhaps a few
relevant lines above it?

On Tue, Apr 17, 2012 at 1:45 PM, <> wrote:

>
> Hi,
> I have CF9 installed on W7 using an Access database.
> In a table I have a currency value of -488.7
> The windows is French, but I have set the delimiter for both the decimal
> values AND currency values to dot instead of comma.
> Though I get this error in CF:
> The value -488,7 cannot be converted to a number.
> CF is receiving the value with a comma instead of a dot.
> - If I browse the table under Access, the value is correctly displayed
> with a dot.
> - If I modify the column type to teTEXT instead of real or currency, the
> value is converted to text with a dot, and there is no error in CF.
> Obviously a conversion from dot to comma is made in some other layer, but
> where?
> I've checked in the ODBC connection and found nothing.
>
> Any idea?
>
>
> 

~|
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:350768
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


real number returned with comma as decimal delimiter

2012-04-17 Thread Claude Schnéegans

Hi,
I have CF9 installed on W7 using an Access database.
In a table I have a currency value of -488.7
The windows is French, but I have set the delimiter for both the decimal values 
AND currency values to dot instead of comma.
Though I get this error in CF:
The value -488,7 cannot be converted to a number.
CF is receiving the value with a comma instead of a dot.
- If I browse the table under Access, the value is correctly displayed with a 
dot.
- If I modify the column type to teTEXT instead of real or currency, the value 
is converted to text with a dot, and there is no error in CF.
Obviously a conversion from dot to comma is made in some other layer, but where?
I've checked in the ODBC connection and found nothing.

Any idea?


~|
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:350767
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re:

2012-04-17 Thread sslone

http://scripting.riaforge.org/

http://code.google.com/p/org-corfield-cfmx/

and

http://scripting.riaforge.org/wiki/index.cfm/UsingPHPInColdFusion

On Tue, 17 Apr 2012 13:38:19 -0400, Robert Harrison
 wrote:
> Does anyone know where you can download the custom tag  and
where
> you can find decent documentation on the PHP functions that are
available
> when using that tag?
> 
> Thanks,
> Robert
> 


~|
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:350766
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


cf-talk@houseoffusion.com

2012-04-17 Thread Robert Harrison

Does anyone know where you can download the custom tag  and where you 
can find decent documentation on the PHP functions that are available when 
using that tag?

Thanks,
Robert

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: A&W Unplugged
http://www.austin-williams.com/unplugged

~|
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:350765
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Regex for High Ascii Chars

2012-04-17 Thread Che Vilnonis

Hello all. I'm dealing with a API where some of the results are populated
with certain Ascii characters in order to get higher sorting results. For
example, some of the characters I'm finding are: &8635 or &9606 or &9658 or
&9668 or &9734 or &9835

Is there a regex that could remove all of these characters at once w/o
having to maintain an ever growing list of them?

TIA, Che



~|
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:350764
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Edition not changing from developer to standard...

2012-04-17 Thread Eric Roberts

Thanks!



On Tue, Apr 17, 2012 at 11:11 AM, Russ Michaels  wrote:

>
> the only thing you may need to do is put the websites application pool into
> 32bit mode, other than that it should work fine.
>
>
> On Tue, Apr 17, 2012 at 5:06 PM, Eric Roberts <
>  ow...@threeravensconsulting.com> wrote:
>
> >
> > I understand that...I just seem to remeber seeing something about
> needing a
> > 32bit instance of IIS to use the 32 bit CF.  is that still true or was
> that
> > corrected in 8.01.
> >
> >
> >
> > On Tue, Apr 17, 2012 at 10:50 AM, Russ Michaels 
> > wrote:
> >
> > >
> > > you can run 32bit CF on 64bit OS, however you may still have issues
> with
> > > things like MSACCESS if you still use that
> > >
> > > On Tue, Apr 17, 2012 at 4:39 PM, Eric Roberts <
> > >  ow...@threeravensconsulting.com> wrote:
> > >
> > > >
> > > > I see it now...thanks.  They didn't make it very clear.  A simple
> > > Standard
> > > > is 32 bit only would have been better ;-)  Thanks again for helping
> me
> > > > clarify. Now off to unistall the 64 bit vesion and reinstall the 32.
> >  One
> > > > other question...does this require the 32 bit version of IIS or will
> > the
> > > 64
> > > > bit version be ok.  I seem to remember seeing something about that
> > > before.
> > > >
> > > > Eric
> > > >
> > > > On Tue, Apr 17, 2012 at 8:09 AM, Andrew Scott <
> andr...@andyscott.id.au
> > > > >wrote:
> > > >
> > > > >
> > > > > Please visit this, it is not in your face, but if you notice the
> > > Windows
> > > > > 64bit is half circles. If you scroll back up it tells you that
> > > ColdFusion
> > > > > 32bit is supported on 64bit only.
> > > > >
> > > > > http://www.adobe.com/products/coldfusion/coldfusion8/systemreqs/
> > > > >
> > > > > --
> > > > > Regards,
> > > > > Andrew Scott
> > > > > WebSite: http://www.andyscott.id.au/
> > > > > Google+: http://plus.google.com/108193156965451149543
> > > > >
> > > > >
> > > > >
> > > > > On Tue, Apr 17, 2012 at 9:57 PM, Eric Roberts <
> > > > > ow...@threeravensconsulting.com> wrote:
> > > > >
> > > > > >
> > > > > > Are you sure about that?  I can't find anything that says that it
> > is
> > > > only
> > > > > > the enterprise that is 64...
> > > > > >
> > > > > >
> > > > > >
> > > > >
> > > > >
> > > > >
> > > >
> > > >
> > >
> > >
> >
> >
>
> 

~|
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:350763
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Edition not changing from developer to standard...

2012-04-17 Thread Russ Michaels

the only thing you may need to do is put the websites application pool into
32bit mode, other than that it should work fine.


On Tue, Apr 17, 2012 at 5:06 PM, Eric Roberts <
ow...@threeravensconsulting.com> wrote:

>
> I understand that...I just seem to remeber seeing something about needing a
> 32bit instance of IIS to use the 32 bit CF.  is that still true or was that
> corrected in 8.01.
>
>
>
> On Tue, Apr 17, 2012 at 10:50 AM, Russ Michaels 
> wrote:
>
> >
> > you can run 32bit CF on 64bit OS, however you may still have issues with
> > things like MSACCESS if you still use that
> >
> > On Tue, Apr 17, 2012 at 4:39 PM, Eric Roberts <
> >  ow...@threeravensconsulting.com> wrote:
> >
> > >
> > > I see it now...thanks.  They didn't make it very clear.  A simple
> > Standard
> > > is 32 bit only would have been better ;-)  Thanks again for helping me
> > > clarify. Now off to unistall the 64 bit vesion and reinstall the 32.
>  One
> > > other question...does this require the 32 bit version of IIS or will
> the
> > 64
> > > bit version be ok.  I seem to remember seeing something about that
> > before.
> > >
> > > Eric
> > >
> > > On Tue, Apr 17, 2012 at 8:09 AM, Andrew Scott  > > >wrote:
> > >
> > > >
> > > > Please visit this, it is not in your face, but if you notice the
> > Windows
> > > > 64bit is half circles. If you scroll back up it tells you that
> > ColdFusion
> > > > 32bit is supported on 64bit only.
> > > >
> > > > http://www.adobe.com/products/coldfusion/coldfusion8/systemreqs/
> > > >
> > > > --
> > > > Regards,
> > > > Andrew Scott
> > > > WebSite: http://www.andyscott.id.au/
> > > > Google+: http://plus.google.com/108193156965451149543
> > > >
> > > >
> > > >
> > > > On Tue, Apr 17, 2012 at 9:57 PM, Eric Roberts <
> > > > ow...@threeravensconsulting.com> wrote:
> > > >
> > > > >
> > > > > Are you sure about that?  I can't find anything that says that it
> is
> > > only
> > > > > the enterprise that is 64...
> > > > >
> > > > >
> > > > >
> > > >
> > > >
> > > >
> > >
> > >
> >
> >
>
> 

~|
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:350762
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Edition not changing from developer to standard...

2012-04-17 Thread Eric Roberts

I understand that...I just seem to remeber seeing something about needing a
32bit instance of IIS to use the 32 bit CF.  is that still true or was that
corrected in 8.01.



On Tue, Apr 17, 2012 at 10:50 AM, Russ Michaels  wrote:

>
> you can run 32bit CF on 64bit OS, however you may still have issues with
> things like MSACCESS if you still use that
>
> On Tue, Apr 17, 2012 at 4:39 PM, Eric Roberts <
>  ow...@threeravensconsulting.com> wrote:
>
> >
> > I see it now...thanks.  They didn't make it very clear.  A simple
> Standard
> > is 32 bit only would have been better ;-)  Thanks again for helping me
> > clarify. Now off to unistall the 64 bit vesion and reinstall the 32.  One
> > other question...does this require the 32 bit version of IIS or will the
> 64
> > bit version be ok.  I seem to remember seeing something about that
> before.
> >
> > Eric
> >
> > On Tue, Apr 17, 2012 at 8:09 AM, Andrew Scott  > >wrote:
> >
> > >
> > > Please visit this, it is not in your face, but if you notice the
> Windows
> > > 64bit is half circles. If you scroll back up it tells you that
> ColdFusion
> > > 32bit is supported on 64bit only.
> > >
> > > http://www.adobe.com/products/coldfusion/coldfusion8/systemreqs/
> > >
> > > --
> > > Regards,
> > > Andrew Scott
> > > WebSite: http://www.andyscott.id.au/
> > > Google+: http://plus.google.com/108193156965451149543
> > >
> > >
> > >
> > > On Tue, Apr 17, 2012 at 9:57 PM, Eric Roberts <
> > > ow...@threeravensconsulting.com> wrote:
> > >
> > > >
> > > > Are you sure about that?  I can't find anything that says that it is
> > only
> > > > the enterprise that is 64...
> > > >
> > > >
> > > >
> > >
> > >
> > >
> >
> >
>
> 

~|
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:350761
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Edition not changing from developer to standard...

2012-04-17 Thread Russ Michaels

you can run 32bit CF on 64bit OS, however you may still have issues with
things like MSACCESS if you still use that

On Tue, Apr 17, 2012 at 4:39 PM, Eric Roberts <
ow...@threeravensconsulting.com> wrote:

>
> I see it now...thanks.  They didn't make it very clear.  A simple Standard
> is 32 bit only would have been better ;-)  Thanks again for helping me
> clarify. Now off to unistall the 64 bit vesion and reinstall the 32.  One
> other question...does this require the 32 bit version of IIS or will the 64
> bit version be ok.  I seem to remember seeing something about that before.
>
> Eric
>
> On Tue, Apr 17, 2012 at 8:09 AM, Andrew Scott  >wrote:
>
> >
> > Please visit this, it is not in your face, but if you notice the Windows
> > 64bit is half circles. If you scroll back up it tells you that ColdFusion
> > 32bit is supported on 64bit only.
> >
> > http://www.adobe.com/products/coldfusion/coldfusion8/systemreqs/
> >
> > --
> > Regards,
> > Andrew Scott
> > WebSite: http://www.andyscott.id.au/
> > Google+: http://plus.google.com/108193156965451149543
> >
> >
> >
> > On Tue, Apr 17, 2012 at 9:57 PM, Eric Roberts <
> > ow...@threeravensconsulting.com> wrote:
> >
> > >
> > > Are you sure about that?  I can't find anything that says that it is
> only
> > > the enterprise that is 64...
> > >
> > >
> > >
> >
> >
> >
>
> 

~|
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:350760
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Edition not changing from developer to standard...

2012-04-17 Thread Eric Roberts

I see it now...thanks.  They didn't make it very clear.  A simple Standard
is 32 bit only would have been better ;-)  Thanks again for helping me
clarify. Now off to unistall the 64 bit vesion and reinstall the 32.  One
other question...does this require the 32 bit version of IIS or will the 64
bit version be ok.  I seem to remember seeing something about that before.

Eric

On Tue, Apr 17, 2012 at 8:09 AM, Andrew Scott wrote:

>
> Please visit this, it is not in your face, but if you notice the Windows
> 64bit is half circles. If you scroll back up it tells you that ColdFusion
> 32bit is supported on 64bit only.
>
> http://www.adobe.com/products/coldfusion/coldfusion8/systemreqs/
>
> --
> Regards,
> Andrew Scott
> WebSite: http://www.andyscott.id.au/
> Google+: http://plus.google.com/108193156965451149543
>
>
>
> On Tue, Apr 17, 2012 at 9:57 PM, Eric Roberts <
> ow...@threeravensconsulting.com> wrote:
>
> >
> > Are you sure about that?  I can't find anything that says that it is only
> > the enterprise that is 64...
> >
> >
> >
>
>
> 

~|
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:350759
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF 10 Release

2012-04-17 Thread Andy Allan

I'll take that bet.

On 17 April 2012 14:28, Raymond Camden  wrote:
>
> Anybody want to take a bet with me? ;)
>
> On Tue, Apr 17, 2012 at 7:40 AM, Andrew Scott  wrote:
>>
>> I already own a copy of that :-)
>>
>> --
>> Regards,
>> Andrew Scott
>> WebSite: http://www.andyscott.id.au/
>> Google+: http://plus.google.com/108193156965451149543
>>
>
> 

~|
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:350758
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF 10 Release

2012-04-17 Thread Raymond Camden

I've been speaking with The Forta about the WACK. I don't think we can
say anything publicly yet though.


On Tue, Apr 17, 2012 at 8:50 AM, AJ Mercer  wrote:
>
> ok, will cut you some slack this time - but I will be back to bug you about
> CFOANZ in November
>
> All the best for the launch of the baby - are you running a book release of
> baby too :-P
> Put me down for $5 on May 4th
>
>
>
> On 17 April 2012 21:43, Raymond Camden  wrote:
>
>>
>> Heh, I wish. Wife is in finals that week so no travel at all at the
>> end of April/beginning of May.
>>
>> On Tue, Apr 17, 2012 at 8:37 AM, AJ Mercer  wrote:
>> >
>> > I would guess not at MAX as it will get lost within the Create Suite
>> > product hype.
>> > But then again, cf.O() and CFOANZ is preaching to the choir.
>> >
>> > Maybe more of a HTML5 conference??
>> > WebDU [1] is in a few of weeks.
>> > So Ray - you up for a trip to Sydney AU ;-)
>> >
>> > [1] http://www.webdu.com.au/
>> >
>> >
>>
>>
>
> 

~|
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:350757
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF 10 Release

2012-04-17 Thread AJ Mercer

ok, will cut you some slack this time - but I will be back to bug you about
CFOANZ in November

All the best for the launch of the baby - are you running a book release of
baby too :-P
Put me down for $5 on May 4th



On 17 April 2012 21:43, Raymond Camden  wrote:

>
> Heh, I wish. Wife is in finals that week so no travel at all at the
> end of April/beginning of May.
>
> On Tue, Apr 17, 2012 at 8:37 AM, AJ Mercer  wrote:
> >
> > I would guess not at MAX as it will get lost within the Create Suite
> > product hype.
> > But then again, cf.O() and CFOANZ is preaching to the choir.
> >
> > Maybe more of a HTML5 conference??
> > WebDU [1] is in a few of weeks.
> > So Ray - you up for a trip to Sydney AU ;-)
> >
> > [1] http://www.webdu.com.au/
> >
> >
>
> 

~|
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:350756
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF 10 Release

2012-04-17 Thread Raymond Camden

Heh, I wish. Wife is in finals that week so no travel at all at the
end of April/beginning of May.

On Tue, Apr 17, 2012 at 8:37 AM, AJ Mercer  wrote:
>
> I would guess not at MAX as it will get lost within the Create Suite
> product hype.
> But then again, cf.O() and CFOANZ is preaching to the choir.
>
> Maybe more of a HTML5 conference??
> WebDU [1] is in a few of weeks.
> So Ray - you up for a trip to Sydney AU ;-)
>
> [1] http://www.webdu.com.au/
>
>

~|
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:350755
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF 10 Release

2012-04-17 Thread AJ Mercer

I would guess not at MAX as it will get lost within the Create Suite
product hype.
But then again, cf.O() and CFOANZ is preaching to the choir.

Maybe more of a HTML5 conference??
WebDU [1] is in a few of weeks.
So Ray - you up for a trip to Sydney AU ;-)

[1] http://www.webdu.com.au/



On 17 April 2012 21:28, Raymond Camden  wrote:

>
> Anybody want to take a bet with me? ;)
>
> On Tue, Apr 17, 2012 at 7:40 AM, Andrew Scott 
> wrote:
> >
> > I already own a copy of that :-)
> >
> > --
> > Regards,
> > Andrew Scott
> > WebSite: http://www.andyscott.id.au/
> > Google+: http://plus.google.com/108193156965451149543
> >
>
> 

~|
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:350754
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF 10 Release

2012-04-17 Thread Brian Thornton

I bet you there are some guys in India we could get the date from and
then bet big...

http://forums.adobe.com/thread/939970


On Tue, Apr 17, 2012 at 7:29 AM, DURETTE, STEVEN J  wrote:
>
> Sure, you tell me when YOU think it's coming out and we will base the bet on 
> that! LOL
>
> -Original Message-
> From: Raymond Camden [mailto:raymondcam...@gmail.com]
> Sent: Tuesday, April 17, 2012 9:28 AM
> To: cf-talk
> Subject: Re: CF 10 Release
>
>
> Anybody want to take a bet with me? ;)
>
> On Tue, Apr 17, 2012 at 7:40 AM, Andrew Scott  wrote:
>>
>> I already own a copy of that :-)
>>
>> --
>> Regards,
>> Andrew Scott
>> WebSite: http://www.andyscott.id.au/
>> Google+: http://plus.google.com/108193156965451149543
>>
>
>
>
> 

~|
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:350753
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF 10 Release

2012-04-17 Thread Andrew Scott

Ray, that would be like betting on the loosing team of a fixed game.

-- 
Regards,
Andrew Scott
WebSite: http://www.andyscott.id.au/
Google+: http://plus.google.com/108193156965451149543



On Tue, Apr 17, 2012 at 11:28 PM, Raymond Camden wrote:

>
> Anybody want to take a bet with me? ;)
>
>


~|
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:350752
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: CF 10 Release

2012-04-17 Thread DURETTE, STEVEN J

Sure, you tell me when YOU think it's coming out and we will base the bet on 
that! LOL

-Original Message-
From: Raymond Camden [mailto:raymondcam...@gmail.com] 
Sent: Tuesday, April 17, 2012 9:28 AM
To: cf-talk
Subject: Re: CF 10 Release


Anybody want to take a bet with me? ;)

On Tue, Apr 17, 2012 at 7:40 AM, Andrew Scott  wrote:
>
> I already own a copy of that :-)
>
> --
> Regards,
> Andrew Scott
> WebSite: http://www.andyscott.id.au/
> Google+: http://plus.google.com/108193156965451149543
>



~|
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:350751
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF 10 Release

2012-04-17 Thread Raymond Camden

Anybody want to take a bet with me? ;)

On Tue, Apr 17, 2012 at 7:40 AM, Andrew Scott  wrote:
>
> I already own a copy of that :-)
>
> --
> Regards,
> Andrew Scott
> WebSite: http://www.andyscott.id.au/
> Google+: http://plus.google.com/108193156965451149543
>

~|
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:350750
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Edition not changing from developer to standard...

2012-04-17 Thread Andrew Scott

Please visit this, it is not in your face, but if you notice the Windows
64bit is half circles. If you scroll back up it tells you that ColdFusion
32bit is supported on 64bit only.

http://www.adobe.com/products/coldfusion/coldfusion8/systemreqs/

-- 
Regards,
Andrew Scott
WebSite: http://www.andyscott.id.au/
Google+: http://plus.google.com/108193156965451149543



On Tue, Apr 17, 2012 at 9:57 PM, Eric Roberts <
ow...@threeravensconsulting.com> wrote:

>
> Are you sure about that?  I can't find anything that says that it is only
> the enterprise that is 64...
>
>
>


~|
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:350749
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Edition not changing from developer to standard...

2012-04-17 Thread Russ Michaels

not sure if that came out right, try again.
The download is either 32 or 64bit, there is no separate download for
enterprise or standard, all downloads are for all editions, it is your
license key which determines which edition you have by enabling/disabling
features.
According to the docs (below) In CF 8.0.1 64bit  is a feature which
requires enterprise license, so your standard license is probably not being
accepted for that reason.

Does ColdFusion have 64-bit support?

As of ColdFusion 8 Update 1, ColdFusion Enterprise and Developer editions
can run as 64-bit applications on the 64-bit versions of the following
operating systems:

   - Windows XP, 2003, Vista and 2008
   - Macintosh OS X 10.5 (for Intel-based Macs)*
   - Red Hat Enterprise Linux5.0
   - SUSE Linux 10.1 and above (glibc-2.5-25 is required)
   - Solaris 9 or 10 (Also supported in the initial ColdFusion 8 release)

* Note that Mac PPC 64-bit OS is not supported.

For detailed information about supported platforms, see the ColdFusion
System Requirements .
Note that ColdFusion 32-bit cannot be upgraded to ColdFusion 64-bit using
the Update. ColdFusion should be uninstalled and installed again using the
64-bit full installer available on theColdFusion 8 Trials
page
.



On Tue, Apr 17, 2012 at 1:39 PM, Russ Michaels  wrote:

> there are separate downloads for 32/64bit but it makes no difference what
> license you are using, this only enables/disables features.
>
> Adobe introduced 64-bit support for ColdFusion for the first time in
> ColdFusion 8, which can run on Solaris SPARC. Since that time, Sun has
> released a 64-bit JDK for Intel x86-64 processors. With the release of this
> new JDK, along with the efforts from the ColdFusion team to ensure the
> 64-bit compatibility, the ColdFusion 8.0.1 update has added full 64-bit
> support for Windows, Linux, and Mac OS X. For complete up-to-date details
> on ColdFusion 64-bit platform support, refer the ColdFusion platform
> support matrix
> .
>
> Most of the functionality and features of ColdFusion run just fine on
> 64-bit platforms, however, certain features like ColdFusion COM
> interoperability, ColdFusion Delphi interoperability, and Microsoft Access
> database connectivity do not work on a ColdFusion 64-bit platform. A few
> other features, such as ColdFusion .NET integration services and database
> drivers currently run in 32-bit mode.
>
> On Tue, Apr 17, 2012 at 1:08 PM, Eric Roberts <
> ow...@threeravensconsulting.com> wrote:
>
>>
>> So what happens if you install the 64 bit trial and enter in a standard
>> key?
>> Does it just revert to developer after the 30 day?  They should put
>> something in the registration process about this.  When I put the key in
>> from the developer edition...at first it would accept the key, then I
>> re-entered it thinking I entered it wrong and it accepted it.  I think
>> something is broken in the license process.
>>
>> Thanks!
>>
>>
>> -Original Message-
>> From: Jochem van Dieten [mailto:joch...@gmail.com]
>> Sent: Tuesday, April 17, 2012 2:54 AM
>> To: cf-talk
>> Subject: Re: Edition not changing from developer to standard...
>>
>>
>> On Mon, Apr 16, 2012 at 8:37 PM, Eric Roberts wrote:
>> > I am having an issue with CF8 64BIT (8.01) when I enter the serial
>> > number fo the standard edition we purchased, the serial number appears
>> > to be accepted, but the edition stays at developer.  Any ideas on how
>> > to resolve this?
>>
>> CF8 Standard does not support a 64-bit configuration.
>>
>> Jochem
>>
>> --
>> Jochem van Dieten
>> http://jochem.vandieten.net/
>>
>>
>>
>> 

~|
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:350748
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF 10 Release

2012-04-17 Thread Andrew Scott

I already own a copy of that :-)

-- 
Regards,
Andrew Scott
WebSite: http://www.andyscott.id.au/
Google+: http://plus.google.com/108193156965451149543



On Tue, Apr 17, 2012 at 10:38 PM, Andy Allan  wrote:

>
> I'd say a copy of CFBuilder2 but I know how you feel about that ;)
>
>


~|
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:350747
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Edition not changing from developer to standard...

2012-04-17 Thread Russ Michaels

there are separate downloads for 32/64bit but it makes no difference what
license you are using, this only enables/disables features.

Adobe introduced 64-bit support for ColdFusion for the first time in
ColdFusion 8, which can run on Solaris SPARC. Since that time, Sun has
released a 64-bit JDK for Intel x86-64 processors. With the release of this
new JDK, along with the efforts from the ColdFusion team to ensure the
64-bit compatibility, the ColdFusion 8.0.1 update has added full 64-bit
support for Windows, Linux, and Mac OS X. For complete up-to-date details
on ColdFusion 64-bit platform support, refer the ColdFusion platform
support matrix 
.

Most of the functionality and features of ColdFusion run just fine on
64-bit platforms, however, certain features like ColdFusion COM
interoperability, ColdFusion Delphi interoperability, and Microsoft Access
database connectivity do not work on a ColdFusion 64-bit platform. A few
other features, such as ColdFusion .NET integration services and database
drivers currently run in 32-bit mode.

On Tue, Apr 17, 2012 at 1:08 PM, Eric Roberts <
ow...@threeravensconsulting.com> wrote:

>
> So what happens if you install the 64 bit trial and enter in a standard
> key?
> Does it just revert to developer after the 30 day?  They should put
> something in the registration process about this.  When I put the key in
> from the developer edition...at first it would accept the key, then I
> re-entered it thinking I entered it wrong and it accepted it.  I think
> something is broken in the license process.
>
> Thanks!
>
>
> -Original Message-
> From: Jochem van Dieten [mailto:joch...@gmail.com]
> Sent: Tuesday, April 17, 2012 2:54 AM
> To: cf-talk
> Subject: Re: Edition not changing from developer to standard...
>
>
> On Mon, Apr 16, 2012 at 8:37 PM, Eric Roberts wrote:
> > I am having an issue with CF8 64BIT (8.01) when I enter the serial
> > number fo the standard edition we purchased, the serial number appears
> > to be accepted, but the edition stays at developer.  Any ideas on how
> > to resolve this?
>
> CF8 Standard does not support a 64-bit configuration.
>
> Jochem
>
> --
> Jochem van Dieten
> http://jochem.vandieten.net/
>
>
>
> 

~|
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:350746
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF 10 Release

2012-04-17 Thread Andy Allan

I'd say a copy of CFBuilder2 but I know how you feel about that ;)

On 17 April 2012 13:20, Andrew Scott  wrote:
>
> How much you going to put on that, I would love to take all you are going
> to put on that bet.
>
> --
> Regards,
> Andrew Scott
> WebSite: http://www.andyscott.id.au/
> Google+: http://plus.google.com/108193156965451149543
>
>
> On Tue, Apr 17, 2012 at 9:51 PM, Andy Allan  wrote:
>
>>
>> Now THAT is where I'm putting my money.
>>
>>
>
>
> 

~|
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:350745
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF 10 Release

2012-04-17 Thread Andrew Scott

How much you going to put on that, I would love to take all you are going
to put on that bet.

-- 
Regards,
Andrew Scott
WebSite: http://www.andyscott.id.au/
Google+: http://plus.google.com/108193156965451149543


On Tue, Apr 17, 2012 at 9:51 PM, Andy Allan  wrote:

>
> Now THAT is where I'm putting my money.
>
>


~|
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:350744
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Edition not changing from developer to standard...

2012-04-17 Thread Eric Roberts

So what happens if you install the 64 bit trial and enter in a standard key?
Does it just revert to developer after the 30 day?  They should put
something in the registration process about this.  When I put the key in
from the developer edition...at first it would accept the key, then I
re-entered it thinking I entered it wrong and it accepted it.  I think
something is broken in the license process.

Thanks!


-Original Message-
From: Jochem van Dieten [mailto:joch...@gmail.com] 
Sent: Tuesday, April 17, 2012 2:54 AM
To: cf-talk
Subject: Re: Edition not changing from developer to standard...


On Mon, Apr 16, 2012 at 8:37 PM, Eric Roberts wrote:
> I am having an issue with CF8 64BIT (8.01) when I enter the serial 
> number fo the standard edition we purchased, the serial number appears 
> to be accepted, but the edition stays at developer.  Any ideas on how 
> to resolve this?

CF8 Standard does not support a 64-bit configuration.

Jochem

--
Jochem van Dieten
http://jochem.vandieten.net/



~|
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:350743
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Edition not changing from developer to standard...

2012-04-17 Thread Eric Roberts

Are you sure about that?  I can't find anything that says that it is only
the enterprise that is 64...


-Original Message-
From: Jochem van Dieten [mailto:joch...@gmail.com] 
Sent: Tuesday, April 17, 2012 2:54 AM
To: cf-talk
Subject: Re: Edition not changing from developer to standard...


On Mon, Apr 16, 2012 at 8:37 PM, Eric Roberts wrote:
> I am having an issue with CF8 64BIT (8.01) when I enter the serial 
> number fo the standard edition we purchased, the serial number appears 
> to be accepted, but the edition stays at developer.  Any ideas on how 
> to resolve this?

CF8 Standard does not support a 64-bit configuration.

Jochem

--
Jochem van Dieten
http://jochem.vandieten.net/



~|
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:350742
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF 10 Release

2012-04-17 Thread Andy Allan

Now THAT is where I'm putting my money.

On 17 April 2012 04:07, Wil Genovese  wrote:
>
> Actually, I'm hoping they release if at cf.Objective() in Minneapolis next 
> month.
>
>
>
> Sent from my iPad, enjoy the auto replace typos :)
>
> On Apr 16, 2012, at 9:26 PM, AJ Mercer  wrote:
>
>>
>> Maybe they will save it for
>>     http://cfobjective.com.au/
>>
>> Blatant plug :-P
>> 1~2 November 2012 :: Melbourne, AU
>>
>>
>> On 17 April 2012 08:29, Andrew Scott  wrote:
>>
>>>
>>> Considering 8 and 9 where, I think that is a very safe guess.
>>>
>>> --
>>> Regards,
>>> Andrew Scott
>>> WebSite: http://www.andyscott.id.au/
>>> Google+: http://plus.google.com/108193156965451149543
>>>
>>>
>>> On Tue, Apr 17, 2012 at 10:28 AM, Tony  wrote:
>>>

 probably right before or after Max this year.

 purely a guess

 On Monday, April 16, 2012, N kips wrote:

>
> Noted.
>
>


>>>
>>>
>>
>>
>
> 

~|
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:350741
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Edition not changing from developer to standard...

2012-04-17 Thread Jochem van Dieten

On Mon, Apr 16, 2012 at 8:37 PM, Eric Roberts wrote:
> I am having an issue with CF8 64BIT (8.01) when I enter the serial
> number fo the standard edition we purchased, the serial number appears
> to be accepted, but the edition stays at developer.  Any ideas on how
> to resolve this?

CF8 Standard does not support a 64-bit configuration.

Jochem

-- 
Jochem van Dieten
http://jochem.vandieten.net/

~|
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:350740
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Odd ACF 8 v 9 issue

2012-04-17 Thread Jochem van Dieten

On Mon, Apr 16, 2012 at 9:49 PM, John M Bliss wrote:
> In ACF 9, I had:
> xmlparse(cfhttp.filecontent)['top-level-node']
>
> ...and it worked fine but ACF 8 threw a syntax error

Support for square braces directly after parenthesis was one of the
syntax improvements in CF 9.

Jochem


-- 
Jochem van Dieten
http://jochem.vandieten.net/

~|
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:350739
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm