cflib.org errors

2010-03-29 Thread Kevin Pepperman
Does anyone know who to alert that cflib.org is throwing errors? http://www.cflib.org/ -- /Kevin Pepperman ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing

Re: cflib.org errors

2010-03-29 Thread James Holmes
Ray Camden is the right person: http://www.coldfusionjedi.com/contact.cfm mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ On 29 March 2010 15:57, Kevin Pepperman chorno...@gmail.com wrote: Does anyone know who to alert that cflib.org is throwing errors?

RE: (ot) email confirm

2010-03-29 Thread Orlini, Robert
Also agreed. CFForm works great! Thanks. RO HWW -Original Message- From: Will Swain w...@hothorse.com Sent: Saturday, March 27, 2010 5:55am To: cf-talk cf-talk@houseoffusion.com Subject: RE: (ot) email confirm Agreed with Bryn. Look at cfform, or if you don't want to for some reason,

Re: Custom search engine

2010-03-29 Thread Dave Burns
I had contacted CrystalTech in parallel and it turns out they do support it out of the box but it's not clear they support the Verity spider. I'm sorting it all out via support emails with them now so I'll post back if/when I have it all worked out.

reverse engineer PHP to CF

2010-03-29 Thread Glyn Jackson
I no nothing about PHP. can any one reverse engineer this following in CF? ? switch($_REQUEST['op']){ case 'load': $ff=join('',file(stripslashes($_REQUEST['reportname']).'.'.$_REQUEST['reportid'].'_sql')); echo $ff; break; case 'save':

Re: FarCryCMS versus Mura

2010-03-29 Thread Dave Burns
Malcolm - Thanks for replying. I'm just starting to work out the customer's requirements so I can't give a precise list yet. I think my biggest up-front challenge is cultural: they're used to going into any page and modifying it at will. This seems like it's very efficient for them and lets

Re: cflib.org errors

2010-03-29 Thread Raymond Camden
FYI, this is due to a bug in MG that was fixed in the recent update. I haven't updated my copy of MG yet - I need to when I get a spare minute. :) Anyway, CFLib should be back up and happy. On Mon, Mar 29, 2010 at 3:23 AM, James Holmes james.hol...@gmail.com wrote: Ray Camden is the right

Re: FarCryCMS versus Mura

2010-03-29 Thread Vince Collins
Demos speak volumes. I would install mura or farcryCMS, your preference (30 minutes), and spend less than an hour to add a basic layout with their logo. Then give a free demo/show and tell. If they don't get it or otherwise decide to go a different way, you are out about 2-2 1/2 hours of

re: reverse engineer PHP to CF

2010-03-29 Thread Jason Fisher
I don't know PHP either, but this looks pretty straightforward. I'm assuming that the request in this case is a form post, and I don't know if the save action should do an APPEND or a WRITE (I'm guessing it's a WRITE), but this looks close to me. cfset reportFile = expandPath(.) /

Re: reverse engineer PHP to CF

2010-03-29 Thread Glyn Jackson
Thank yes I have made a start and got below dont understand this line tho... case 'load': $ff=join('',file(stripslashes($_REQUEST['reportname']).'.'.$_REQUEST['reportid'].'_sql')); echo $ff; break; cfset path = ExpandPath(/) cfdirectory action=list directory=#path#

Re: reverse engineer PHP to CF

2010-03-29 Thread Glyn Jackson
@ Jason sorry yes just spotted your post, thanks don't seem to get reportFile on save any idea why not? I don't know PHP either, but this looks pretty straightforward. I'm assuming that the request in this case is a form post, and I don't know if the save action should do an APPEND or a

Re: reverse engineer PHP to CF

2010-03-29 Thread Glyn Jackson
cool final is below... cfparam name=reportName default= / cfset reportFile = expandPath(/Powerbase) / reportName . reportID _sql / cfswitch expression=#op# cfcase value=load cffile action=READ file=#reportFile# variable=ff / cfoutput#ff#/cfoutput

RE: reverse engineer PHP to CF

2010-03-29 Thread Paul Alkema
My whole outlook on converting scripts from one language to another is to look the front end and get an idea of what the application's purpose is and try to figure out exactly what the application is doing, then look at the backend and confirm your front end finding. Take notes! Then rewrite your

Re: reverse engineer PHP to CF

2010-03-29 Thread Jason Fisher
sweet ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332414 Subscription:

Re: reverse engineer PHP to CF

2010-03-29 Thread Glyn Jackson
cool ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332415 Subscription:

Re: ReCaptcha service changes!

2010-03-29 Thread Jeff Gladnick
I have not, but the odds that they would pick my email account (the only one in the company registered with the recatpcha service), and the lack of asking me for any information (just asking me to make sure my dns automatically updates) makes me doubt that there is. Did you see something that

Re: FarCryCMS versus Mura

2010-03-29 Thread Jeff Gladnick
We are just finishing up a medium sized site with Mura. This was my first big project with Mura (ok first ever project with Mura). A few thoughts: 1) Its definitely a little more complex then I first thought and initially gathered from the demo. However, in its defense, other

RE: FarCryCMS versus Mura

2010-03-29 Thread Justin Scott
Feel free to contact me if you'd like more info, I cannot post the site (since its not quite live yet) but can share it with you privately. Hi Jeff, we're about to evaluate some new CMS options here at GravityFree and would love to take a look at a larger site done with Mura if you don't mind

AW: FarCryCMS versus Mura

2010-03-29 Thread Gert Franz
Justin, I guess you should ask the guys from Bluervier as they did some really big projects on Mura... BTW: Railo is running on Mura as well... So getrailo.org/com is implemented with Mura and I must say it is really great for an open source CMS... Greetings from Switzerland Gert Franz Railo

Re: FarCryCMS versus Mura

2010-03-29 Thread Jeff Gladnick
just sent an email to supp...@gravityfree.com Feel free to contact me if you'd like more info, I cannot post the site (since its not quite live yet) but can share it with you privately. Hi Jeff, we're about to evaluate some new CMS options here at GravityFree and would love to take a look at

(ot) CF Shop Kart author

2010-03-29 Thread Michael Muller
Is Jon Wallen, the guy who wrote CFShopKart, on this list? Mik Michael Muller cell (413) 320-5336 skype: michaelBmuller http://MontagueWebWorks.com Information is not knowledge Knowlege is not wisdom Eschew Obfuscation

Re: CF AES Encryption/Decryption on BBj

2010-03-29 Thread Leigh
When I encrypt the string (1234567891234567) I now get: 1DF20DDA4A5C45DCD2BCDB191D08559C What was the CF code used to produce that value? ~| Want to reach the ColdFusion community with something they want? Let

Re: ReCaptcha service changes!

2010-03-29 Thread Mike Kear
No theres nothing specific in mind, but i am always suspicious of any email asking me to verify anything. To the point where I had a debt collector call me the other day, telling me that PayPal were about to sue me for a $53 debt that had been unpaid for a couple of years. I said well why didnt

Re: ColdFusion Builder Released!

2010-03-29 Thread Sean Corfield
On Sun, Mar 28, 2010 at 6:42 PM, Andrew Scott andr...@andyscott.id.au wrote: Ok so there is one package you can buy in Flash Builder were you don't, I don't think it is a bad thing that this is what they have done. But what I do disagree with is that I am forced to pay $299.00 or $50.00 extra

Re: ColdFusion Builder Released!

2010-03-29 Thread Andrew Scott
Sean, Because FB4 standalone full on its own is $249.00, buy ColdFusion Builder full and its $299.00 with FB4 standalone. So the difference is $50.00 ~| Want to reach the ColdFusion community with something they want? Let them