Microblog

2011-04-25 Thread Glenn Hartong
I'm looking for a microblog. Something Twitter-esque that I can use on a secure intranet. Users may share confidential information that cannot be on the web. Has anyone heard of anything like this? I looked on RiaForge to no avail. thanks, Glenn

Re: Microblog

2011-04-25 Thread Mark Drew
If you do the design, I can build it :) MD Sent from one of my many iDevices On 25 Apr 2011, at 13:10, Glenn Hartong gl...@glickcf.com wrote: I'm looking for a microblog. Something Twitter-esque that I can use on a secure intranet. Users may share confidential information that cannot be

Re: Microblog

2011-04-25 Thread Russ Michaels
This is a feature built into most project management apps. If you use gmail then look on the google marketplace. Or perhaps google apps itself may do the job for you with its collaboration tools which are perfect for intranets, which is all free btw. On 25 Apr 2011 13:26, Mark Drew

Re: Microblog

2011-04-25 Thread Ras Tafari
check out yammer? On Mon, Apr 25, 2011 at 8:10 AM, Glenn Hartong gl...@glickcf.com wrote: I'm looking for a microblog. Something Twitter-esque that I can use on a secure intranet. Users may share confidential information that cannot be on the web. Has anyone heard of anything like this?

CF9 ODBC Error

2011-04-25 Thread Chad Baloga
I tried connection to create a CF ODBC datasource connection today on a Windows 2008 Server machine and got the following error: HError accessing available odbc datasources. - Cannot open HKEY_LOCAL_MACHINESOFTWAREODBCODBC.INIODBC Data Sources: Windows error 2 occurred.The system cannot find

Re: ExactTarget SOAP API

2011-04-25 Thread Svetlin Roussev
You best chance is to use 3sixty from ExactTarget and use their .NET examples and using Charles to see what exactly is send so you can create your CF calls. Good Luck On Mon, Apr 18, 2011 at 10:22 AM, Steve Reich coldfusionst...@gmail.comwrote: Does anyone have any experience with CF and

Re: CF9 ODBC Error

2011-04-25 Thread Chad Baloga
Figured out that I needed to make a 64bit DSN to initialize something on the server. I used firebug to manually enter my 32bit DSN, submit and get: Connection verification failed for data source: merlinFoxPro java.sql.SQLException: [Macromedia][SequeLink JDBC Driver][ODBC Socket]internal

Coldfusion 8: Cffunction inserting multiple form rows on multiple clicks

2011-04-25 Thread Adam Bourg
I have a form for internal users, they submit information for some certifications. I have a bug, where they can hit the submit button a few times and it'll insert that row as duplicates 2-3 times depending on clicks. Is there a way to prevent this? !--- Modify a user method ---

RE: Coldfusion 8: Cffunction inserting multiple form rows on multiple clicks

2011-04-25 Thread Andrew Scott
Write a JavaScript function to disable the button, problem fixed. Regards, Andrew Scott http://www.andyscott.id.au/ ~| Order the Adobe Coldfusion Anthology now!

Re: Coldfusion 8: Cffunction inserting multiple form rows on multiple clicks

2011-04-25 Thread Gerald Guido
Write a JavaScript function to disable the button, problem fixed. This is pretty easy with jQuery (of course it is) $('#submitButton').bind('click keyup', function () { $('#submitButton').attr('disabled', 'true'); }); cfinput type=submit validate=submitonce id=submitButton... Actually

RE: Coldfusion 8: Cffunction inserting multiple form rows on multiple clicks

2011-04-25 Thread Andrew Scott
Seems overkill to load a library for one thing, normal JS will do the trick too. Regards, Andrew Scott http://www.andyscott.id.au/ ~| Order the Adobe Coldfusion Anthology now!

Re: Coldfusion 8: Cffunction inserting multiple form rows on multiple clicks

2011-04-25 Thread Gerald Guido
Opps.. This is how to do it with out CFForm $('#submitButton').bind('click keyup', function () { $('#submitButton').attr('disabled', 'true'); }); input type=submit id=submitButton... My bad On Mon, Apr 25, 2011 at 12:40 PM, Gerald Guido gerald.gu...@gmail.comwrote: Write a JavaScript

Re: Coldfusion 8: Cffunction inserting multiple form rows on multiple clicks

2011-04-25 Thread Gerald Guido
Seems overkill to load a library for one thing, normal JS will do the trick True. But I use it so much it is almost a given. G! On Mon, Apr 25, 2011 at 12:42 PM, Andrew Scott andr...@andyscott.id.auwrote: Seems overkill to load a library for one thing, normal JS will do the trick too.

Corrput Table error with queries with cachedwithin

2011-04-25 Thread Scott Weikert
I've done some digging on this and everything I'm finding is ancient (circa 2007). Today I started getting a corrupt table error with every query that has a cachedwithin set on it on one of my servers. On another server, a backup for the main server, with (as best I can tell) the same CF

Re: Corrput Table error with queries with cachedwithin

2011-04-25 Thread Charlie Stell
Are you using any *s in your select statement? On Mon, Apr 25, 2011 at 2:05 PM, Scott Weikert li...@alphageek.cc wrote: I've done some digging on this and everything I'm finding is ancient (circa 2007). Today I started getting a corrupt table error with every query that has a cachedwithin

Re: Corrput Table error with queries with cachedwithin

2011-04-25 Thread Scott Weikert
Yes, and I had that in my one-off test - just removed the * and specified a field, but no change, the cache-set query still bombs. Again, this is code that has worked fine for years. More on the timeline though - my server guy was doing a bit of tinkering this morning (while I was doing some

Re: Corrupt Table error with queries with cachedwithin

2011-04-25 Thread Scott Weikert
I should also add that this is happening across multiple datasources on the affected server, not just the one that my server admin guy fiddled with. On 4/25/11 12:17 PM, Scott Weikert wrote: Yes, and I had that in my one-off test - just removed the * and specified a field, but no change, the

Re: htaccess - 301 - wildcard and remove query string.

2011-04-25 Thread Michael Grant
Anyone? Bueller... Bueller... Bueller... Anyone... Anyone... Anyone? On Sat, Apr 16, 2011 at 2:24 PM, Michael Grant mgr...@modus.bz wrote: I so suck at regex and redirects. I suck at lots of other stuff to, but that's irrelevant to this post. The simple explanation of what I want is a url

Re: Corrupt Table error with queries with cachedwithin

2011-04-25 Thread Scott Weikert
Well, finally got my server guy to cycle the CF service on the affected box - and now queries with cachedwithin set seem to work fine. I suspect somehow his fiddling with a DSN setting (which one, I'm unsure) somehow tripped this ancient bug, and a service cycle cleared that particular deck.

RE: htaccess - 301 - wildcard and remove query string.

2011-04-25 Thread Jenny Gavin-Wear
Hi Michael, OK .. so you have a link with: http://www.mysite.com/mypage.cfm?key1=1key2=122 On the mypage.cfm (which could be the same page with the link) one providing the link have something like: ciff isdefined(url.key1) and val(url.key1) cflocation url=../myredirectpage.cfm/#url.key2#

Data encryption and client-managed keys

2011-04-25 Thread Justin Scott
Hello all, I have a situation that I could use some feedback on. One of the projects that I'm involved in has a need to keep their client's data very, very secure. Ideally they wouldn't even have the data sent to the server, but outside of creating a desktop application it will need to be

Exchange 2010 and cfexchange - has anyone been able to get it to work?

2011-04-25 Thread Michael Anderson
Has anyone found a way to get cfexchange working with Exchange 2010? After a few days of digging around, I finally came across this bug on Adobe's site (http://cfbugs.adobe.com/cfbugreport/flexbugui/cfbugtracker/main.html#bugId=82576) but there's no mention of a fix... just people piling on

Re: htaccess - 301 - wildcard and remove query string.

2011-04-25 Thread Michael Grant
Thanks for the reply! unfortunately I'm trying to do this in htaccess not cf. I know it's cf-talk and all, but I generally ask here even for some non-cf stuff since this list has some of the most intelligent peeps on the inter tubes. Thank you very much for posting though I appreciate it.

Re: htaccess - 301 - wildcard and remove query string.

2011-04-25 Thread Wil Genovese
Michael, Try this RewriteRule ^([^\/]*)/sales/([0-9]){1}/(122) mysite.com/sales/$2/$3/ Also, get the Regular Expressions Tester plugin for FireFox. It works great! Wil Genovese Sr. Web Application Developer/ Systems Administrator CF Webtools www.cfwebtools.com wilg...@trunkful.com