RE: Embedding CF in CMS Content

2015-04-17 Thread Robert Harrison
Thanks. I found another way around it. Just dealing with something that was already put together strangely, where some embedded functional code into a CMS WYSIWYG editor. Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234  ext.118 Direct Line: 516-302-4345

Embedding CF in CMS Content

2015-04-17 Thread Robert Harrison
I have a situation where I need to embed a CFINCLUDE in a CMS data field which is output. How do I get the include to render? Can I even do that? Example is like cfoutput#mydata#/cfoutput . the include is in the mydata output. Can I evaluate or something? Thanks Robert Harrison

SQL Server and Nulls

2015-04-17 Thread Robert Harrison
In an update query, to a tinyint field which allows nulls, I have the update dbfield=#mydatefield# If mydatefield has no value, sql is throwing an error. The field allows nulls. I've never had to say if then NULL before. What the heck? Robert Harrison Full Stack Developer AIMG rharri

RE: Ajax Post Value on CF Side

2015-04-07 Thread Robert Harrison
Let me make this simpler. The value being send via an ajax post is: Object {name: rid, value: 1} If I just want to dump that value/object how to I do it? I have no idea what name CF see that as. Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234  ext.118

RE: Ajax Post Value on CF Side

2015-04-07 Thread Robert Harrison
simple, so it confused me. Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234  ext.118 Direct Line: 516-302-4345 www.aimg.com ~| Order the Adobe Coldfusion Anthology now! http

Ajax Post Value on CF Side

2015-04-07 Thread Robert Harrison
I'm sending an Ajax post to a CF page. The post data looks like (below) in the counsel: Object {name: rid, value: 1} How in the heck to I get that value on the ColdFusion page? Robert Harrison Full Stack Developer AIMG mailto:rharri...@aimg.com rharri...@aimg.com Main Office

RE: Handling invalid recipient in mailing list

2015-04-03 Thread Robert Harrison
through and get a rating telling you how 'spamy' the mail looks. There are a bunch of things they look - various trigger words like FREE, BUY NOW, VIAGRA, etc., malformed HTML, too many pictures and not enough text content, etc. Hope this was helpful. Robert Harrison Full Stack Developer

RE: Handling invalid recipient in mailing list

2015-04-03 Thread Robert Harrison
and functions are built-into and integrated with the core site (or sites). In that case it may be best to 'roll you own' as they say. Thanks Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234  ext.118 Direct Line: 516-302-4345 www.aimg.com

RE: Handling invalid recipient in mailing list

2015-04-03 Thread Robert Harrison
... real or perceived. Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234  ext.118 Direct Line: 516-302-4345 www.aimg.com ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe

RE: Handling invalid recipient in mailing list

2015-04-03 Thread Robert Harrison
the best solution. Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234  ext.118 Direct Line: 516-302-4345 www.aimg.com ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe

File Upload/Management

2015-04-01 Thread Robert Harrison
may know of would be helpful. Thanks Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234  ext.118 Direct Line: 516-302-4345 www.aimg.com ~| Order the Adobe Coldfusion Anthology now! http

RE: Test

2015-03-31 Thread Robert Harrison
Working. Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234  ext.118 Direct Line: 516-302-4345 www.aimg.com -Original Message- From: Claude Schnéegans schneeg...@internetique.com [mailto:=?ISO-8859-1?Q?Claude Schn=E9egans schneegans@interneti=71

RE: Scheduler directory missing.

2015-03-26 Thread Robert Harrison
Just curious, but couldn't you install it on a different computer (even a laptop) and just copy the directly you need over without all the complications? Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234  ext.118 Direct Line: 516-302-4345 www.aimg.com

RE: jQuery: firing a click event from a class instead of an ID

2015-03-20 Thread Robert Harrison
I think you need to add an event listener for the class: classname.addEventListener('click', myFunction, false); Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234  ext.118 Direct Line: 516-302-4345 www.aimg.com -Original Message- From: Scott

RE: Decrypting MD5

2015-03-12 Thread Robert Harrison
It looks like you can if you know the salt: http://www.hashkiller.co.uk/md5-decrypter.aspx http://www.md5online.org/ http://md5decryption.com/ http://www.md5decrypter.com/ Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234  ext.118 Direct Line: 516-302

RE: Decrypting MD5

2015-03-12 Thread Robert Harrison
So basically MD5 is useless if you can't decrypt the value! That sucks. Maybe, if you're storing data you need to retrieve. Generally I use if for data I need to compare (like passwords), then I just encrypt the values the same way and compare the encrypted values. Robert Harrison Full Stack

RE: Speech to text

2015-02-06 Thread Robert Harrison
Yes. Dragon software seems to integrate rather well... but really it's not a CF issue, it more of an HTML issue. Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234  ext.118 Direct Line: 516-302-4345 www.aimg.com -Original Message- From: John Allen

RE: Speech to text

2015-02-06 Thread Robert Harrison
What are you going to do with it? If you going to voice drive your websites it's an HTML issue. You can speak and it will record in test fields, etc. Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234  ext.118 Direct Line: 516-302-4345 www.aimg.com

RE: PATH_INFO missing in CF 11

2015-02-05 Thread Robert Harrison
Is that ColdFusion or IIS? Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234  ext.118 Direct Line: 516-302-4345 www.aimg.com -Original Message- From: Alex DeMarco [mailto:alex.dema...@suny.edu] Sent: Wednesday, February 04, 2015 2:23 PM To: cf

RE: Cannot access session variables in a cfc

2015-01-28 Thread Robert Harrison
Were you using relative paths to the CFCs. That could become hairy if you move things around. I'll generally define a CFC path variable in the application.cfm then use that everywhere. Never had a problem. Of course, this assumes all the CFC's are in the same location. Robert Harrison Full

RE: Cannot access session variables in a cfc

2015-01-28 Thread Robert Harrison
What other method than session variables can I use to pass a common variable that won't require me to include it as a parameter of every calling routine? Since you've moved your CFCs out of the application I cannot think of any other method beside passing them all as arguments. Robert

RE: Cannot access session variables in a cfc

2015-01-28 Thread Robert Harrison
If you moved your cfc's above the application.cfc (or application.cfm) file, the session variables will not be accessible. Session and application vars are accessible from the application file down. Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234  ext.118

RE: Cannot access session variables in a cfc

2015-01-28 Thread Robert Harrison
be in the application. Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234  ext.118 Direct Line: 516-302-4345 www.aimg.com ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe

RE: Cannot access session variables in a cfc

2015-01-28 Thread Robert Harrison
you could use them in the CFC's. Personally I think you should put your CFC's back and fix the problem that's making you move them in the first place. Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234  ext.118 Direct Line: 516-302-4345 www.aimg.com

RE: Cannot access session variables in a cfc

2015-01-28 Thread Robert Harrison
try adding an Application.cfc in the root physical directory I don't that that will work. It would still be a separate application pool, and I think you need the CFID and CFTOKEN cookies to have session vars. Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321

Call Rail API / CF

2015-01-19 Thread Robert Harrison
= $parsed_data-total_entries; echo Total entries: {$parsed_data-total_entries} \n; // Loop through companies foreach($parsed_data-companies as $company){ echo Company: {$company-name} \n; } ? Robert Harrison Full Stack Developer AIMG mailto:rharri...@aimg.com rharri

RE: Call Rail API / CF

2015-01-19 Thread Robert Harrison
# /--- cfhttpparam type=body value=#serializeJson(tmp)# / /cfhttp cfdump var=#r# / AND cfhttp url=https://api.callrail.com/v1/companies.json; result=r method=post cfhttpparam type=header name=Authorization value=Token token=' MYKEYHERE'' / /cfhttp cfdump var=#r# / Robert Harrison Full Stack

RE: Call Rail API / CF

2015-01-19 Thread Robert Harrison
I'm not using my key here... I just not posting my key to a public forum that's indexed in Google. And I've treid get also... I've tried every variation I can think of. I got a 200 response from GET but no data. Otherwise I get 401. Robert Harrison Full Stack Developer AIMG rharri

RE: Call Rail API / CF

2015-01-19 Thread Robert Harrison
Nada! Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234 ext.121 Direct Line: 516-302-4345 www.aimg.com -Original Message- From: Dean Lawrence [mailto:dean...@gmail.com] Sent: Monday, January 19, 2015 12:01 PM To: cf-talk Subject: Re: Call Rail

RE: Call Rail API / CF

2015-01-19 Thread Robert Harrison
Yes. The PHP version does pull the data. The CF version comes up empty. Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234 ext.121 Direct Line: 516-302-4345 www.aimg.com -Original Message- From: Dean Lawrence [mailto:dean...@gmail.com] Sent

RE: Call Rail API / CF

2015-01-19 Thread Robert Harrison
Yep tried double quotes too. Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234 ext.121 Direct Line: 516-302-4345 www.aimg.com -Original Message- From: William Seiter [mailto:will...@seiter.com] Sent: Monday, January 19, 2015 12:06 PM To: cf-talk

PHP To Cold Fusion

2015-01-16 Thread Robert Harrison
be: cfset signature=hash(mystring, SHA-256, Base64) 2. The other part is : $ts=time(); Not sure what format the above outputs. Could it be the same as: cfset ts=now() Any thoughts? Thanks Robert

RE: PHP To Cold Fusion

2015-01-16 Thread Robert Harrison
Thanks. I got through that one. Now I'm trying to set up the call rail API. Anyone done that in CF before? Thanks Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234 ext.121 Direct Line: 516-302-4345 www.aimg.com

RE: validating email CF11

2015-01-15 Thread Robert Harrison
= document.userform.email.value; if(!str.match(emailRegEx)){ alert(Please enter a valid email address (n...@domain.com).); userform.email.focus(); return false; } } Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office

RE: validating email CF11

2015-01-15 Thread Robert Harrison
; /cfscript Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234 ext.121 Direct Line: 516-302-4345 www.aimg.com ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion

RE: Adobe ColdFusion Blog futzed?

2015-01-09 Thread Robert Harrison
Looks OK to me... Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234 ext.121 Direct Line: 516-302-4345 www.aimg.com ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe

Eliminating CFM extensions in IIS 7

2014-12-10 Thread Robert Harrison
/ /rule /rules /rewrite /system.webServer /configuration Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234 ext.121 Direct Line: 516-302-4345 www.aimg.com ~| Order the Adobe Coldfusion

RE: Eliminating CFM extensions in IIS 7

2014-12-10 Thread Robert Harrison
News was just an example. Can I do it for every first level item mysite.com/this or mysite.com/that without needing to add a specific rule for each? Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234 ext.121 Direct Line: 516-302-4345 www.aimg.com

RE: Eliminating CFM extensions in IIS 7

2014-12-10 Thread Robert Harrison
Thank you. I was able to use this and adjust to the solution I needed. Really appreciate the assist. Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234 ext.121 Direct Line: 516-302-4345 www.aimg.com -Original Message- From: Jon Clausen

RE: cfmail causing problems for our server

2014-12-10 Thread Robert Harrison
Use a mail relay like STMP.com. Just change the smtp server for your mail blast to send through the relay. Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234 ext.121 Direct Line: 516-302-4345 www.aimg.com -Original Message- From: Dave Long

RE: test

2014-12-09 Thread Robert Harrison
Test from address2. Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234 ext.121 Direct Line: 516-302-4345 www.aimg.com -Original Message- From: rob...@creativecyberspace.com [mailto:rob...@creativecyberspace.com] Sent: Tuesday, December 09, 2014 5

RE: Not able to read a RSS feed from a WordPress website

2014-09-28 Thread Robert Harrison
That was my original suggestion was to check the firewall of the receiving server :-) -Original Message- From: Ben [mailto:b...@webworldinc.com] Sent: Friday, September 26, 2014 6:55 PM To: cf-talk Subject: Re: Not able to read a RSS feed from a WordPress website Ah. Good call! I'm

RE: Test - Ignore

2014-09-16 Thread Robert Harrison
Test from new account... also ignore. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

RE: Not able to read a RSS feed from a WordPress website

2014-09-10 Thread Robert Harrison
the site in a browser on the CF machine... try displaying it in a browser that shows the same external IP address as your server. It's possible your IP has been blocked by the firewall on the sending side. If that's the issue it will have to be fixed on their side. Thanks Robert Harrison

RE: Not able to read a RSS feed from a WordPress website

2014-09-10 Thread Robert Harrison
to be troubleshooting it. You should get a network engineer to take a look. 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

RE: Link checker

2014-09-10 Thread Robert Harrison
I use http://home.snafu.de/tilman/xenulink.html . The icon looks like an alien but it works great for link checking. 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

CFTRY / CFCATCH not working

2014-09-09 Thread Robert Harrison
on why the CRFTY/CFCATCH is not working. Is there a problem because I'm catching a cfscript block? Thanks 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

RE: CFTRY / CFCATCH not working

2014-09-09 Thread Robert Harrison
Thanks, but that had no effect at all. 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

RE: CFTRY / CFCATCH not working

2014-09-09 Thread Robert Harrison
It's a seven year old site but it's on a CF10 server. Tried using CFIMAGE but it's too slow. 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

RE: EMail Injection Attack

2014-08-18 Thread Robert Harrison
Can you explain a bit more what you mean by email injection attack? Do you mean someone is spamming forms that generate forms email, or is someone using some application you have to generate spam? Can you provide a slightly better explanation of what's happening? Robert Harrison Director

RE: EMail Injection Attack

2014-08-18 Thread Robert Harrison
tomorrow, but I'm on client need at the moment. 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

RE: protection from sql attacks with regex++

2014-08-15 Thread Robert Harrison
Uhm... cfqueryparam 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

RE: Sort by file extension in CFDIRECTORY

2014-07-30 Thread Robert Harrison
Interesting... You might be able to use a query of queries after you gotten the file list... Or you might recourse the directory to get the extension then do a separate query on each extension. That's an interesting question... I'm going to watch for what others say. Robert Harrison

RE: need a host

2014-07-21 Thread Robert Harrison
These guys have been great: http://www.edgewebhosting.net/ 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

Script Protect Question

2014-05-13 Thread Robert Harrison
to allow as an exception? I looked at the CF documentation and did not find it to be that clear. Thanks, 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

RE: Script Protect Question

2014-05-13 Thread Robert Harrison
Do you know of any code samples for the first solution where you may be able to send a link? I read the documentation and agree this seems to be the way to do, but I'd sure like to see some sample code on that. Thanks Robert Harrison -Original Message- From: Dave Watts

RE: Script Protect Question

2014-05-13 Thread Robert Harrison
Understood, unfortunately I'm not in a position to revamp all the 21 sites we just moved right now and change the structure. I'm just looking for a fix to solve on issue on a few selected pages in this new environment. Thanks Robert Harrison Director of Interactive Services Austin

RE: Odd CSV Results

2014-05-13 Thread Robert Harrison
I would assume you are doing a loop to generate the CSV content. Are you adding CHR13 to the end of each line? 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

RE: Odd CSV Results

2014-05-13 Thread Robert Harrison
Good. Glad it's solved. I've done a lot of CSV files and they do seem to work well once you get the syntax correct. 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

RE: stripping characters for meta description

2014-05-13 Thread Robert Harrison
. The HTML thinks that's the end of the string, yes? 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

Testing new account

2014-05-07 Thread Robert Harrison
Test to see if this post to a new account I just added to the list. Please ignore. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

RE: CF11... Live?

2014-04-29 Thread Robert Harrison
And yet it isn't visible on the main adobe page. As a matter of fact if you go to products it isn't listed there. Even when you click see all products. I just don't get Adobe at all. I'm so disappointed in them. Robert Harrison Director of Interactive Services Austin Williams Advertising

RE: Spam management for forms handling

2014-04-23 Thread Robert Harrison
Image captchas are undetectable by screen reading packages such as those used by the blind and lock out legitimate visitors. What is [random value from earlier] plus twenty: ___ Yes, but then you'll lock out the stupid... oh, I mean the mathematically challenged. :-) Robert

RE: Spam management for forms handling

2014-04-23 Thread Robert Harrison
actually been very effective. 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

RE: Spam management for forms handling

2014-04-17 Thread Robert Harrison
... or 3. CFFORMPROTECT - http://cfformprotect.riaforge.org/ These are pretty much listed in order of the least effort first. They all work to varying degrees, but I've found just the honey pot will knock out most of it. Robert Harrison Director of Interactive Services Austin Williams

RE: Spam management for forms handling

2014-04-17 Thread Robert Harrison
Oh, that's funny! I'll have to start using Donald as a question. Great idea! But what if they answer cartoon or Disney character. That would create a very bad user experience if you tell them they're wrong ... LOL Robert Harrison Director of Interactive Services Austin Williams

Scheduled Tasks Running Twice

2014-04-01 Thread Robert Harrison
All of the sudden all of the scheduled CF tasks are running twice in a row, one minute apart. We can find no sign of duplicate tasks in the scheduler. Any ideas? Thanks, Robert ~| Order the Adobe Coldfusion Anthology now!

RE: Scheduled Tasks Running Twice

2014-04-01 Thread Robert Harrison
OK. Some research indicates this is a common problem, but the answers found so far are not definitive. Any ideas would be appreciated. Thanks Robert Harrison Director of Interactive Services Austin Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I

RE: Quick Survey

2014-03-26 Thread Robert Harrison
. 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

RE: Quick Survey

2014-03-26 Thread Robert Harrison
of their loyal fans... but alas, Adobe has been mute and has fallen short. 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

RE: Quick Survey

2014-03-26 Thread Robert Harrison
of these issues. 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

RE: The long tail of ColdFusion fail

2014-03-18 Thread Robert Harrison
available to manipulate PDFs and images, but again, there is an Adobe disconnect. 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

RE: The long tail of ColdFusion fail

2014-03-17 Thread Robert Harrison
not releasing any more CF sites and are converting those site we can to PHP. I hate that this is happening, but the writing is on the wall. Robert Harrison Director of Interactive Services Austin Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Hauppauge, NY

RE: The long tail of ColdFusion fail

2014-03-17 Thread Robert Harrison
CF technology. And as far as the hacks... this is why I was asking for hosting recommendations a couple of month ago. We're in the process of moving our CF sites to Edge right now. I for one love ColdFusion... but it's a show stopped for the sales team now. Robert Harrison Director

RE: The long tail of ColdFusion fail

2014-03-17 Thread Robert Harrison
CFs' image problem. 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

RE: Site hanging randomly.

2014-03-14 Thread Robert Harrison
Is it the same time of day? If so, check scheduled tasks and see if something is running that conflicts or is consuming resources. Robert Harrison Director of Interactive Services Austin Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Hauppauge, NY

RE: SQL Global String Replace

2014-03-06 Thread Robert Harrison
. Thanks, Robert 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

RE: SQL Global String Replace

2014-03-06 Thread Robert Harrison
you could just used a stored procedure which will save it directly to the database, and then execute it from CF That never even crossed my mind. Good idea. Thanks. Robert Harrison Director of Interactive Services Austin Williams Advertising I Branding I Digital I Direct   125 Kennedy

SQL Global String Replace

2014-03-04 Thread Robert Harrison
Does anyone have an update program that can update a text string in all tables/rows/columns of an MS SQL data base? Need to do a global text string replace on several sites. Any help appreciated. Thanks, Robert Harrison Director of Interactive Services Austin Williams Advertising I

RE: SQL Global String Replace

2014-03-04 Thread Robert Harrison
Yes, I do mean like that, but I was really hoping someone had it already written up in CF with a tested procedure they would be willing to share. I was able to find several downloads for PHP, but nothing for CF. Thanks Robert Harrison Director of Interactive Services Austin Williams

RE: SQL Global String Replace

2014-03-04 Thread Robert Harrison
Actually, that's the kind of operation that you'd not want to perform in CF (or PHP or any other database client). Unless you truly need all that data within a CF page for some other reason, you shouldn't be sending it all back and forth between DBMS and CF. ... I'm going to do this locally,

RE: Honest question about cfform

2014-03-04 Thread Robert Harrison
jQuery validation or write my own script. The user experience can be much improved from CFFORM validation. 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

RE: CFDOCUMENT Output without Page Break

2014-02-25 Thread Robert Harrison
kill page breaks. You'd have to play with this to see if it's possible, but it may work. Hope that helps some... 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

RE: Jrun Restarts Itself Every Few Minutes - CF 8

2014-02-06 Thread Robert Harrison
It turns out that CFX_OPENIMAGE had been chocking on a corrupted file--and every time it was asked to process that file the server would crashnice... It's possible the image isn't even corrupted. I've had it choke like that on .jpg files saved in CYMK format. Robert Harrison Director

RE: setting up team games

2014-02-04 Thread Robert Harrison
to play each other, it's going to take more than 10 games to get them to play each other... I think that would take 90 games... unless not everyone is playing everyone. Robert Harrison Director of Interactive Services Austin Williams Advertising I Branding I Digital I Direct   125 Kennedy

RE: setting up team games

2014-02-04 Thread Robert Harrison
It has to be 90 games. Just draw a 10 by 10 grid and list the teams up and down. That's 100 squares. X out the ones where a team plays itself, and you have ten boxes removed... that's 90 games. Thinking this way, you could use an array if you wanted. Robert Harrison Director

RE: setting up team games

2014-02-04 Thread Robert Harrison
Actually there are 9 + 8 + 7 + 6 + 5 + 4 + 3 + 2 + 1 = 45 possible combinations. Yes, you're correct. I was forgetting about repeats. In my scenario each team combination would play twice, once at home and one away. Guess I still have that stupid Superbowl pool stuck in my head. Robert

RE: (ot) Anyone know how to clear your google details from a browser?

2014-01-31 Thread Robert Harrison
cell phone browser. Totally freaked me out... then I realized because I use Google Drive I'm logged in at work. Apparently Google keeps a lot of history on the server side also. Robert Harrison Director of Interactive Services Austin Williams Advertising I Branding I Digital I Direct   125

RE: Creating Grayscale PDF with CFDocument in CF8?

2014-01-31 Thread Robert Harrison
Perhaps a print stylesheet? Yes, we also have a few sites with print to PDF, and similarly the client wanted them to print differently. A print style was the solution. http://demosthenes.info/blog/532/Convert-Images-To-Black-And-White-With-CSS Robert Harrison Director of Interactive

RE: How do I pass this jQuery variable as arguments to a cfc method?

2014-01-15 Thread Robert Harrison
If the value isn't changing after the page is rendered you may be able to use document.write java script to write the variable to a CF variable that you can pass to the CFC. I've done that before and it works fine, so long as the variable doesn't change after the page is rendered. Robert

RE: How do I pass this jQuery variable as arguments to a cfc method?

2014-01-15 Thread Robert Harrison
It is **impossible** to document.write... yes, your right. Sorry about that. It was the other way... writing CF to JS vars. My bad! Doing too much as once. Robert Harrison Director of Interactive Services Austin Williams Advertising I Branding I Digital I Direct   125 Kennedy

RE: generating and merging pdfs

2014-01-13 Thread Robert Harrison
I have one system that generates and merges PDFs all day long. It was troublesome, but once we got the JVM heap size correct it worked fine. Try increasing the heap size (a lot) in CFADMIN. Robert Harrison Director of Interactive Services Austin Williams Advertising I Branding I Digital I

Hosting... Again

2014-01-13 Thread Robert Harrison
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

Re: Hosting

2014-01-13 Thread Robert Harrison
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 host recommendations again.

RE: Hosting... Again

2014-01-13 Thread Robert Harrison
Thank you all. Appreciate the input. 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

RE: CFLDAP socket closed error against SSL

2013-12-10 Thread Robert Harrison
What if you wrote it as a function and put it in a CFC? 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

Secure attribute on CF Session Cookies

2013-12-06 Thread Robert Harrison
Is there any way to ensure the CFTOKEN and CFID cookies include the secure attribute when sending over https? I see no way to do this on CF9. Thanks Robert Harrison Director of Interactive Services Austin Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100

RE: Secure attribute on CF Session Cookies

2013-12-06 Thread Robert Harrison
Thanks. That's helpful. Appreciate it. 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

RE: Application.cfc question

2013-11-25 Thread Robert Harrison
of each to include the original application.cfc file to add the missing data... but I'd probably not call the one in the root application.cfc then... probably something like global_var_include.cfm or something. Robert Harrison Director of Interactive Services Austin Williams Advertising I

CFMAIL - SASL

2013-11-08 Thread Robert Harrison
I'm trying to set up CFMAIL to use a relay server for one of my clients. The relay service says: Make sure that SMTP authentication (SASL) is turned ON I don't see any such setting in CFMAIL. Anyone know what this means? Thanks Robert Harrison Director of Interactive Services

  1   2   3   4   5   6   7   8   >