Re: Handling invalid recipient in mailing list

2015-04-02 Thread Bryan Stevenson

You  may want to add a cftry/cfcatch (around the cfmail block) so when 
the error occurs it can be handled gracefully via cfcatch (like tagging 
the recipient record as having a bad address) and the loop will keep 
going - valid recipients get their mail and the others can be cleansed 
from the list ;-)

HTH

Cheers

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS™
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@fisheryfacts.com mailto:br...@fisheryfacts.com
web: www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.
On 2015-04-02 3:11 PM, Dave Long wrote:
 I am trying to send a mass mailing to a somewhat carelessly created list of
 contacts using e-mail addresses which were not verified at the time of
 entry. Whenever the cfloop tag comes to an erroneous recipient, it quits and
 throws an error. Is there anything I can do to the code to make it keep
 going?

 Here's the code:

   CFLOOP list=#Form.SelectedRecipients# index=Recipient
   CFMAIL
   from=#Form.Sender#
   to=#Recipient#
   subject=#Form.Subject#
   type=HTML
   
 htmlheadlink rel=stylesheet
 href=http://www.northgoods.com/global.css; type=text/css //headbody
 bgcolor=black
   table width=800 align=center
   TR
   TD align=center colspan=2
   table width=800 align=center border=4 cellpadding=10
 bgcolor=blacktrtd
   strongfont face=Arial size=+1 color=##FF6600
   #Form.Message#
   /font/strong
   /td/tr/table
   table align=center
   trth colspan=2strongfont face=Arial size=-1
 color=##FF6600If you would like to be removed frombrour mailing list,
 please click here:/font/strongbr
   a
 href=http://www.northgoods.com/unsubscribe.cfm?delEmail=#Recipient#;
 title=UNSUBSCRIBEfont face=Arial size=-1
 color=whitestrongUNSUBSCRIBE/strong/font/abr
 font face=Arial size=-1 color=##FF6600You will receive one last
 message from us to confirm your removal from our
 list./font/strong/th/tr
 /TABLE/body/html
   /CFMAIL
   /CFLOOP


 

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


Re: trying to shorten long string

2015-03-09 Thread Bryan Stevenson

just keep in mind that periods exist in text for other reasons than 
ending sentences - this code will NOT always work as intended

This will kill your desired end result There are 4.5 houses finished. ;-)

SorryI don't have a solution handy - just spotted a potential issue

Take care

-Bryan

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS™
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@fisheryfacts.com mailto:br...@fisheryfacts.com
web: www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.
On 2015-03-07 8:22 AM, Captain Obvious wrote:
 Variable I is undefined.

 This works,

 cfif len(variables.description) gt 200
  cfset variables.i = false
  cfloop condition=variables.i eq false
  cfset variables.description =
 listDeleteAt(variables.description,listLen(variables.description,
 .),.)
  cfif len(variables.description) lte 200
  cfset variables.i = true
  /cfif
  /cfloop
 /cfif
 cfoutput#variables.description#/cfoutput

 On Sat, Mar 7, 2015 at 1:31 AM, Mark Spence markpence...@gmail.com wrote:
 I have a long product description I am trying to truncate.  I could just
 truncate it, but I don't want to break off sentences.  Here is the solution
 I came up with but it does not seem to have any effect.

 Any ideas?

 cfset variables.description = qry_productsGet.productdescription
 cfif len(variables.description) gt 200
  cfloop condition=i eq false
  cfset variables.description =
 listDeleteAt(variables.description,listLen(variables.description, .),
 .)
  cfif len(variables.description) lte 200
  cfset i = true
  /cfif
  /cfloop
 /cfif



 

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


Re: Sending SMS

2014-11-20 Thread Bryan Stevenson

Yes...you got it Rick

Another decision point for you is this...

Are you intending on just sending out texts? or also receiving?

If receiving is that part of a conversation (i.e. they send you a 
start code, you ask a question, they provide an answer and so on).  If 
you are looking at that then you need the equivalent of SMS session 
management.  That functionality is built in to the CF SMS gateway and 
relies on I believe the SNDP/SNPP protocol (sorry I probably butchered 
that acronym).  You can write your own session management and use the 
HTTP method - I have done so and it wasn't all that bad.

IF all you are doing is sending out and not expecting a response - go 
HTTP or even simpler as some have mentioned - ye olde e-mail a text 
message route (not sure all carrier allow that anymore and knowing what 
carrier matters).

Hope that helps you navigate it all a bit better - I know I could have 
used some help when I dove in a few years back ;-)

Cheers

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.
On 14-11-18 04:31 PM, Rick Sanders wrote:
 That's great but what about sending to different carriers? I'm guessing you 
 have to know what carrier the customer you're sending a sms is on right?

 Kind Regards,

 Rick Sanders



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


Re: Sending SMS

2014-11-20 Thread Bryan Stevenson

Not always an XML packet - Clickatel and their HTTP API uses CFHTTP with 
basic params - no XML

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.
On 14-11-18 05:21 PM, Mike K wrote:
 That's great but what about sending to different carriers? I'm guessing
 you have to know what carrier the customer you're sending a sms is on
 right?


 No.   Its your carrier not theirs.   Just like you dont need to know what
 carrier someone is using to call them. Best is to use an aggregator if
 you're sending any volume of messages.   The cheapest today wont
 necessarily be the cheapest tomorrow.   I used a UK aggregator, and believe
 it or not it was faster from my US server than using an Australian or US
 service.   But only marginally.  Didn't make much difference in reality.
 We set up races between mobile phones and the xml packet based aggregator
 and several other combinations and the UK Aggregator beat all the other
 ways by a second or two seconds,  even when it was routing the messages
 through a South African carrier to an Australian carrier to another
 Australian carrier to my phone.

 The full mobile phone number will find the device  no matter where in the
 world it is,  no matter what carrier they're connected to.

 But as far as ColdFusion is concerned,  you'll either be making up an email
 containing the message and sending it using CFMail  or using an XML packet
 and sending that by cfhttp.  Depends on how your service is set up.Rest
 assured it wont be the most difficult ColdFusion task you've ever done.

 Cheers
 Mike Kear
 Windsor, NSW, Australia



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


Re: Sending SMS

2014-11-18 Thread Bryan Stevenson

Hey Rick,

I'd say the answer depends on your situation.

A big determining factor is what carrier are the folks on that you would 
be sending to?  I ask because if only one carrier you can go low cost 
and failry easy.

If multiple carriers, you may want to consider using an SMS aggregator 
as they know how to connect and send SMS messages through all the 
various carrier networks (for a fee per text message - those fees vary 
wildly depending on the various APIs you have to choose from).  I use 
Clickatel for SMS aggregation services in the state of Maryland and I 
think we are talking pennies per text (you load account with credits and 
they get consumed - can notify as you get low etc).

Once you have the carrier details sorted, then it's HOW you send (there 
is an SMS gateway in CF, but you can also just call APIs with say 
Clickatel using their HTTP API (one of 3-5 they offer). SOme APIs are 
meant fo super high volume - some for lowsome offer different feautures.

So there is a simple primer to aid in some core decision making - I'll 
keep an eye on this thread - ask away! ;-)

Take care

-Bryan

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.


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


Re: Sending SMS

2014-11-18 Thread Bryan Stevenson

you need more than the gateway John ;-)

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.


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


Re: Sending SMS

2014-11-18 Thread Bryan Stevenson

In the grand scheme of things - yes it can be - if you need an 
aggregator and can use the gateway

...and the CF gateway only works with certain APIs - depending on the 
SMS aggregator - just getting an account to use that API with them can 
take some doing as it has the capability to mass SPAM in a serious way.

I use the HTTP API at Clickatel and it is DEAD easy to use.

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.
On 14-11-18 03:50 PM, Rick Sanders wrote:
 Thanks Bryan,

 So it's like online payment. You need a gateway then a payment processor.

 -Original Message-
 From: Bryan Stevenson [mailto:br...@electricedgesystems.com]
 Sent: Tuesday, November 18, 2014 7:32 PM
 To: cf-talk
 Subject: Re: Sending SMS


 Hey Rick,

 I'd say the answer depends on your situation.

 A big determining factor is what carrier are the folks on that you would be 
 sending to?  I ask because if only one carrier you can go low cost and failry 
 easy.

 If multiple carriers, you may want to consider using an SMS aggregator as 
 they know how to connect and send SMS messages through all the various 
 carrier networks (for a fee per text message - those fees vary wildly 
 depending on the various APIs you have to choose from).  I use Clickatel for 
 SMS aggregation services in the state of Maryland and I think we are talking 
 pennies per text (you load account with credits and they get consumed - can 
 notify as you get low etc).

 Once you have the carrier details sorted, then it's HOW you send (there is an 
 SMS gateway in CF, but you can also just call APIs with say Clickatel using 
 their HTTP API (one of 3-5 they offer). SOme APIs are meant fo super high 
 volume - some for lowsome offer different feautures.

 So there is a simple primer to aid in some core decision making - I'll keep 
 an eye on this thread - ask away! ;-)

 Take care

 -Bryan

 *Bryan Stevenson*B.Comm.
 President  CEO
 Electric Edge Systems Group Inc. - makers of FACTS^(TM)
 phone: 250.480.0642
 cell: 250.920.8830
 e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
 web: www.electricedgesystems.com http://www.electricedgesystems.com
 and www.fisheryfacts.com http://www.fisheryfacts.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:359669
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: List_Question?

2014-11-10 Thread Bryan Stevenson

May be best to send that question directly to the list owner Michael 
Dinowitz - pretty sure his e-mail is available at houseoffusion.com

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.


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


Re: Scheduled Tasks Error

2014-11-09 Thread Bryan Stevenson

Weekend ;-)

chirp chirp

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.
On 14-11-09 03:37 PM, Sebastian Powell wrote:
 [crickets]  :-)







 -- 
 John Bliss - http://www.linkedin.com/in/jbliss
 I am experiencing the same issue on CF 11,  neo-cron.xml all the scedheuled 
 task vanished. and its an empty file.  Did you manage to resolve 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:359582
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Is time for a change?

2014-11-07 Thread Bryan Stevenson

Yep Jordan and crew at Vivio are simply the best I've ever worked with 
at a hosting company -full stop

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.
On 14-11-07 11:26 AM, Kelly Matthews wrote:
 Agreed! Vivio rocks! I have had no problems with them for years and years. 
 Very awesome support as well.


 On Nov 7, 2014, at 2:20 PM, Matt Quackenbush quackfu...@gmail.com wrote:


 I only have one response when people are looking for CFML hosting.

 Use Vivio! https://www.viviotech.net/

 I was once told, If you have nothing good to say, say nothing at all. As
 such, I'll refrain from commenting on any other CFML host. :-)

 On Fri, Nov 7, 2014 at 1:15 PM, Rick Eidson cfh...@kchost.net wrote:

 Anyone using Hostek?  I have been with them for. well a long time.  But in
 the last year it seems there have been more problems than ever.  I really
 hate the idea of moving all my clients but I am wondering if in the long
 run
 will I be better off.



 Any thoughts?



 Rick






 

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


Re: First Data Global Gateway e4 sample code

2014-09-22 Thread Bryan Stevenson

I'll 2nd thatIF I have seen CF examples in payment processing APIs, 
they has generally looked like a 5th grader wrote it with a crayon ;-)

c'est la vie!

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.
On 14-09-22 03:27 PM, Michael Dinowitz wrote:
 According to zendesk, the file with the ColdFusion sample code does not
 exist. I'm using php code as my sample for a ColdFusion app. Not the way
 things should be.

 If anyone has any First Data Global Gateway sample code that they want to
 send to First Data and/or Adobe, please do so. It's embarrassing that
 ColdFusion is not represented with this or any API. :(

 yes, I'll submit some sample code but it'll have to wait till after the
 holidays which start this week.

 On Mon, Sep 22, 2014 at 7:58 AM, Michael Dinowitz 
 mdino...@houseoffusion.com wrote:

 I'm updating a payment gateway to the First Data e4 spec and after looking
 through their site, I can't find anything that looks like useful sample
 code. The one example they have for CF is from 2003. The link that looks
 like it goes to a more current sample asks me to log in.


 https://firstdata.zendesk.com/entries/407568-first-data-global-gateway-e4sm-web-service-api-sample-code-cold-fusion

 Does anyone have a login for First Data and can get me that page? I'd like
 to see if it has any resemblance to the code I hacked together. :)

 Thanks
 Michael


 

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


Re: Encrypt/Decrypt Files

2014-07-17 Thread Bryan Stevenson

Hey Rick,

You can use more secure forms of FTP as opposed to getting that 
draconian - just a thought ;-)

I haven't done any file encryption in a while, so I'll bow out on that 
detail - but yes it is doable.

Cheers

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.


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


Re: Locks on Access files in CF 9

2014-07-03 Thread Bryan Stevenson

Try running a bad query against the datasource (whip up a CFM file call 
LockKill.cfm and stuff a CFQUERY in it - run in browser

SELECT gum FROM Pack_of_Gum should do the trick ;-)

This was the old school way to get Access to let go

Run the query and then refresh the folder with your DB file in in and 
the lock file should go way

If not...try a  few more times as sometimes it would take a couple of 
attempts

HTH

Cheers

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.


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


Re: Locks on Access files in CF 9

2014-07-03 Thread Bryan Stevenson

...and now you are That Guy Phillip ;-)

I agree wholeheartedly, but thought I'd try and provide help for the 
actual issue that is in Ben's face at the moment.

Cheers

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.
On 14-07-03 10:59 AM, Phillip Vector wrote:
 Not to be That Guy... But transfer the data to an actual database and use
 that?


 On Thu, Jul 3, 2014 at 10:53 AM, Ben b...@webworldinc.com 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:358794
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Locks on Access files in CF 9

2014-07-03 Thread Bryan Stevenson

On 14-07-03 11:06 AM, Ben wrote:
 Yeah, you're preaching to the choir on that one. :)

 This client tweaks their copy of the DB with local apps then uploads it to 
 the server.

 Ben
Ugh...that is horrible! ;-)


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


Re: Locks on Access files in CF 9

2014-07-03 Thread Bryan Stevenson

Have a good 4th! ...from Canada ;-)

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.
On 14-07-03 02:58 PM, Ben Conner wrote:
 Thanks, guys!  I knew I would get the full picture here and wasn't 
 disappointed.

 Best wishes and Hope you have a great 4th of July!

 --Ben




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


Re: Error please site is down for a month now moms site

2014-06-13 Thread Bryan Stevenson

Matt...post all code from the opening CFCOMPONENT tag to the closing 
CFCOMPONENT tag

All the stuff you have posted so far should be BETWEEN those tags

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.


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


Re: Unable to add text to HTML HEAD tag

2014-05-07 Thread Bryan Stevenson

+ 1 zillion

I think the term you are looking for is one I can't post here, but 
agreed 100% that advice like you are doing it wrong - throw it out 
is never constructive

It's maybe a little better if the poster bothers to explain WHY it 
should be thrown out

Of course you asked a specific question and rightfully should be able to 
expect a decent informed response instead of a mine's bigger than yours 
and I know better than you response like you got

Way to have the tact to respond the way you did - I didn't reply earlier 
because I could not find any tact and instead wanted to speak my mind 
and that would surely get me banned.

I wish I could help you, but I don't have any experience with the CF UI tags

Take care

-Bryan

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.


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


Re: how much to charge for a e-commerce solution?

2014-05-04 Thread Bryan Stevenson

Yes Russ there are indeed market forces to consider - just providing a 
view of not selling one's self short as I suspect many developers have ;-)

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.


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


Re: how much to charge for a e-commerce solution?

2014-05-04 Thread Bryan Stevenson

...and that's why I left web development for small/medium businesses 
years ago - too flaky for me

I now sell to governments and industrytad more political and a heck 
of a long sales cycle...but I'm in control of the software I produce and 
don't have to do it the client's way anymore - freedom!! ;-)

Cheers

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.
On 14-05-04 09:11 AM, Russ Michaels wrote:
 yes indeed, but it can often be more about wording it right.
 Unfortunately it is all too common for some idiot to come along and tell
 your client they are ripping you off and you suddenly find your customer
 has now gone elsewhere and got their site redeveloped without even telling
 you, so you don't even get a chance to explain or defend yourself.



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


Re: cfajaxproxy problem

2014-05-03 Thread Bryan Stevenson

So simple and easy the website just says Dynamic at the moment ;-)

I'll put forward AJAX via jQuery

Cheers

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.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:358552
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: how much to charge for a e-commerce solution?

2014-05-03 Thread Bryan Stevenson

Sounds like you have built a product. If it is already in use then you 
may have a track record to rely on.

If so, I would NOT sell your solution for  a fixed price.push for a 
monthly subscription for your SaaS solution and earn recurring revenue ;-)

Of course you have to be in line with other such products and have a 
reason why you are worth what you decide to charge as compared to the 
competition.

just my 2 cents

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.


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


Re: how much to charge for a e-commerce solution?

2014-05-03 Thread Bryan Stevenson

Having gone through the dot com craze where IPOs were plenty and 
everyone was offering stock options and a piece of the pie - I will 
NEVER work for a percentage of sales again ;-)

I am talking about charging a licensing fee for your software - has 
NOTHING to do with the customers sales (other than you may want to have 
tiers of monthly charges for various levels of transaction volume).

Don't get caught up in their sales or your hosting costs - it is 
software as a service (SaaS) - Microsoft doesn't ask for a piece of the 
$ their clients make using their software - they charge what they think 
it's worth and enough to make them a profit (MS bashing asideand yes 
I'd be on that bandwagon).

The way I handle it (as my system is customized for most new customers) 
is that I charge my cost to do the customizations (or do them for free 
if they are not too over the top).  Then I make my money on recurring 
revenue froma  per transaction fee I charge to access to my system and 
the professional services that come with it.  As long as I am getting my 
fee I enhance the system for free and add reports and other 
customizations for free.  Those are the broad strokes.

In other words - give them the razor (install/config/test/launch 
services) and then sell them the blades (your monthly fee for as long as 
they use you).

Hope that better explains what I was on about ;-)

Cheers

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.


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


Re: cfajaxproxy problem

2014-05-02 Thread Bryan Stevenson

SorryI've missed the start of this thread, but another common way to 
make AJAX calls is to use jQuery.

I made the mistake several years ago of adopting ajaxCFC and wish I had 
just used jQuery as that is what ajaxCFC relied on anyways - now I have 
to tear some stuff out and roll my own jQuery solutionwhich for me 
is far better in the long run (not knocking the author of ajaxCFC - it 
was ahead of it's time in 2007).

Cheers

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.


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


Re: More CFBuilder 3 frustration

2014-05-01 Thread Bryan Stevenson

Mikenot that this helps you in anyway, but all your issues is why I 
use code editors for writing code - period

I use an FTP client for moving files and I use SVN for knowing what to 
upload

I use a browser for testing - never the browser in a code editor way

I've always developed that way and short of a few how do they do it in 
this editor issues, I've never been sidelined like you have been

Different strokes for different folks for sure - just an observation 
from someone who develops differently

I also don't have 39 projects going at one time - large plodding 
projects ;-)

Just a thoughtyou may find additional help if you search for how to 
do things in Eclipse - I hope CFBuilder isn't too big of a departure 
from what it's built on top of!!

Best of luck

Cheers

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.
On 14-05-01 02:42 PM, Mike K wrote:
 I've had enough of this damned ColdFusion Builder 3 for now.   It's just
 too bloody frustrating.   Maybe I might come back to it,  maybe not.

 The FTP/Synchronise thing is just barely something you would expect a
 beginner programmer to produce.Trying to make it work is groping in the
 dark because the help is not related to this product.  Instructions on
 setting up FTP begins :


 1. Right-click the project in the Navigator view.
 2. Click Synchronize  Create New Synchronize Connection.

 But there's no Synchonize option to choose from.  So it's a loser right
 there.The only thing i can find about uploading files to the remote
 server is Export...  but there's no help file for that.  Therefore what
 information goes where is just a guess. But dont get anything wrong,
 because you can't change anything.  There's no way to edit your ftp
 settings.And what's worse  once you've set up a ftp spec for a site,
 you can't edit it or set up another one with that same address.   Too bad
 if you have to change your password for any reason.And you can't delete
 an existing one and set it up again if you got your guess wrong the first
 time.


 In Dreamweaver, to upload a modified file to the site takes 2 clicks.
   Select the file, then click the up arrow.   It automatically creates
 folders on the remote server if the folder doesnt exist and just puts the
 modified file in there.

 In ColdFusion Builder - it's a bloody complicated process. Every time you
 try to export a file,  it downloads the whole file directory from the
 remote site.  If there are hundreds of files on that site, you have to wait
 while it downloads all the file names, dates, etc. It doesnt remember
 the last one - upload a file,  make a single little change, wait while it
 downloads the directory of the remote site all over again,  then take a few
 seconds  to upload your revised file.In one case, it takes 5 minutes to
 upload a 15kb file because of all that fussing about.

 I made an error the first time I set up export specs (probably forgot a
 trailing '/' or something) and now I can't fix it,  can't delete it and do
 it again,  can't synchonise at all.   That site is no longer able to be
 uploaded from ColdFusion Builder 3.

 I'm trying really hard, because I honestly want to be open minded about it.
But I'm not becoming a fan of ColdFusion Builder 3 yet.



 On Fri, May 2, 2014 at 4:48 AM, Andrew Scott andr...@andyscott.id.auwrote:

 Feel your pain Mike, but perseverance can fix that at times.

 The root, is what I stated earlier, when I said I usually just set it to
 the root for ColdFusion and that is the wwwroot in ColdFusion itself and
 not inetpub or your projects. Yes I agree this area is not well documented
 nor blogged, because people just don't use the line debugger and its power.
 I guess you can lead a horse to water but you cant make them drink it.

 Cheers
 Mike Kear
 Windsor, NSW, Australia
 Adobe Certified Advanced ColdFusion Developer
 AFP Webworks
 http://afpwebworks.com
 ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion

Re: More CFBuilder 3 frustration

2014-05-01 Thread Bryan Stevenson

Yep...all that CC crapola is why I stick with Eclipse/CFEclipse - at 
least it's free and won't ever vanish ;-)

I did see someone suggest Sublimeand I've had some folks I'm 
considering hiring mention it as well - the one thing I can say about it 
is it opens FAST!  I haven't had the time to dig in yetbut it could 
be my new free tool ;-)

But heyif it helps you feel betterthe VM I use for my dev work 
has decided to randomly blue screen and restart as of yesterday - so I'm 
feelin some pain too...LOL

Cheers

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.


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


Re: (ot) barcodes and mobile sites

2014-04-11 Thread Bryan Stevenson

Thanks for that Cameronand I'd love to hear more about what you're 
up to as well ;-)

I did see a mention on Git (a link from the article Dave provided 
yesterday) that some mobile app scanners allow you to configure a URL to 
send the user to when a barcode is scanned.  It uses a few placeholders 
in the configured URL to replace with values from the scanner (barcode 
format and the value scanned).  So that essentially makes a QR out of an 
old style barcode (in terms of sending user to a URL)

I may be stuck with traditional barcodes as the things to be scanned 
already exist and I think (need to confirm) they are old school

To make this more fun - this happens on fishing vessels at sea ;-)

It looks like there is hope for something like this.

Cheers


*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.


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


Re: (ot) barcodes and mobile sites

2014-04-11 Thread Bryan Stevenson

Well as Barney would say - Challenge accepted! ;-)

I have my doubts as wellbut then again I didn't know yesterday what 
I now know today!

...of course if there was a widget I could buy and use for this - I 
would...hehe

Cheers

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.


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


(ot) barcodes and mobile sites

2014-04-10 Thread Bryan Stevenson

Hi All,

I'm just looking into the possible methods/options for scanning a 
barcode (or QR) using a mobile device (phone/tablet) and making the 
scanned value (in this case a number) available to a web app running via 
a mobile site (i.e. stuff scanned value in text input)?

It's the bridge from whatever does the scanning (I assume any of the 
widely available barcode scanning apps in the various app marketplaces) 
and the web app that has me wondering what to do.

I'm sure this would be easier with a mobile app (Android/iOS/etc) 
instead of a web app in a mobile site - but heywhy do anything the 
easy way ;-)

Another option for the scanning might be to use actual scanner hardware 
attached to the mobile device (if such things exist and would work with 
the most popular mobile OSs)

Thanks in advance for any thoughts

Cheers

-- 
*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.


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


Re: (ot) barcodes and mobile sites

2014-04-10 Thread Bryan Stevenson

On 14-04-10 03:59 PM, Dave Watts wrote:
 QR codes can launch a specific URL in the mobile browser. Is that what
 you're trying to do?
Thanks Dave.not exactly, but that does spark another idea.  Any idea 
if the URL can specify URL params as well (I assume so...just have not 
really used them much)??

This is a data entry application running via a mobile site.  In the 
middle of filling in a form, the user may need to scan a bar/QR code and 
the value behind the code must be placed in a form prompt (text input). 
They will need to scan multiple codes.

It may not have to be that direct (i.e. perhaps they do all their 
scanning and all values are stored in a list - then the user could 
copy/cut that list and paste into the web form prompt).

As I saidthe bridge (getting data from scanner to web app) is the 
part I am struggling with - just looking for options and brainstorming

Your mention of QRs opening URLs made me wonder if I could have the web 
app collect each scan one at a time and store temporarily.  The idea 
being each QR passes the numeric value I would be after as a URL param - 
then repeat until all scanning done.

I should mention that the things to be scanned may already exist and 
only have barcodes and not QR (although in another area of my work that 
QR idea might just work).

Anywooo...there is some more clarity (I hope)

Thanks again for the feedback Dave


 Dave Watts, CTO, Fig Leaf Software
 1-202-527-9569
 http://www.figleaf.com/
 http://training.figleaf.com/

 Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
 GSA Schedule, and provides the highest caliber vendor-authorized
 instruction at our training centers, online, or onsite.

 

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


Re: (ot) barcodes and mobile sites

2014-04-10 Thread Bryan Stevenson

Thanks for the link DaveI'll give that a read!

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.


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


Re: Very disappointed in Viviotech

2014-04-01 Thread Bryan Stevenson

That's exactly how I'd expect Jordan and crew to respond and help you 
out - great bunch there!

Speaking as a guy who has been learning to take it down a 
notchI've had similar knee jerk reactions to support situations in 
general when I feel I'm being handled or ignored (never felt that way 
at Viviobut many times in many places).so I get it.

Take care Mikego out and enjoy that Aussie climate ;-)

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.







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


Re: The long tail of ColdFusion fail

2014-03-17 Thread Bryan Stevenson

+1 for Vivio and patches

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.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:357976
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


# in variables

2014-02-07 Thread Bryan Stevenson

Hey All,

I've got an issue where an external program written in Adobe AIR is 
passing a pipe delimited list of values to CF via a webservice and that 
list may contain strings like so #94; (a caret symbol)or just a 
straight up # (like someone saying x# of y - short form for x number of 
y).  BTW in Adobe AIR caret symbols in the data values in the list are 
being replaced with #94; because the caret is a special character in 
the pipe delimited list (it's used as a sub-list delimiter).

CF chokes on the single pound in the variable (or confuses everything 
between 2 # as a variable name instead of simple values).

I'm having quite the brain fart day and so I'm looking for a way to deal 
with this reality - any thoughts?

TIA

Take care

-Bryan

-- 
*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.


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


Re: # in variables

2014-02-07 Thread Bryan Stevenson

BTWI forgot to mention that I control the Adobe AIR application and 
can alter it.  This is all about a comments field in that application 
and I suppose one solution would be to ensure that my special list 
delimiter characters and # are kept out of the comments and this whole 
issue goes away ;-)

but if there is a workable solution I always prefer to not restrict 
user entry in that way.

Cheers

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.
On 14-02-07 08:58 AM, Bryan Stevenson wrote:
 Hey All,

 I've got an issue where an external program written in Adobe AIR is
 passing a pipe delimited list of values to CF via a webservice and that
 list may contain strings like so #94; (a caret symbol)or just a
 straight up # (like someone saying x# of y - short form for x number of
 y).  BTW in Adobe AIR caret symbols in the data values in the list are
 being replaced with #94; because the caret is a special character in
 the pipe delimited list (it's used as a sub-list delimiter).

 CF chokes on the single pound in the variable (or confuses everything
 between 2 # as a variable name instead of simple values).

 I'm having quite the brain fart day and so I'm looking for a way to deal
 with this reality - any thoughts?

 TIA

 Take care

 -Bryan




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


Re: # in variables

2014-02-07 Thread Bryan Stevenson

Thanks Robsorry I should have mentioned that was the first thing I 
tried (ye old double up the #), but the issue seems to be that when a 
variable arrives on CF's door with a single # in it, CF bombs when 
attempting to run the replace.  Now I did say seemsthe way my day 
has goneI will re-test that to make dang sure ;-)

Cheers

On 14-02-07 09:08 AM, Rob Parkhill wrote:
 Run a Replace on the string of data, and change the single # to a double ##
 that then CF would process as a single one?



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


Re: # in variables

2014-02-07 Thread Bryan Stevenson

Thanks Rob/Russstarting to think I will either do as you both 
suggested and replace # with ## in the AIR app or do as I also mentioned 
and not allow the few characters I'd have issues with (most users don't 
need ~,|,^, or # in comments# being the most likely, but they can 
use No. or Num or Number or pounds or lbs as acceptable 
replacements).

Sometimes you just have to back away one step from perfect and become 
practical ;-)

Cheers

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.
On 14-02-07 09:28 AM, Rob Parkhill wrote:
 I thought the #'s were inside the list.  If not and you control the AIR
 app, then just add the replace on the other end, as Russ suggested.


 On Fri, Feb 7, 2014 at 12:20 PM, Bryan Stevenson 
 br...@electricedgesystems.com wrote:

 Thanks Robsorry I should have mentioned that was the first thing I
 tried (ye old double up the #), but the issue seems to be that when a
 variable arrives on CF's door with a single # in it, CF bombs when
 attempting to run the replace.  Now I did say seemsthe way my day
 has goneI will re-test that to make dang sure ;-)

 Cheers

 On 14-02-07 09:08 AM, Rob Parkhill wrote:
 Run a Replace on the string of data, and change the single # to a double
 ##
 that then CF would process as a single one?



 

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


Re: # in variables

2014-02-07 Thread Bryan Stevenson

Hi All,

Thanks for the additional ideas and requests for clarification - I'm 
stopping this by not allowing a few special characters in the comments...

That said

CF appears to error out when it receives the string of data that 
contains single # or two # separated by string text being confused as a 
CF variable.  It errors out when attempting to run a replace() on the 
entire received string (again I need to double check that is in fact 
what I am seeing).

There is no time that I use eval() on the received data - no worries on 
security issues as was mentioned.

I decided to not allow these few characters because the chance of them 
being used in the context of the application is VERY slimand for the 
one character (#) that has a greater chance of being used, there are 
acceptable alternatives to the use of #. This comments field is 
optional and rarely usedfurther lessening the chances of these 
special characters being entered - just not the hill to die on ;-)

Code is already changed - compiling now ;-)

Have a great weekend everyone - thanks again!

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.


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


Re: Hosting... Again

2014-01-13 Thread Bryan Stevenson

+1 for Viviotech as well for the same reasons - and they have a good 
sense of humor too! ;-)

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.
On 14-01-13 07:02 AM, Jon Clausen wrote:
 +1 for Viviotech. I've never had anything but excellent support and 
 turnaround times from them.

 I've heard some great things about Edge Web Hosting, too, but never had a 
 reason to switch from Viviotech.



 On Jan 10, 2014, at 8:22 AM, Robert Harrison rob...@austin-williams.com 
 wrote:

 Hi All,

 I've got a lot of large CF sites I have to move because my host is not up to 
 what we've grown to be.  Love the guy and been with him for years, but now I 
 have to go.

 I've asked this before (in October), but now that I'm no longer in denial 
 I'm looking for CF hosting recommendations again.  I have the previous 
 recommendations which I'm listing below.

 If anyone has comments about any of the hosts below, or better 
 recommendations, please provide your feedback.  I'm about to move a boatload 
 of serous sites.

 So far, I've gotten recommendations for:
 Hostek
 Viviotech
 CrystalTech
 http://www.kickassvps.com/
 Please let me know if you have additional recommendations or feedback on 
 these hosts.

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


Re: TEST IGNORE (2)

2013-12-02 Thread Bryan Stevenson

YepI think I joined in the late 90sprobably 98

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.
On 13-11-27 03:28 AM, Steve 'Cutter' Blades wrote:
 No, it's been around longer than ten years. I've been lurking around in
 here since at least 2000 (if not a little earlier...)

 Steve 'Cutter' Blades
 Adobe Community Professional
 Adobe Certified Expert
 Advanced Macromedia ColdFusion MX 7 Developer
 
 http://cutterscrossing.com


 Co-Author Learning Ext JS 3.2 Packt Publishing 2010
 https://www.packtpub.com/learning-ext-js-3-2-for-building-dynamic-desktop-style-user-interfaces/book

 The best way to predict the future is to help create it

 On 11/27/2013 4:59 AM, Adam Cameron wrote:
 I've been monitoring it for over a year, and have been a member for
 about... perhaps not ten years (because I doubt it's been around that long,
 but for ages). I have just seldom had need to reply, and had not noticed
 what few replies I had made had disappeared into the ether.

 But I seem to have fixed the disconnect between my email address and what
 HoF thought my email address was (PEBCAK on my part).

 That said, yesterday's performance put me off a bit.



 

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


Re: Sort of OT

2013-10-24 Thread Bryan Stevenson

Owner of company that primarily uses CF - also the technical leadso 
user as well

Cheers

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.
On 13-10-23 07:22 PM, Ben Conner wrote:
 Hi,

 Just curious on the makeup of the list participants...are we mainly employees 
 of
 companies using CF or are there any hosting companies/ISPs in the group?

 --Ben




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


Re: Hosting

2013-10-21 Thread Bryan Stevenson

+ lots and lots and lots - love 'em!

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.
On 13-10-21 06:15 AM, Matt Quackenbush wrote:
 http://viviotech.net

 Hands down the best CFML host.
 On Oct 21, 2013 8:08 AM, Robert Harrison rob...@austin-williams.com
 wrote:

 I know this has been asked 100 times before, but it looks like I need a
 new cf hosts that can host enterprise level sites.  Any recommendations?

 I've have gone to the archives but the HOF site is down.


 Robert Harrison
 Director of Interactive Services

 Austin  Williams
 Advertising I Branding I Digital I Direct
 125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788
 T 631.231.6600 X 119   F 631.434.7022
 http://www.austin-williams.com

 Blog:  http://www.austin-williams.com/blog
 Twitter:  http://www.twitter.com/austin_


 

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


Re: Need ColdFusion Developer that doesn't suck for 4-mo gig in Salem, Oregon

2013-10-03 Thread Bryan Stevenson

Suggestion:

Rob - don't call a developer lame no matter how lame they are - makes 
you look like a douchebag and doesn't make people want to get involved

Phillip: If you are hiding behind a fake name - stop it...makes you look 
like you have something to hide - if you a have something liable to say 
about a  past contract - keep it to yourself - saying contact me off 
list makes you look like a disgruntled ex-contractor that wants the last 
word - doesn't help you a  bit

Now please take this childish crap elsewhere - you are both wrong

Thanks!


*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.
On 13-10-03 11:56 AM, RobG wrote:
 Hi... Phil -- yeah I remember you.  We worked together very briefly and
 walked past each other in the hall pretty much daily.

 Before you bag on this job, let me point out that this isn't for the
 project you were on; we have another contractor on that.  And I'm just a
 contractor too.

 Sure this place isn't perfect.  It's State Government.  But ya know, this
 is one of the better teams I've worked on in the 3-4 contracts I've had
 with the state.  We happen to have a pretty good team right now of 3-4
 people and need somebody else who can write decent code and not just talk a
 good game.

 And btw -- I've seen your code.  I'll do you the favor of not making public
 comments about it, just as I won't post your real name since you like to
 use your alias here, as many others seem to do as well.

 All I'm trying to do is find somebody halfway decent so we can get this job
 done.

 Rob




 On Thu, Oct 3, 2013 at 11:29 AM, Phillip Vector
 vec...@mostdeadlygame.comwrote:

 I used to be one of the developers for this project (No, I wasn't the lame
 developer). Contact me off list if you want the lowdown on this beauty.


 On Thu, Oct 3, 2013 at 11:26 AM, RobG sled...@gmail.com wrote:

 These are the rough details:

 We just cut another lame developer; we need a decent one this time.  This
 will backfill the previous dev's contract, approximately 4 months
 remaining.  It's working for DHS on a healthcare-related application.

 I'm not sure what the pay is, but I'll admit it probably won't be great;
 $30-40 hr W-2?  Not really sure.  It might be more, but I honestly don't
 know... they won't give me those kinds of details.

 The upside:  Salem is a cute little town with a very low cost of living,
 only an hour south of Portland.

 Please reply to me privately and I can put you in touch with the guy who
 can get you an interview.

 Rob




 

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


Re: cf source code bogarted

2013-10-03 Thread Bryan Stevenson

thoughts.too soon to comment - let them investigate and chose their 
desired spin - then let the mob have it's turn tearing apart the spin - 
by then we should be getting close to the truth and the impact

No I'm not cynical at all - just experienced ;-)

Cheers!

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.
On 13-10-03 02:54 PM, John Lyons wrote:
 http://krebsonsecurity.com/2013/10/adobe-to-announce-source-code-customer-data-breach/?utm_source=feedburnerutm_medium=feedutm_campaign=Feed%3A+KrebsOnSecurity+%28Krebs+on+Security%29


 thoughts?





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


Re: cf source code bogarted

2013-10-03 Thread Bryan Stevenson

LOLnice!

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.
On 13-10-03 03:01 PM, John Lyons wrote:
 Excellent time to open source, no?

 On Thursday, October 3, 2013, Justin Scott wrote:

 It's not a question of 'if', but 'when'.  -Ancient Security Proverb


 On Thu, Oct 3, 2013 at 5:54 PM, John Lyons 
 tyrsbl...@gmail.comjavascript:;
 wrote:



 http://krebsonsecurity.com/2013/10/adobe-to-announce-source-code-customer-data-breach/?utm_source=feedburnerutm_medium=feedutm_campaign=Feed%3A+KrebsOnSecurity+%28Krebs+on+Security%29

 thoughts?


 --
 Sent from Gmail Mobile




 

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


Re: cflocation and long urls

2013-08-27 Thread Bryan Stevenson

Well just remember that copying and pasting often selects extra 
characters (like blanks either side of the string)and I'm mentioning 
this because Rob you have not said explicitly that you did check for 
thisjust being thorough ;-)

If you've already made sure the values are trimmed and each character is 
indeed IDENTICAL, then move on

Cheers

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.
On 13-08-27 03:48 PM, Rob Voyle wrote:
 Hi Ray and Dave

 If it were a length issue then it wouldn't work if I just paste it in from the
 database.
 Also its not an error in the string as you suggest Dave. I have both copied it
 straight from the database and then copied it from a cfm page where the
 database query is being presented. Both work fine. Its just the cflocation 
 that is
 not working.Using CF9 if that matters.

 Rob


 I have a long encrypted url stored in a database:

 the cgi.query_string is something like

 YJShGG8kxBWgJKOlo2z4oTM8jEanxnGNBzw+QBQw8JBtuiQ8Oyn6tc6qmbd+E7W
 vcbfncSF/pq2ttDOdegKnxA==



 

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


Re: Vivio Down?

2013-06-20 Thread Bryan Stevenson

Yep...glitched our site with them as well - back now - downtime was 
maybe 5 minutes

*Bryan Stevenson*B.Comm.
President  CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.
On 13-06-20 01:36 PM, Wil Genovese wrote:
 Yes - I just lost a few client sites too



 Wil Genovese
 Sr. Web Application Developer/
 Systems Administrator
 CF Webtools
 www.cfwebtools.com

 wilg...@trunkful.com
 www.trunkful.com

 On Jun 20, 2013, at 3:35 PM, Josh Nathanson joshnathan...@gmail.com wrote:

 Anyone here host on Viviotech?  My site's down and their main website isn't
 responding.

 -- Josh



 

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


Re: Short Question? CFOUTPUT converting quot; to

2013-04-30 Thread Bryan Stevenson

My guess would be that the dump ends up with doubled double quotes and 
that is throwing something off

if FORM.tex = my string
then your dump is cfdump var=mystring

As you may know, double quotes in say form input field values can cause 
tags to break unless you wrap the value in something like 
htmlEditFormat() - so based on seeing that happen I'm assuming something 
similar is going on with your dump tag.

shot in the dark - hope it helps

Cheers

*Bryan Stevenson*B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.
On 13-04-30 12:44 PM, Robert Harrison wrote:
 So, I found a work around, but does anyone know why these would give me 
 different values?

 cfdump var=#form.text#
... the value is quot;mystringquot;
 cfoutput#form.text#/cfoutput  
  ... the value is mystring

 Why is CFOUTPUT converting the value quot; to   on its own?


 Robert Harrison
 Director of Interactive Services

 Austin  Williams
 Advertising I Branding I Digital I Direct
 125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788
 T 631.231.6600 X 119   F 631.434.7022
 http://www.austin-williams.com

 Blog:  http://www.austin-williams.com/blog
 Twitter:  http://www.twitter.com/austin_

 

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


Re: CF running out of steam

2013-03-13 Thread Bryan Stevenson

+ 1

*Bryan Stevenson*B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com
web: www.electricedgesystems.com http://www.electricedgesystems.com 
and www.fisheryfacts.com http://www.fisheryfacts.com



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.
On 13-03-13 02:36 PM, =?ISO-8859-1?Q?Claude_Schn=E9egans wrote:
   Maybe they would just Google it.

 Google is a good tool but not an excuse for having a poor home page.



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


Re: SOT: jquery hide

2012-12-16 Thread Bryan Stevenson

That is exactly what the $(document).ready(function () is for ;-)

When the DOM is loaded - do this stuff to it

Cheers

On Sun, 2012-12-16 at 13:23 -0600, John M Bliss wrote:

 This seems to work but looks clunky to me. Better solution(s)?
 
 .mymenuclass {
 visibility: hidden;
 }
 
 head
 script
 $(document).ready(function () {
 $( #mymenu ).hide();
 $( #mymenu ).css(visibility, visible);
 });
 /script
 /head
 
 
 On Sun, Dec 16, 2012 at 1:09 PM, John M Bliss bliss.j...@gmail.com wrote:
 
  Hi! I'm using jquery to show/hide div containing primary nav. The problem
  is that, on heavier pages, the code below does not perform the initial,
  ready hide fast enough so you can see the nav flash on before it's
  hidden. What's the best way to address this issue?
 
  head
  script
  $(document).ready(function () {
  $( #mymenu ).hide();
   });
  /script
  /head
 
  div id=mymenu class=mymenuclass onmouseover=$( '#mymenu' ).show();
  onmouseout=$( '#mymenu' ).hide();
  the menu
  /div
 
  --
  John Bliss - http://about.me/jbliss
 
 
 
 


-- 
Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc. - makers of FACTS™
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com
web: www.electricedgesystems.com and www.fisheryfacts.com 




Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments.



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


Re: Can this be improved

2012-12-03 Thread Bryan Stevenson

Hey All,

I'm curious as to what is behind statements like Cameron's (not picking
on you Cameron.just a good example of what I'm talking about)

ORM, on the other hand, makes your code WAY WAY WAY more portable, and
(once you are past the learning curve) much faster to do development and
easier to maintain.

So what is it about ORM that makes this WAY WAY WAY better - defining
better along the way of course ;-)

I'm asking because EVERY coding efficiency anything I've ever tried
(i.e. Ruby on Rails) turned out to be good to a point and then you're
painted into a corner needing good old fashioned custom coding to solve
the problem.

Why is ORM (or ORM with CF) the magic bullet?  Simple real life example?

Thanks in advance folks
-- 
Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc. - makers of FACTS™
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com
web: www.electricedgesystems.com and www.fisheryfacts.com 




Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments.



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


Re: Can this be improved

2012-12-03 Thread Bryan Stevenson

Thanks Russ.in my world that is not an issueand I'll stay custom
if that's the only benefit.

I can re-write T-SQL to PL-SQL in my sleep, but the only place I use
PL-SQL is for custom system dev clientsand we are mostly moved to a
product based company where our DBs of choice are T-SQL based (thus
highly portable to other T-SQL based DBs should the need arise).

Thanks for the concrete example Russmuch appreciated.



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


Re: Can this be improved

2012-12-03 Thread Bryan Stevenson

Thanks Cameronand sorry on the portable/better goof ;-)

I'd say from what you and Russ have said that there is no urgent need
for me to experience the learning curve.  I'll swing back and take a
peek so I am better informed and give it  a fair kick at the can ;-)

Cheers

On Mon, 2012-12-03 at 14:04 -0500, Cameron Childress wrote:

 On Mon, Dec 3, 2012 at 11:36 AM, Bryan Stevenson 
 br...@electricedgesystems.com wrote:
 
  So what is it about ORM that makes this WAY WAY WAY better
 
 
 I didn't say better, actually, I said portable
 
 
  Why is ORM (or ORM with CF) the magic bullet?  Simple real life example?
 
 
 There is no such thing as a magic bullet. This is the reason we all are
 employed. I've used ORM in CF for a number of projects, and have
 used/explored maybe 50% of it's functionality so far. I am by no means an
 expert, however in my own personal experience..
 
 ORM is good at:
 - Hibernate makes CRUD drop dead simple.
 - Your code will be shorter, more consistant
 - Changes are easier to make in one central place
 - You can even have Hibernate build your tables for you! Including
 relationships and indexes!
 - HQL Will let you drop down to SQL when the ORM entities don't seem to
 be doing the job alone.
 
 ORM is bad at:
 - Learning curve. The basics are easy. Adding complexity adds er...
 complexity.
 - Errors that it throws are sometimes misleading and semi-nonsensical
 (impacts learning curve)
 - Things like Self-Joins and more advances functionality can be difficult
 to figure out.
 
 Like any tool in your programming toolbox, you have to know when to use it
 and when not to.
 
 -Cameron
 


-- 
Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc. - makers of FACTS™
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com
web: www.electricedgesystems.com and www.fisheryfacts.com 




Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments.



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


Re: RES: Fw: Atlanta area developer announcing availability for full-time or contract work

2012-10-03 Thread Bryan Stevenson

because you are subscribed to a mailing list about ColdFusion jobs...

On Wed, 2012-10-03 at 10:57 +0100, Carlos Costa wrote:

 hello
 Why I receive your emails??
 
 Cc
 
 -Mensagem original-
 De: Andrea Skinner [mailto:askin...@aptude.com] 
 Enviada em: Wednesday, October 03, 2012 5:01 AM
 Para: cf-jobs-talk
 Assunto: RE: Fw: Atlanta area developer announcing availability for
 full-time or contract work
 
 
 Lets try to be professionals. Leave this garbage for the social hour at the
 local pub and stop airing your dirty laundry.Eric Roberts
 ow...@threeravensconsulting.com wrote:
 LOL...I was thinking the same thing.  Didn't he just post a few weeks ago
 about not wanting to do this anymore?  
 
 
 Three Ravens Consulting
 Eric Roberts
 Owner/Developer
 ow...@threeravensconsulting.com
 tel: 630-486-5255
 fax: 630-310-8531
 http://www.threeravensconsulting.com
 
 
 -Original Message-
 From: Brian Thornton [mailto:br...@cfdeveloper.com]
 Sent: Tuesday, October 02, 2012 10:36 PM
 To: cf-jobs-talk
 Subject: Re: Fw: Atlanta area developer announcing availability for
 full-time or contract work
 
 
 +1
 On Oct 2, 2012 11:26 PM, RobG snarfb...@yahoo.com wrote:
 
 
  For some reason this didn't make it to this list; re-sending.
  
 
  I've been resisting posting this for a long time, but no more.  How do 
  I put this gently?  GO THE FUCK AWAY.  You have burned every bridge 
  you ever had on this list with your repeated tantrums, retirements, 
  un-retirements, calling employers and other developers out, etc., whether
 founded or not.
 
 
 
  Smart people figured out years ago that you don't get jobs here by 
  posting your availability; you reply to jobs posted here by other 
  people.  I've had no shortage of work from this list, but you have to
 answer OTHER postings.
 
  Anybody paying any attention on this list (and trust me, there are 
  lots of
  'em) have seen your posts, and remember you very well.  Your best bet
  is to just go the hell away.  Don't post here again.  If you still 
  want to work as a ColdFusion developer, try actually looking for jobs 
  instead of waiting for them to come to you.
 
  End of rant.  Cross-posting to cf-jobs-talk.  Apologies to the rest of 
  the list.
 
 
 
 
  
   From: Michael Firth nihon2...@gmail.com
  To: cf-jobs cf-j...@houseoffusion.com
  Sent: Tuesday, October 2, 2012 11:23 AM
  Subject: Atlanta area developer announcing availability for full-time 
  or contract work
 
 
  I am a software developer based out of the Atlanta area and I would 
  like to announce my desire to obtain either full-time or on-going 
  contract worker with a dynamic company.  If you are located within the 
  Atlanta metro area, I can easily do it on-site.  If not, then I would 
  only be able to on a remote basis.  I can, however,  attend on-site 
  meetings and/or training for a period lasting no longer than a week.
  My rates are very reasonable and I can start immediately provided all 
  paperwork is signed and provided for.  A resume is available upon request.
  I welcome all inquiries, however, I will only be able to respond to 
  those with serious offers of work.  I will also prioritize direct 
  hiring companies over recruiters.  I am very serious about what I do 
  and sometimes can be a little too passionate about it.  If I have 
  wronged you in the past, I offer my apologies.  If  you don't like me, 
  that is your opinion and perhaps I deserve it to some extent.  And if 
  I have spoken bad about your company I also apologize.  I will not 
  rehash history here, I only seek to turn over a new leaf and hope 
  someone can afford me the opportunity.
 
  Enough blabber and here are some general items: (please note my resume 
  also covers this in greater detail)
 
  Languages  Technologies
 
  ColdFusion (4.5, 5, MX, 8, 9)  (I am still in the process of learning 
  10) C# and ASP.Net (2.0, 3.5, and 4.0) (also includes ASP.Net AJAX 
  Toolkit) HTML 4  5 JavaScript  JQuery XML CSS ColdFusion Builder 1  
  2 Dreamweaver Visual Studio (2003, 2005, 2008, 2010) ColdFusion 
  Administrator (see versions listed by ColdFusion above)
 
  Some Career Highlights.
 
  - The design and development of a .Net application in C# for a leading 
  finance company in Smyrna, Georgia that  allowed them to properly 
  evaluate and enter in information for their Risk  Assessment section, 
  while at the same time enhanced their SSRS capability tenfold.
  - Designed  Developed International E-Commerce site for European 
  based client using ColdFusion and SQL Server (value-added tax)
  - Primary SQL Server Developer for the design  development of tables, 
  stored procedures, and triggers for the state of Indiana's adult 
  education program.
  - Served as a SQL Server Database Administrator for educational 
  software company in Altanta, Georgia 

Re: I guess it was bound to happen

2012-08-10 Thread Bryan Stevenson

simply put sensitive files outside the web root and have CF pull them as
needed - no spider is going to index inaccessible files ;-)

my 2 cents in the 20 seconds I thought about this HTH ;-)

...and I'm sure you'll get loads of other options - this one to me is
simple and solid

Cheers

On Fri, 2012-08-10 at 14:02 -0400, Robert Rhodes wrote:

 Hello everyone.
 
 I have a site where a password is required to access the site.  On pages in
 the site, there are links to download files.  I set the appropriate meta
 tags and robots.txt to tell the search engines to not spyder the site.
 
 Though the site pages are not in google, the files are showing up.  that's
 bad.
 
 It's a lot of files, so before I code up a solution to access all the
 through logic so I can control the permissions, is there some way to
 protect a directory so that files can't be downloaded without being logged
 in on the site?
 
 My guess is the answer is no, but I thought I would ask.
 
 -RR
 
 
 

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


New line character for SMS sent via Clickatell HTTP API

2012-07-09 Thread Bryan Stevenson

Hi All,

I have tried MANY characters to force a new line in a text message sent
via Clickatell's HTTP API using CFHTTP

Their docs say to use 0%A which is of course the urlEncodedFormat() for
a new line

...when I send that it just shows in the message as a string (when
viewing on Android phone).have tried br tagshave tried \r
\n.have tried HEXalways just show as strings

...and there are many more opinions online and in Clickatell's docs

Has anyone out there successfully done this?  If so, please share some
code ;-)

Thanks in advance

Cheers

-- 
Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc. - makers of FACTS™
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com
web: www.electricedgesystems.com and www.fisheryfacts.com 




Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments.



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


CF upgrade - is it possible?

2012-06-20 Thread Bryan Stevenson

Hey All,

We've got CF 9 developer edition on our DEV server and a rented copy on
our PROD server.

We need to remove the IP restriction on our DEV server and we own CF 8.

I see an upgrade path offered to upgrade from 8 to 10

Question:
Can a CF 10 serial be used to activate 9?

I REALLY don't have time to install CF 10 on our DEV server right
now. ;-)

Thanks

-- 
Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc. - makers of FACTS™
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com
web: www.electricedgesystems.com and www.fisheryfacts.com 




Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments.



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


Re: CF upgrade - is it possible?

2012-06-20 Thread Bryan Stevenson

Thanks Mike - found that out the hard way on the phone - but very good
to have!

Sadly it means the CF 10 serial can't be used for CF 10...only 9

Cheers

On Wed, 2012-06-20 at 12:41 -0400, Mike Chabot wrote:

 If you have a CF10 license you can get a CF9 serial number by contacting
 Adobe customer support. They might charge you $20.
 
 -Mike Chabot

-- 
Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc. - makers of FACTS™
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com
web: www.electricedgesystems.com and www.fisheryfacts.com 




Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments.



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


Re: Holy sweet mother of Jeremy Allaire...

2012-05-16 Thread Bryan Stevenson

and yet Adobe can't be bothered to e-mail it's paid customers of
previous versions to tell them - sad and even sadderthis is par for
the course.

-- 


Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: br...@electricedgesystems.com
web: www.electricedgesystems.com
 
Notice:
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments.
Please consider the environment before printing this e-mail



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


SMS aggregators

2012-03-29 Thread Bryan Stevenson

Hi All,

I may have asked this of the list some months ago, but here it is
again

Can anyone recommend SMS agregators in the US?

I'm building a CF 9 based SMS app and need to check out some pricing and
options.

This app will take messages from upwards of 5000-5500 users (unique
phone numbers)

The pilot may only have 100 users all on the same carrier, but
production could have many possible carriers.

Thanks in advance

Cheers
-- 


Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: br...@electricedgesystems.com
web: www.electricedgesystems.com
 
Notice:
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments.
Please consider the environment before printing this e-mail



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


Re: Remove all CF comments

2012-02-29 Thread Bryan Stevenson

Bingo Steve...well said!

On Wed, 2012-02-29 at 08:25 -0500, Steve 'Cutter' Blades wrote:

 Beautiful sentiment, *if* you didn't inherit a 3500 template legacy 
 application originally written on CF 4.
 
 Both (comments and TDD) have their place. Fact is, what is simple and 
 clear and second nature for me is Greek to a noob, and I train those all 
 of the time. Comments are for those who come behind, remembering that 
 not all of them share my level of skill (or my preconceptions of what is 
 right and wrong to do).
 
 Steve 'Cutter' Blades
 Adobe Community Professional
 Adobe Certified Expert
 Advanced Macromedia ColdFusion MX 7 Developer
 
 http://cutterscrossing.com
 
 
 Co-Author Learning Ext JS 3.2 Packt Publishing 2010
 https://www.packtpub.com/learning-ext-js-3-2-for-building-dynamic-desktop-style-user-interfaces/book



-- 


Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: br...@electricedgesystems.com
web: www.electricedgesystems.com
 
Notice:
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments.
Please consider the environment before printing this e-mail



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


Re: Remove all CF comments

2012-02-28 Thread Bryan Stevenson

tabs inserted as 2 spaces ;-)

On Tue, 2012-02-28 at 18:45 -0600, Michael Stemle wrote:

 We are in disagreement. Some of us actually use comments as a way of planning 
 and maintaining our code. This is coming across as religious belief or 
 trolling, not actual development or engineering. If we continue I'm virtually 
 certain we will break out into an argument on tabs versus spaces for 
 indentation. 
 
 --
 ~ Mike Stemle, Jr.


-- 


Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: br...@electricedgesystems.com
web: www.electricedgesystems.com
 
Notice:
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments.
Please consider the environment before printing this e-mail



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


Re: Password to Oracle datasource keep getting reset

2012-02-15 Thread Bryan Stevenson

Just an outside chance.

At one point we experienced odd behaviour similar to this and it was due
to CF Admin settings being archived on one machine and then restored on
new machines.  It seemed that unless you manually went and re-saved the
settings after restoration, the settings would intermittently do weird
things like you've described.

A shot in the dark, but sometimes those are magic ;-)

Cheers


On Wed, 2012-02-15 at 05:52 -0500, Nathan Moore wrote:

 Has anyone experienced or can advise on this one?
 
 It would appear that around about every 6 weeks the development version of an 
 intranet I maintain goes down with a DSN username/password error.  I verify 
 the datasource in the CF admin and sure enough the password is somehow no 
 longer valid.
 
 I refer back to the password I have manually recorded, reenter, verify it and 
 it's fine. 
 
 I do not experience the same problem on the test and live environments 
 despite all three evironments being identical in terms of CF version, Oracle 
 10g DB and codebase.
 
 Any advise would be much appreciated.
 
 Thanks in advance. 
 
 

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


Re: anyone using ckeditor? I will PAY you for your help!

2012-01-11 Thread Bryan Stevenson

On Wed, 2012-01-11 at 10:03 -0500, Torrent Girl wrote:

 When you say change it to edit mode what do you mean? Do you mean hit View 
 Source?
 
 If so that is what I am doing and where I see the code distorted.


He means the editor must be set to HTML mode in order to enter and
change text that contains HTML.

When in that mode (set at the CK editor  tag itself as an
attributenot in a config file if memory serves) it will escape 
and  and other such escapements so that when the text is displayed in
the edoitor it doesn't cause problems.

If you are viewing source on the page to assess what the editor is going
to save to the DB, you are most likely see crap as you are
reporting.but that crap should display properly in the editor when
pulled from the DB and shown.

It really would be best to:

1) show us what you type

2) explain the steps to re-create what you are thinking is wrong (i.e.
then saved the contents to the database.then pulled fom DB and
displayed in editor.when complete I saw XYZ and it is wrong because
of ABC being out of place).

If we had the end to end steps we may be better able to help.

Best of luck

Cheers

-- 


Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: br...@electricedgesystems.com
web: www.electricedgesystems.com
 
Notice:
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments.
Please consider the environment before printing this e-mail



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


Re: anyone using ckeditor? I will PAY you for your help!

2012-01-11 Thread Bryan Stevenson

On Wed, 2012-01-11 at 12:55 -0500, Torrent Girl wrote:

 How do I do this?
 
 He means the editor must be set to HTML mode in order to enter and change 
 text that contains HTML.
 
 How and where do I set the editor to html mode?


Perhaps I'm confusing CFTEXTAREA that makes use of FCKEditor under the
hood, but there was an attribute for that tag that allowed me to
indicate plain text or HTML.

So CKEditor may handle that in another way.or the CFTEXTAREA tag
needed that attribute so it could behave like a regular text are OR an
HTML editor (and CKEditor is simply always in HTML mode)

Sorry for any confusion in the event there was any ;-)

By your example, yessomething beyond escapement seems to be
happening.  Or perhaps a single point in the text/code you've entered is
not parsing correctly and thus through the whole lot into a tailspin.

Believe meI too hate documentation that doesn't even provide a
friggin example after the explanation!! ;-)

Cheers


-- 


Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: br...@electricedgesystems.com
web: www.electricedgesystems.com
 
Notice:
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments.
Please consider the environment before printing this e-mail



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


Re: list of running cfthreads

2011-12-29 Thread Bryan Stevenson

Things like SeeFusion and other dashboards doand doesn't CF 9 have
something like that bundled in CF Admin??

...been a while since I was thread hunting ;-)

On Thu, 2011-12-29 at 19:47 -0500, Michael Dinowitz wrote:

 Is there a way to view the threads created with cfthread. How many are
 in the queue, how long they've been waiting, etc.
 
 Thanks


-- 


Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: br...@electricedgesystems.com
web: www.electricedgesystems.com
 
Notice:
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments.
Please consider the environment before printing this e-mail



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


One app kills another's session

2011-12-15 Thread Bryan Stevenson

Hey All,

Can't say that I've bumped into this before.

1) 2 apps are involved and both use SESSION vars to store user details
once they login.

2) Both apps are set to setClientCookies in CFAPPLICATION

3) App 1 uses a standard login form where credentials are verified and
the SESSION vars are set if successful

4) App 2 uses Windows Integrated Authentication to grab the user's ID
off the network and use that as part of the authentication process -
when successful...SESSION vars are set as in app 1

5) Both apps have a different name in CFAPPLICATION ;-)

6) both apps reside on the same server running CF 8 against Oracle 10G

Here's what happens on WinXP Pre SP 3 with IE 7:

1) Open new IE7 window and log in to app1

2) Open new IE7 window and log in to app 2

3) Go back to the browser with app 1 and try to navigate through app -
get kicked to session expired screen


This was tested by another user on XP with IE8 and the issue did not
occur.

So I'm pretty sure this is an IE7 issue, but I'm a tad lean on things to
checkany ideas?

TIA

Cheers
-- 


Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: br...@electricedgesystems.com
web: www.electricedgesystems.com
 
Notice:
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments.
Please consider the environment before printing this e-mail



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


Re: One app kills another's session

2011-12-15 Thread Bryan Stevenson

Thannks Pete,

Same domainyes.but you speak of a recent hotfixwell this is
CF 8 ;-)

Thankfully I have been told to shelve this issue for other major
priorities, but thanks for the tips...I may need to come back to this at
some point.

Cheers

On Thu, 2011-12-15 at 14:52 -0500, Pete Freitag wrote:

 Bryan,
 
 Are these apps running on the same domain or different domains, if
 they are on the same domain then you will need to specify the path in
 your session cookies so they don't invalidate each other (this
 relatively new behavior due to the session fixation security hotfix
 APSB11-04 released in Feb).
 
 Also if you are experiencing a cookie problem on one browser but not
 another make sure you have cleared cookies first.
 
 --
 Pete Freitag - Adobe Community Professional
 http://foundeo.com/ - ColdFusion Consulting  Products
 http://petefreitag.com/ - My Blog
 http://hackmycf.com - Is your ColdFusion Server Secure?
 
 
 
 
 On Thu, Dec 15, 2011 at 12:22 PM, Bryan Stevenson
 br...@electricedgesystems.com wrote:
 
  Hey All,
 
  Can't say that I've bumped into this before.
 
  1) 2 apps are involved and both use SESSION vars to store user details
  once they login.
 
  2) Both apps are set to setClientCookies in CFAPPLICATION
 
  3) App 1 uses a standard login form where credentials are verified and
  the SESSION vars are set if successful
 
  4) App 2 uses Windows Integrated Authentication to grab the user's ID
  off the network and use that as part of the authentication process -
  when successful...SESSION vars are set as in app 1
 
  5) Both apps have a different name in CFAPPLICATION ;-)
 
  6) both apps reside on the same server running CF 8 against Oracle 10G
 
  Here's what happens on WinXP Pre SP 3 with IE 7:
  
  1) Open new IE7 window and log in to app1
 
  2) Open new IE7 window and log in to app 2
 
  3) Go back to the browser with app 1 and try to navigate through app -
  get kicked to session expired screen
  
 
  This was tested by another user on XP with IE8 and the issue did not
  occur.
 
  So I'm pretty sure this is an IE7 issue, but I'm a tad lean on things to
  checkany ideas?
 
  TIA
 
  Cheers
  --
 
 
  Bryan Stevenson B.Comm.
  VP  Director of E-Commerce Development
  Electric Edge Systems Group Inc.
  phone: 250.480.0642
  fax: 250.480.1264
  cell: 250.920.8830
  e-mail: br...@electricedgesystems.com
  web: www.electricedgesystems.com
 
  Notice:
  This message, including any attachments, is confidential and may contain
  information that is privileged or exempt from disclosure. It is intended
  only for the person to whom it is addressed unless expressly authorized
  otherwise by the sender. If you are not an authorized recipient, please
  notify the sender immediately and permanently destroy all copies of this
  message and attachments.
  Please consider the environment before printing this e-mail
 
 
 
  
 
 

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


RE: One app kills another's session

2011-12-15 Thread Bryan Stevenson

Thanks Nick.

I can say that this does not happen in IE 8 using default settings, but
it is 100% consistent and reproduceable in IE7 with browser default
settings.

So at least it is not anything to do with odd browser settings

The client will be tossing IE7 as their standard when they migrate to
Win7 with IE 9 or 10and this issue has only been reported by a
single super userand he's gonna install IE8 ;-)

Cheers

On Thu, 2011-12-15 at 14:03 -0800, Nick Gleason wrote:

 Hi Folks,
 
 This sounds a little like a sporadic but very frustrating issue that we have
 experienced.  It is IE only and only with some users (we haven't been able
 to re-create it in house).  We host multiple stand alone versions of our CMS
 / CRM application per server using CF 9 Professional which is pretty well
 patched. The behavior seems to be that sessions mysteriously reset.  In some
 cases we have seen this with each page request.  In some cases it seems to
 kick in when a page is forced into https (or our related use of wddx to
 store client variables).  In some cases it seems to clear up when the user
 clears the cache in IE.
 
 We had speculated that it might be related to security settings in IE or
 perhaps the way that IE handles caching, but we have yet to find a silver
 bullet(s).
 
 It has been very difficult to track down so we're interested in any
 information.  I've searched a bit for info regarding the session fixation
 patch that Pete mentioned, but any more information about how that plays out
 in CF apps would be greatly appreciated.
 
 Thanks in advance,
 
 Nick
 
  -Original Message-
  From: Pete Freitag [mailto:p...@foundeo.com]
  Sent: Thursday, December 15, 2011 11:53 AM
  To: cf-talk
  Subject: Re: One app kills another's session
  
  
  Bryan,
  
  Are these apps running on the same domain or different domains, if they
  are on the same domain then you will need to specify the path in your
  session cookies so they don't invalidate each other (this relatively
  new behavior due to the session fixation security hotfix
  APSB11-04 released in Feb).
  
  Also if you are experiencing a cookie problem on one browser but not
  another make sure you have cleared cookies first.
  
  --
  Pete Freitag - Adobe Community Professional http://foundeo.com/ -
  ColdFusion Consulting  Products http://petefreitag.com/ - My Blog
  http://hackmycf.com - Is your ColdFusion Server Secure?
  
  
  
  
  On Thu, Dec 15, 2011 at 12:22 PM, Bryan Stevenson
  br...@electricedgesystems.com wrote:
  
   Hey All,
  
   Can't say that I've bumped into this before.
  
   1) 2 apps are involved and both use SESSION vars to store user
  details
   once they login.
  
   2) Both apps are set to setClientCookies in CFAPPLICATION
  
   3) App 1 uses a standard login form where credentials are verified
  and
   the SESSION vars are set if successful
  
   4) App 2 uses Windows Integrated Authentication to grab the user's ID
   off the network and use that as part of the authentication process -
   when successful...SESSION vars are set as in app 1
  
   5) Both apps have a different name in CFAPPLICATION ;-)
  
   6) both apps reside on the same server running CF 8 against Oracle
  10G
  
   Here's what happens on WinXP Pre SP 3 with IE 7:
   -
  -
   --
   1) Open new IE7 window and log in to app1
  
   2) Open new IE7 window and log in to app 2
  
   3) Go back to the browser with app 1 and try to navigate through app
  -
   get kicked to session expired screen
   -
  -
   --
  
   This was tested by another user on XP with IE8 and the issue did not
   occur.
  
   So I'm pretty sure this is an IE7 issue, but I'm a tad lean on things
   to checkany ideas?
  
   TIA
  
   Cheers
   --
  
  
   Bryan Stevenson B.Comm.
   VP  Director of E-Commerce Development Electric Edge Systems Group
   Inc.
   phone: 250.480.0642
   fax: 250.480.1264
   cell: 250.920.8830
   e-mail: br...@electricedgesystems.com
   web: www.electricedgesystems.com
  
   Notice:
   This message, including any attachments, is confidential and may
   contain information that is privileged or exempt from disclosure. It
   is intended only for the person to whom it is addressed unless
   expressly authorized otherwise by the sender. If you are not an
   authorized recipient, please notify the sender immediately and
   permanently destroy all copies of this message and attachments.
   Please consider the environment before printing this e-mail
  
  
  
  
  
  
 
 

~|
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:349177
Subscription: http

Re: One app kills another's session

2011-12-15 Thread Bryan Stevenson

On Thu, 2011-12-15 at 20:16 -0500, Mike Chabot wrote:

 Sometimes switching to J2EE sessions fixes odd session issues. If you
 are able to do this it might fix the problem. J2EE sessions work
 well.


Pretty sure they already are - but I can double checkthanks

 Try doing a site-wide search for the cfapplication tag to make
 sure there is only one in each site. Sometimes there are multiple
 cfapplication tags in a site that people forget about.It could be a
 proxy server or firewall messing with things.

100% none of the above...but thanks

 
 Does only one person see this problem?

Nope...I can reproduceit's a real bug ;-)

 If one person has the problem and someone else logs into that person's
 computer, does the other person have the problem?
 Have the person that sees the problem try a different computer or a
 different browser.
 
 -Mike Chabot



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


Re: Very disappointing statis

2011-12-14 Thread Bryan Stevenson

Amen Mark!

as I tell my staff.come to me with solutionsnot problems

On Thu, 2011-12-15 at 09:34 +1100, Mark Mandel wrote:

 So, what are you going to do to promote ColdFusion more?
 
 No point in complaining about the problem, unless you are going to propose
 and implement some solutions :)
 
 Mark
 
 On Thu, Dec 15, 2011 at 3:02 AM, Robert Harrison rob...@austin-williams.com
  wrote:
 
 
  Very disappointing statistics for ColdFusion market penetration.
 
  http://w3techs.com/technologies/overview/programming_language/all
 
  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
 
  
 
 

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


Re: Adobe Abandons Flex

2011-11-17 Thread Bryan Stevenson

Not the cost of free IE (or that apps only run on IE6 IMHO).

It's the cost of the labour to do the upgrade and then the cost of the
labour to fix all the network installs that crapped out or otherwise
caused users grief.

Major disruption to a large organization has LOTS of cost ;-)

Cheers

On Wed, 2011-11-16 at 17:22 -0800, Maureen wrote:

 This makes no sense to me.  I can understand a business or government
 office being slow to upgrade to new software if cost were involved, but IE
 upgrades are free, and would certainly be more secure and productive.
 
 On Wed, Nov 16, 2011 at 4:14 PM, Dan Crouch stario...@yahoo.com wrote:
 
 
  Just for a frame of reference, the IRS still has almost 80k employees on
  IE6.
 
   You're Fed, and you have IE8? Man, you are lucky...
 
 
 
 

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


Re: Adobe Abandons Flex

2011-11-17 Thread Bryan Stevenson

Try Flex ;-)

On Thu, 2011-11-17 at 11:10 +, mac jordan wrote:

 On Thu, Nov 17, 2011 at 10:21 AM, Russ Michaels r...@michaels.me.uk wrote:
 
  there is usually no reason to worry about cross
  browser compatibility as everyone in an organisation will use the same
  browser,
 
 
 
 [weeps] We are writing a huge intranet app for a client, who has no
 such requirement, so we have to support IE6+, Fireworks, Chrome, Safari.
 There is more time spent on x-browser tweaking than writing CF code ...
 


-- 


Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: br...@electricedgesystems.com
web: www.electricedgesystems.com
 
Notice:
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments.
Please consider the environment before printing this e-mail



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


Re: Which mobile development platform is best?

2011-11-15 Thread Bryan Stevenson

Adobe AIR should fit the bill nicelyand FYI some of your
requirements have nothing to do with the platform

On Tue, 2011-11-15 at 10:22 -0500, ViVO concepts wrote:

 We start developing a mobile application for IOS, Android, BB, Windows, to be 
 available in various app stores. We are wondering which development platforms 
 we should chose based on ease of use, time-to-market, costs, scalability.
 Technical requirements include: geo location detection, integration to 
 databases in cloud, real-time data transfer 
 
 Please let me know your preferences, as this is really a strategic decision. 
 Also, do you know of mobile app developers who can set up a small app as 
 'BETA'?
 
 

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


Re: Adobe Abandons Flex

2011-11-15 Thread Bryan Stevenson

I suggest everyone read the article behind the link Mike posted.

No offence Mike, but you may have paraphrased a little too much there
(or it's my own interpretation) ;-)

I read it as Flexhas NOT been adondonded and will continue on for some
timesome of the Flex SDK engineers will be part of the open source
move

Flash Builder 4.6 will be upgraded to work with new versions of the SDK.

Nice catchy subject thoughgood for trolling and flame warsgot me
to read ;-)

Cheers

On Mon, 2011-11-14 at 15:18 -0500, Mike Chabot wrote:

 Adobe announced this week that they are ending their commitment to
 further Flex development. Flex 4.6 will likely be the last version
 Adobe releases and the Flex SDK engineers will be reassigned to HTML 5
 projects. Future Flex development will come from the open source
 community.
 
 The announcement is here:
 http://blogs.adobe.com/flex/2011/11/your-questions-about-flex.html
 
 A petition asking the Adobe CEO to step down is here:
 http://www.change.org/petitions/adobe-systems-shantanu-narayen-to-step-down-as-ceo
 
 -Mike
 
 

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


Re: Adobe Abandons Flex

2011-11-15 Thread Bryan Stevenson

Everything else you said aside Scottfree does not mean open source

The Flex SDK has been free

Cheers


On Tue, 2011-11-15 at 15:02 -0500, Scott Stewart wrote:

 Hasn't the flex SDK *always* been open source?
 
 I think this last line contradicts your statement
 
 Is Adobe still committed to Flash Builder?
 
 Yes. Flash Builder will continue to be developed and Adobe will work
 to ensure Flex developers can use Flash Builder as their development
 tool with future releases of Flex SDK.
 
 
 
 on a personal note:
 
 Can we all take a step back, grab a deep breath and assess the
 situation in it's entirety before jumping to doomsday conclusions?
 The only thing I've seen that's concrete so far is that Adobe is
 dumping direct development of the Flash plugin for mobile
 environments. Their answer (IMO) wrap your Flash in the AIR SDK.
 
 ColdFusion is still alive and well
 Flex is still alive and well
 Flex Builder is still alive and well
 
 This gets old and we're not winning any converts by being paranoid



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


Re: Adobe Abandons Flex

2011-11-15 Thread Bryan Stevenson

LOL...sorry manwhen the flames are getting ready to riseaccuracy
counts ;-)

On Tue, 2011-11-15 at 15:12 -0500, Scott Stewart wrote:

 picky, picky picky :)
 but yeah your right...


-- 


Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: br...@electricedgesystems.com
web: www.electricedgesystems.com
 
Notice:
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments.
Please consider the environment before printing this e-mail



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


Re: Adobe Abandons Flex

2011-11-15 Thread Bryan Stevenson

I'll always bow to your wisdom Davenever saw that before ;-)

On Tue, 2011-11-15 at 15:45 -0500, Dave Watts wrote:

  Everything else you said aside Scottfree does not mean open source
 
  The Flex SDK has been free
 
 I'm pretty sure it's always been open-source as well. You can
 certainly trace into source code of classes within the Flex class
 library. And the Flex SDK has always been available from here:
 
 http://opensource.adobe.com/wiki/display/flexsdk/Flex+SDK
 
 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/
 http://training.figleaf.com/
 
 Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
 GSA Schedule, and provides the highest caliber vendor-authorized
 instruction at our training centers, online, or onsite.
 
 

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


Re: Adobe Abandons Flex

2011-11-15 Thread Bryan Stevenson

They say they are assigning some Flex SDK engineers to the open source
team...did we read the same announcement??

On Tue, 2011-11-15 at 16:08 -0500, Mike Chabot wrote:

 Open source is a phrase that can have a few interpretations. In this
 case it means Adobe is not going to devote any more company resources
 into future development. I think the outcome will be the same as what
 happened to Spectra, unless the Flex community convinces Adobe to
 change their mind. I would guess that development of Flex is very
 expensive and Adobe was not selling enough licenses of Flash Builder
 to cover the cost of the Flex SDK software engineers.
 
 -Mike
 
 

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


Re: Adobe Abandons Flex

2011-11-15 Thread Bryan Stevenson

exactlythis all seems too soon on Adobe's part

...but learning what's coming is always wise

On Tue, 2011-11-15 at 16:08 -0500, Scott Stewart wrote:

 don't get me wrong, so am I but at the same time the HTML 4 world
 isn't going away anytime soon.. and it still needs to be supported.

-- 


Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: br...@electricedgesystems.com
web: www.electricedgesystems.com
 
Notice:
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments.
Please consider the environment before printing this e-mail



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


Re: Adobe Abandons Flex

2011-11-15 Thread Bryan Stevenson

They updated the announcementmuch better:

http://blogs.adobe.com/flex/2011/11/your-questions-about-flex.html

On Mon, 2011-11-14 at 15:18 -0500, Mike Chabot wrote:

 http://blogs.adobe.com/flex/2011/11/your-questions-about-flex.html

-- 


Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: br...@electricedgesystems.com
web: www.electricedgesystems.com
 
Notice:
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments.
Please consider the environment before printing this e-mail



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


Re: Adobe drops Flsh for mobile devices

2011-11-10 Thread Bryan Stevenson

hear hear Davebeen dying as long as I've been involvedso that's
since January 1998oh yeah that's how I'm going out too ;-)

On Thu, 2011-11-10 at 18:50 -0500, Dave Watts wrote:

  I know I'll be insulted, but the truth must be said: Coldfusion is dying a 
  slow death ...
 
 I just hope that when it's my time to go, my death will be as slow.
 
 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/
 http://training.figleaf.com/
 
 Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
 GSA Schedule, and provides the highest caliber vendor-authorized
 instruction at our training centers, online, or onsite.
 
 

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


RE: Adobe drops Flsh for mobile devices

2011-11-09 Thread Bryan Stevenson

Keep in mind Adobe AIR is still a perfectly valid option for Andriod,
Blackberry, and iOS

On Wed, 2011-11-09 at 14:07 -0500, Rick Faircloth wrote:

 I've always disliked Flash... just too much work for
 too little return. And I made a living for awhile
 working on similar timelines in Adobe Premiere.
 
 Goodbye, Flash! :o)
 
 
 
 -Original Message-
 From: Irvin Gomez [mailto:ir...@pixel69.com] 
 Sent: Wednesday, November 09, 2011 12:14 PM
 To: cf-talk
 Subject: Adobe drops Flsh for mobile devices
 
 
 http://www.google.com/search?q=adobe+flashnum=20hl=ennewwindow=1safe=off
 gbv=2tbm=nwssource=lnttbs=qdr:wsa=Xei=V7O6TomxEeb30gH3w_XdCQved=0CA0Q
 pwUoAwbiw=1920bih=1075 
 
 
 
 

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


RE: Adobe drops Flsh for mobile devices

2011-11-09 Thread Bryan Stevenson

I know Benit is truly amazing how much the media is assumed to be
correct ;-)

Mulder had it right - trust no one (except yourself that is)

Cheers


On Wed, 2011-11-09 at 14:46 -0500, Ben Forta wrote:

 And thank you for making that distinction, Bryan. It's amazing how the
 masses have chosen to ignore that little fact. We're backing away from Flash
 in-browser, but we're still hard at work on Flash for apps.
 
 --- Ben
 
 
 -Original Message-
 From: Bryan Stevenson [mailto:br...@electricedgesystems.com] 
 Sent: Wednesday, November 09, 2011 2:29 PM
 To: cf-talk
 Subject: RE: Adobe drops Flsh for mobile devices
 
 
 Keep in mind Adobe AIR is still a perfectly valid option for Andriod,
 Blackberry, and iOS
 
 On Wed, 2011-11-09 at 14:07 -0500, Rick Faircloth wrote:
 
  I've always disliked Flash... just too much work for too little 
  return. And I made a living for awhile working on similar timelines in 
  Adobe Premiere.
  
  Goodbye, Flash! :o)
  
  
  
  -Original Message-
  From: Irvin Gomez [mailto:ir...@pixel69.com]
  Sent: Wednesday, November 09, 2011 12:14 PM
  To: cf-talk
  Subject: Adobe drops Flsh for mobile devices
  
  
  http://www.google.com/search?q=adobe+flashnum=20hl=ennewwindow=1sa
  fe=off 
  gbv=2tbm=nwssource=lnttbs=qdr:wsa=Xei=V7O6TomxEeb30gH3w_XdCQved
  =0CA0Q
  pwUoAwbiw=1920bih=1075
  
  
  
  
 
 
 
 

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


Re: SMS Apps

2011-10-04 Thread Bryan Stevenson

Thanks again Paul!

So if I read between the lines of your response.I was right in that
I don't need the menu framework??

I'll dabble today/tomorrowmay be back to the well depending on the
results ;-)

Cheers

On Tue, 2011-10-04 at 09:15 +0700, Paul Hastings wrote:

 On 10/4/2011 2:26 AM, Bryan Stevenson wrote:
  What I'm hoping I can do is bypass all of that and simply start the
  session by texting Please enter your name and then when the user types
 
 to send Please enter your name to the test handset, use the global 
 sendgateway() method. provide it the name of the gateway  a structure 
 holding 
 the properties the SMS gateway requires (to/from phone, message, etc.).
 
 for incoming SMS, the driver is the onIncomingMessage method. it takes one 
 argument, a CFEvent struct. all this is tied to the SMS gateway (where you 
 specified the CFC w/this method). other than that this is just like any other 
 CFC. you can create  use other methods in that CFC, call other CFC's 
 methods, etc.
 
 the text sent by the user's handset is in arguments.CFEvent.data.message 
 (assuming the you named the onIncomingMessage argument CFEvent).
 
 
 

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


Re: SMS Apps

2011-10-04 Thread Bryan Stevenson

On Wed, 2011-10-05 at 00:07 +0700, Paul Hastings wrote:


 
 if that demo is an obstacle, just try starting over w/a new onIncomingMessage.
 


My thoughts exactlydemo is full of stuff I don't need...start
fresh ;-)

Cheers
-- 


Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: br...@electricedgesystems.com
web: www.electricedgesystems.com
 
Notice:
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments.
Please consider the environment before printing this e-mail



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


Re: SMS Apps

2011-10-03 Thread Bryan Stevenson

Hi All,

I'm having a  bit of  a disconnect and wondering if anyone can help??

The SMS Gateway sample app that comes in CF Admin is a menu based app
where the user enters a key and hits Send...then the next level of the
menu is shown and the user can once again enter the letter that
corresponds with the menu item they want to select.

What I'm hoping I can do is bypass all of that and simply start the
session by texting Please enter your name and then when the user types
something and hits send, I take what they entered and perform some
action against it and then send a text back asking another question (or
telling them their entry was invalid).

I just can't seem to find a way to call a method in a CFC other than
using the menu framework and defining the key the user should press to
perform the next actionI don't want them to navigate  a menu by
pressing keysjust enter requested text and hit send.

I feel like I'm missing something horribly obviousso I've come to
the list for some wisdom and smackdown ;-)

TIA

Cheers

On Thu, 2011-09-29 at 11:26 -0700, Bryan Stevenson wrote:

 Thanks again Pauland yes it is time I RTFM ;-) (no offence
 takenI know I should)
 
 Diving into the code today...so it's time!!
 
 Cheers
 
 On Thu, 2011-09-29 at 08:36 +0700, Paul Hastings wrote:
 
  On 9/29/2011 1:28 AM, Bryan Stevenson wrote:
   So I suppose I could just re-point the existing SMS Gateway (the runs
   the demo app) to point at my CFCs?
  
  yes.
  
   Which leads me to ask about how to interact with a specific Gateway if
   more than one is entered into CF Admin?  I assume by some sort of
   Gateway identifier?
  
  different types (SMS, messaging, asynch, etc.) with instances of each type, 
  each 
  instance uniquely named.
  
  your cfdocs should have ColdFusion Event Gateway Reference section as 
  well as 
  Using the SMS Event Gateway in the developing cf apps section. read 
  those, 
  it's not all that hard (like everything else in cf).
  
  
 
 

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


Re: Coldfusion Hosting

2011-09-30 Thread Bryan Stevenson

If it matters MaxI'd say Viviotech is as good or better than
HostMySite ever was...and I was pretty happy when we found HostMySite
(the early days)

I'm not familiar with Linode

On Thu, 2011-09-29 at 22:26 -0400, Max Hamby wrote:

 I had stayed with hosting.com out of convenience I knew I was paying a
 premium but everything is tuned just right so I've left it alone. I guess I
 should have known it was coming.
 
 I'm looking pretty hard at Viviotech now (thanks for the recommendation).
 I'm also considering Linode.
 
 ~Max
 
 
 On Thu, Sep 29, 2011 at 8:56 PM, Bryan Stevenson 
 br...@electricedgesystems.com wrote:
 
 
  Max they pulled the same BS on us in the springwe moved to Jordan at
  Viviotech and are SUPER pleased with them to date.
 
  After the hostmysite/host.com mergerthe goodness of hostmysite was
  swallowed by the badness of hosting.comit was painfully obvious and
  truly amazing how quickly an excellent organization can go to hell...sad
  really
 
  On Thu, 2011-09-29 at 16:48 -0400, Max Hamby wrote:
 
   They aren't going out of the CF hosting business. They are
   discontinuing their Windows VPS CF Builder product offering (I got the
   notifications last night as well).
  
   Personally, I'm not very happy with the short notice of the termination.
  If
   you're not able to meet a short time frame (IMO) for moving your
   domains/sites, they'll jack the price up by 300% per quarter.
  
   They say that they have made this decision after months of analysis... I
   just wish they would have given a little more of a heads up that they
  were
   looking at this. I'm already slammed and didn't need this bombshell
  dropped
   on me!
  
   Although HMS/Hosting.com has been very reliable for me, I am currently
   looking at other options due to this notification and the pricing
   on their available products.
  
   ~Max
  
   On Thu, Sep 29, 2011 at 1:48 PM, Dean Lawrence dean...@gmail.com
  wrote:
  
   
Paul, do you mean GoDaddy.com? I hadn't heard anything regarding
hosting.com discontinuing ColdFusion hosting. I just checked their
site and they still have it listed.
   
Thanks,
   
Dean
   
On Thu, Sep 29, 2011 at 10:13 AM, Paul Smith psmit...@gmail.com
  wrote:

 Yesterday, hosting.com informs me they are going out of the
  ColdFusion
hosting business.

 This thread has been very useful. Thank you all.

 I've been with ColdFusion from the VERY beginning and am too old to
change now.

 AHPhostng.net's ColdFusion VPS for $99 looks good to me, but I wonder
  if
there have been any developments since this thread was last posted on.

 best, paul

Can anyone recommend a decent yet cheap web host for ColdFusion?


   
   
  
  
 
  
 
 

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


Re: Coldfusion Hosting

2011-09-30 Thread Bryan Stevenson

Thanks MattI'm on Ubuntu, so Linux is not lost on me ;-)

On Fri, 2011-09-30 at 12:32 -0400, Matthew Williams wrote:

 Linode.com is absolutely kickass... but.  It's all linux, all the time.  
 You get a slew of different distributions to choose from, and several 
 kernels.  You, however, will be responsible for system setup and 
 maintenance.  Now, on the positive side of that, the prices are great.  
 You get a ton of bandwidth, a fair amount of disk, and a ton of free 
 rein.  I switched to linode in 2009 and never looked back, but I'm a bit 
 more nutty then most ;).
 


-- 


Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: br...@electricedgesystems.com
web: www.electricedgesystems.com
 
Notice:
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments.
Please consider the environment before printing this e-mail



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


Re: SMS Apps

2011-09-29 Thread Bryan Stevenson

Thanks again Pauland yes it is time I RTFM ;-) (no offence
takenI know I should)

Diving into the code today...so it's time!!

Cheers

On Thu, 2011-09-29 at 08:36 +0700, Paul Hastings wrote:

 On 9/29/2011 1:28 AM, Bryan Stevenson wrote:
  So I suppose I could just re-point the existing SMS Gateway (the runs
  the demo app) to point at my CFCs?
 
 yes.
 
  Which leads me to ask about how to interact with a specific Gateway if
  more than one is entered into CF Admin?  I assume by some sort of
  Gateway identifier?
 
 different types (SMS, messaging, asynch, etc.) with instances of each type, 
 each 
 instance uniquely named.
 
 your cfdocs should have ColdFusion Event Gateway Reference section as well 
 as 
 Using the SMS Event Gateway in the developing cf apps section. read those, 
 it's not all that hard (like everything else in cf).
 
 

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


Re: Coldfusion Hosting

2011-09-29 Thread Bryan Stevenson

Max they pulled the same BS on us in the springwe moved to Jordan at
Viviotech and are SUPER pleased with them to date.

After the hostmysite/host.com mergerthe goodness of hostmysite was
swallowed by the badness of hosting.comit was painfully obvious and
truly amazing how quickly an excellent organization can go to hell...sad
really

On Thu, 2011-09-29 at 16:48 -0400, Max Hamby wrote:

 They aren't going out of the CF hosting business. They are
 discontinuing their Windows VPS CF Builder product offering (I got the
 notifications last night as well).
 
 Personally, I'm not very happy with the short notice of the termination. If
 you're not able to meet a short time frame (IMO) for moving your
 domains/sites, they'll jack the price up by 300% per quarter.
 
 They say that they have made this decision after months of analysis... I
 just wish they would have given a little more of a heads up that they were
 looking at this. I'm already slammed and didn't need this bombshell dropped
 on me!
 
 Although HMS/Hosting.com has been very reliable for me, I am currently
 looking at other options due to this notification and the pricing
 on their available products.
 
 ~Max
 
 On Thu, Sep 29, 2011 at 1:48 PM, Dean Lawrence dean...@gmail.com wrote:
 
 
  Paul, do you mean GoDaddy.com? I hadn't heard anything regarding
  hosting.com discontinuing ColdFusion hosting. I just checked their
  site and they still have it listed.
 
  Thanks,
 
  Dean
 
  On Thu, Sep 29, 2011 at 10:13 AM, Paul Smith psmit...@gmail.com wrote:
  
   Yesterday, hosting.com informs me they are going out of the ColdFusion
  hosting business.
  
   This thread has been very useful. Thank you all.
  
   I've been with ColdFusion from the VERY beginning and am too old to
  change now.
  
   AHPhostng.net's ColdFusion VPS for $99 looks good to me, but I wonder if
  there have been any developments since this thread was last posted on.
  
   best, paul
  
  Can anyone recommend a decent yet cheap web host for ColdFusion?
  
  
 
  
 
 

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


Re: SMS Apps

2011-09-28 Thread Bryan Stevenson

Hey All,

I'm wondering if anyone knows how to go about using the SMS Gateway
phone emulator in the CF example apps for your own testing purposes (the
one that comes up when you fire up SMSClient.bat)?

So I don't want to go get a carrier aggregator service and all that is
required to make this work in PROD.I want to build a proof of
concept app and test it via the phone emulator first (then of course I'd
move to live tests later).

Perhaps there are other emulators I could use?

Any advice greatly appreciated!

Thanks

On Wed, 2011-09-21 at 09:46 -0700, Bryan Stevenson wrote:

 Thanks Russnice and simple explanationI like those! ;-)
 
 Cheers
 
 
 On Wed, 2011-09-21 at 17:28 +0100, Russ Michaels wrote:
 
  everytime you send and receive a message you get a messageID, this
  will identify a thread and message number.
  
  give it try and it should all make sense once you see it in action :-)
 


-- 


Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: br...@electricedgesystems.com
web: www.electricedgesystems.com
 
Notice:
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments.
Please consider the environment before printing this e-mail



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


Re: SMS Apps

2011-09-28 Thread Bryan Stevenson

Thanks for that Paul...so simple when someone types it out loud ;-)

So I suppose I could just re-point the existing SMS Gateway (the runs
the demo app) to point at my CFCs?

Which leads me to ask about how to interact with a specific Gateway if
more than one is entered into CF Admin?  I assume by some sort of
Gateway identifier?

TIA

Cheers

On Thu, 2011-09-29 at 01:02 +0700, Paul Hastings wrote:

 On 9/29/2011 12:47 AM, Bryan Stevenson wrote:
 
  I'm wondering if anyone knows how to go about using the SMS Gateway
  phone emulator in the CF example apps for your own testing purposes (the
  one that comes up when you fire up SMSClient.bat)?
 
 create CFC pointing at the test gateway. fire up the SMS test server on cf 
 (bottom of event gateway settings page in cfadmin), start the test SMS 
 gateway, 
 start the mobile phone emulator on the server. that's it.
 
 understand that the test SMS server is limited to very basic functionality 
 but 
 it's certainly good enough for POC.
 
 
 

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


Re: coldfusion

2011-09-26 Thread Bryan Stevenson

It sure will see them as seperate appsbecause they are ;-)

That's all I have until you tell us if:

1) The app on each server is in fact the same (I assume so)
2) You setup load balancing between the 2 servers and expect the app to
be seen as the same on each server

If the answer to 1  2 is yes, then I'd say you have a problem.

Cheers

On Mon, 2011-09-26 at 09:25 -0500, Greg Morphis wrote:

 We have a server that has 2 urls pointing to it..
 If I log in servera.org and then hit some log in required page and then
 change the url to serverb.org I'm told to log in.. Does CF think it's a
 different application? different session? And is there an easy way to
 correct 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:347709
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Date Question

2011-09-22 Thread Bryan Stevenson

Convert to EST by using DateAdd() to add/subtract the correect number of
hours and then use dateCompare() to check the CST date against now()
(for the 24 hours check)

Cheers

On Thu, 2011-09-22 at 12:52 -0400, Robert Harrison wrote:

 I have a date string I'm reading from an XML file. It's in this format:  
 
   Tue, 20 Sep 2011 10:20:27 CST  
 
 I'm in EST. 
 
 How can convert this string to a data time value I can work with and tell if 
 the data is more than 24 hours old? 
 
 
 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
 
 

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


SMS Apps

2011-09-21 Thread Bryan Stevenson

Hey All,

I'm heading into my first SMS app and it is going to follow  a simple
question and response format...

For example...

Q: What is your first name?
A: Bryan
Q: Thanks, now what is your last name?
A: Stevenson

and so on

What I don't know is how CF keeps all that together as a conversation.

So if anyone can point me to an excellent tutorial or has some
advice/tips/tricks.please lte me know

Many thanks in advance to the bright bulbs out there!

Cheers

-- 


Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: br...@electricedgesystems.com
web: www.electricedgesystems.com
 
Notice:
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments.
Please consider the environment before printing this e-mail



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


Re: SMS Apps

2011-09-21 Thread Bryan Stevenson

Thanks Russnice and simple explanationI like those! ;-)

Cheers


On Wed, 2011-09-21 at 17:28 +0100, Russ Michaels wrote:

 everytime you send and receive a message you get a messageID, this
 will identify a thread and message number.
 
 give it try and it should all make sense once you see it in action :-)

-- 


Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: br...@electricedgesystems.com
web: www.electricedgesystems.com
 
Notice:
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments.
Please consider the environment before printing this e-mail



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


Re: Workstation recommendations

2011-09-07 Thread Bryan Stevenson

sent from my ASUS Transformer ;-)

On Wed, 2011-09-07 at 19:41 -0400, Dan Crouch wrote:

 I got an Asus laptop last year. It was RMAed back to them 4 times before they 
 finally sent me an exchange. The exchange arrived with a broken screen. So it 
 had to be RMAed back. It was the worst customer service I have ever dealt 
 with. You will probably get a lot of different opinions on brands, but I will 
 never buy another Asus product.
 
 Dan
 
 For workstations, I have always been happy with Dell.
 
 If you go the laptop route, either Dell or Toshiba (high end model.. not the
 satellite).
 
 
 My HP desktop at work died last night. This morning we took the hard drive
 out and put it into another box whose drive had died a couple months ago. It
 worked at first, but after about 20 minutes it croaked too.
 
 Anyway, I'll be shopping for a new desktop and just wondered what brands
 people recommend these days. I'll probably stay away from HP and plan to
 stay with a Windows machine. I run CF Developer, SQL Server Mgt Studio, CF
 Builder, Adobe Creative Suite (primarily DW and PS), MS Office, and various
 browsers and other tools.
 
 Dell?
 Lenovo?
 Asus (seems to be mostly gaming oriented)?
 Acer?
 Gateway?
 Others?
 
 Thanks,
 
 -Matt 
 
 

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


Re: How do you compose your dev teams?

2011-09-02 Thread Bryan Stevenson

We call that the 15 minute rule Russ.if you have stared at the
screen for more than 15 minutes...ask for help.

Asking for help is a sign of wisdom and not weakness is what we tell
everyone ;-)

Works great and usually results in some light-hearted ribbing because
dufus (even though double checking the spelling 27,000 times) has
spelled a variable name wrong ;-)  Everyone has  little chuckle and back
to work.

On Sat, 2011-09-03 at 00:04 +0100, Russ Michaels wrote:

 The SCRUMM approach is good in theory, but a lot of people find it annoying
 and embarrassing and try to get it over and done with as soon as posisble. I
 find it works better to just get developers to socialise in a non formal way
 and talk about their projects. The biggest problem is getting a lot of
 developers to ask for help when they get stuck, many folks will spend a week
 battling with a problem when it could have been solve din 10 minutes by
 asking someone else.
 Getting developers to interact is an informal way more often prompts them to
 actually talk about what their working on and bring up challenges they are
 facing.
 
 On Fri, Sep 2, 2011 at 11:24 PM, Tariq Ahmed ta...@dopejam.com wrote:
 
 
  So my question to the list is this: How do you organize your teams of
  developers successfully? Please let me know what you do, or what you have
  seen that actually works.
 
  Hi Nathan.
 
  I manage a team of 11 technical folks, and when I was promoted to
  management we had a similar challenge.
 
  Internal teams that build apps that support the business tend to get into
  this silo'd structure because what they're building has a specialized
  purpose, and as the business demands more of these specialized applications,
  it usually starts off with just one guy building it... and then they become
  the lone expert. With a heavy demand for change, the low hanging fruit it to
  use the guy who knows the app vs. risking someone unfamiliar with it who'll
  have to go through the learning curve.
 
  Management wise, it is a motivator to give people ownership.
 
  But, it is also a huge risk to have SPOKs (Single Points of Knowledge).
  Sure you can have knowledge bases, Yammer.com, IMs, Wikis, etc... and it's
  good to do that, but that's just information. It's only until you have a
  deep understanding of the domain/context are you able to leverage that
  information as knowledge.
 
  One technique I used was to maintain is a Knowledge Matrix of all our
  applications/features, I map out who knows what and what their strength is,
  and how critical/complex that feature is in order to calculate risk. I can
  then prioritize by risk, and make sure that other developers are getting
  exposure to these areas.
 
  Another highly successful thing we did was switching to Agile/Scrum
  development practices. Although you guys on a Visio chart are one team,
  you're functioning as independent one man teams.
 
  A Scrum practice you can start tomorrow are daily standups - from 10am to
  10:15am everyone stands up together and discusses what they did yesterday,
  what they're doing today, and if they're stuck on anything (in order to
  invite others to help). It's time limited, no additional conversation
  allowed - that can be done outside of that meeting, no sitting down and
  getting comfortable... the team needs to feel confident that it never ever
  goes beyond 15mins.
 
  It'll help promote some awareness of what everyone is doing and encourage
  some communication. But it won't be enough to solve the problem as no one
  will really know deeply what you're talking about unless they're very
  familiar with the application.
 
  So the next step would be to truly get the team functioning together
  cohesively by going full Agile. Everyone is working together on the same
  cycle, and although different applications, you're working together as if it
  were one project. Very short iterations of 2 to 4 weeks, requirements are
  broken down into small little pieces - the team picks who is working on
  what, but no one is limited to working on just their app.
 
  You can try to learn it yourself - but getting in an agile training
  organization like cPrime.com to give your company a 3 day onsite bootcamp on
  how the process works is the fastest way to make it happen.
 
  Hope that helps.
 
  Tariq Ahmed
  http://www.aftershox.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:347208
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: (ot) Recover Data from External Hard Drive

2011-08-29 Thread Bryan Stevenson

Carbonite eh.I've seen it mentioned a few timessaw a commercial
for it over the weekend for the 1st time.

Perhaps I didn't understand the offer, but it sure seemed like online
(i.e. the cloud) was the repository??

If so, I'm curious why the cloud is seen as a  safe backup solution?

The only use I can see for cloud based backups is a secondary backup in
case of say a fire at home (where you may not have  a fire safe)...or
perhaps a flood.  To use it as primary backup seems even more prone to
problems than a kid yanking on cords (given that it's beyond your
controlbut it would be safe from your own kids...hehe).

Anyways, just curious to see what folks think and to make sure I'm not
missing some silver bullet solution to backups ;-)

TIA

Cheers


On Mon, 2011-08-29 at 09:45 -0400, Rick Faircloth wrote:

 Send it to a data-recovery lab.  ($$$)
 
 And then use Carbonite...
 
 
 -Original Message-
 From: Eric Cobb [mailto:cft...@ecartech.com] 
 Sent: Monday, August 29, 2011 9:02 AM
 To: cf-talk
 Subject: (ot) Recover Data from External Hard Drive
 
 
 So, this is way OT, but I'm hoping someone out there can give me some
 suggestions to help me figure this out.  Here's my situation:
 
 I have a 500GB USB external hard drive on my home PC that I use to store
 pretty much everything.  All of our pictures, financial documents,
 mp3s, code repositories, everything.  I have the hard drive partitioned
 into 2 equal parts, and they are set up as the F and G drives on the
 PC.  Last week, my 9 month old grabbed the cable and pulled the hard
 drive off of the desk.  When I plugged the hard drive back in, I could
 no longer access any of the data on the drives.  Windows is saying that
 the drives need to be formatted.  
 
 I've tried it on 3 separate machines, and I get the same thing on each
 one.  When I plug in the hard drive, Windows sees both the F and G
 partitions, but wants to format them every time I try to open them.  I
 looked in disk manager and it shows each partition with the correct
 size, but it says that each one is 100% free and contains no data.  It
 does this on Windows XP, Windows 2003, and Windows 7.  
 
 I tried booting Knoppix to see if I could access it that way, but I
 can't even get Knoppix to see the USB hard drive, or if it does I don't
 know where to look.  I used VirtualBox to boot an Ubuntu instance, but
 got the same results as Knoppix, either it doesn't see the USB hard
 drive, or if it does I don't know where to look.  (now would probably be
 a good time to mention that I don't know squat about Linux).  
 
 So, that's my predicament.  Does anyone out there have any suggestions
 on what to try?  I feel like that if I can get Knoppinx/Ubuntu to see
 the drive that may be my best bet, but I don't have a clue as to how to
 do it. (plan on doing some serious googling tonight).
 
 I appreciate any suggestions anyone may have.
 
 Thanks,
 
 Eric Cobb
 http://www.cfgears.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:347091
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


  1   2   3   4   5   6   7   8   9   10   >