Re: CF 8 Crash ColdFusion 8 Application Server service terminated with service-specific error 2 (0x2).

2010-05-24 Thread Developer MediaDoc
We JUST ran into this same error. The cause was we editted the max amount of RAM the JVM could use (via cf administratorJava and JVM - to 2048 MB -- our server has 4096 MB. (We did this a few weeks ago, and forgot about it. We just rebooted, and whack - the cf service would not start. We

Re: Converting an AJAX response to coldfusion object

2009-11-20 Thread Developer MediaDoc
Thank you all kindly for your suggestions. I followed instructions on the Blog mentioned. cfinput type=button name=Download value=Download Registrants to MS Excel onClick=doDownload(); called this function: function doDownload() { var mygrid =

Converting an AJAX response to coldfusion object

2009-11-19 Thread Developer MediaDoc
Hi all, I am probably not using the correct 'language' here -- forgive me new to the AJAX world. I have a lovely cfgrid populated by binding it to a CFC. Everything works great. I have some 'filters' that let the users filter the data in the grid. Now the client has asked to have a 'download

MS WORD DOCX Question

2009-04-15 Thread Developer MediaDoc
Hi All, I have a working app that lets users upload docs to a clients 'admin' people. Recently a few users have been uploading MS OFFICE 2008, MS WORD .docx files. The 'admin' people dont have this latest version, but have downloaded the compatibility pack that lets them open them. Trouble

Re: MS WORD DOCX Question

2009-04-15 Thread Developer MediaDoc
Thanks Jason, that indeed provided the solution. I used the following two articles to setup the new mime types. http://sensisbledefault.wordpress.com/2007/03/05/office-2007-iis-6-mime-types-docx-pptx-xlsx/ http://support.microsoft.com/kb/936496 (This third described added MIME TYPES in

Re: RegEx (REMatch) experts?

2008-11-12 Thread Developer MediaDoc
A quick follow up to this, and some improved code (thanks to those on the RegEx list). cfsavecontent variable = my_reg_ex(?:([^]+))|([^ ]+)/cfsavecontent !--- NOTE a trailing whitespace character has been removed, and for ease of readability, cfsavecontent has been used to remove need to

Redirecting

2008-10-31 Thread Developer MediaDoc
Hi All, Have a site whose DNS is not controlled by us. They (the DNS controllers), have setup a URL to redirect at the DNS level (so they tell me), www.abc.com/french to come to our site via an IP address. When we get this visitor, they need to get to our FRENCH page. Our standard default

Re: RegEx (REMatch) experts?

2008-10-02 Thread Developer MediaDoc
Thanks to those who have provided some guidance (on and off list)! Note to those still using ReFIND (and its kin)... REMatch removes the need to do any substring manipulations -- it throws the results into an array as is! Here is the solution cfset search_string = Healthy Eating kids schools

Re: RegEx (REMatch) experts?

2008-10-02 Thread Developer MediaDoc
Thanks to those who have provided some guidance (on and off list)! Note to those still using ReFIND (and its kin)... REMatch removes the need to do any substring manipulations -- it throws the results into an array as is! Here is the solution cfset search_string = Healthy Eating kids schools

RegEx (REMatch) experts?

2008-10-01 Thread Developer MediaDoc
Hi All, Have NOT ventured into regular expressions much at all. Now I have the need for one, and wonder if anyone has one made for this scenario. Search engine, want user to be able to enter multiple words, also phrases. Want my SQL to loop over the phrases and words with an AND... (the SQL I

Re: cftimer does not work

2008-08-26 Thread Developer MediaDoc
Oh boy, thanks a TON RAY... somehow some IP's got in the IP restrictions, so that was the cause... MANY MANY thanks, this has 'bugged' me for 1/2 a year! Matts Check the IP restrictions for db output in the admin. Hi all, CF 8.01 Standard Windows 2003 I cannot get cftimer to display

Alter table - modifying an Enum field in MYSQL

2008-08-25 Thread Developer MediaDoc
Hi All, Have run across a VERY STRANGE behaviour in CF 8.01 / mySQL 5.0 I've got a code snippet to modify vaules in an enum field in our database. cfset my_new_list ='A','B','C','D' cfquery datasource=#APPLICATION.dsn# name=test ALTER TABLE the_table MODIFY the_field ENUM(#my_new_list#)

Re: Alter table - modifying an Enum field in MYSQL

2008-08-25 Thread Developer MediaDoc
://www.sabai-dee.com/ Developer MediaDoc wrote: ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;203748912;27390454;j Archive: http

Re: cftimer does not work

2008-08-25 Thread Developer MediaDoc
Anyone else experiencing this behaviour? Thanks, Matts Hi all, CF 8.01 Standard Windows 2003 I cannot get cftimer to display anything -- dont think it is even running. I HAVE checked the following boxes in CFADMIN Debug Output Settings - Enable Robust Exception Information (CHECKED) -

cftimer does not work

2008-08-22 Thread Developer MediaDoc
Hi all, CF 8.01 Standard Windows 2003 I cannot get cftimer to display anything -- dont think it is even running. I HAVE checked the following boxes in CFADMIN Debug Output Settings - Enable Robust Exception Information (CHECKED) - Enable AJAX Debug Log Window (CHECKED) - Enable Request

CFGRID / SQL - am I dreaming?

2008-05-15 Thread Developer MediaDoc
Hi Everyone, I have a great ajax/cfgrid mockup working. Sorting, filtering etc.. all working very well. Client has just asked if I can extend it a little more. Gridrow 1 = Title they would like the words NEW to be prefixed to the title (and stand out in a bold, coloured font) if the item has a

Re: CFGRID / SQL - am I dreaming?

2008-05-15 Thread Developer MediaDoc
Hi Matts, I would suggest the following: cfloop query=rs_resource cfif rs_resource.create_d NEQ cfset this_date_diff = dateDiff(M,now(),rs_resource.create_d) cfif this_date_diff GTE -3 cfset really_new_title = span style='font-weight:bold; color:##CA6526;'NEW/span

Saving Form Structure to use on another page

2008-03-26 Thread Developer MediaDoc
Hi all, I've run into a similar issue... and my brain is frozen as well :-) I want my form processing page to copy the FORM structure into a session variable, so that it can be used on other pages for the same user. I have session management turned on. cfset SESSION.FORM = FORM SHOULD copy

Re: Web Service File Permission Issue

2007-09-01 Thread Developer MediaDoc
Hi All, Rick, thank you for moving this over to CF-Talk... appreciate your efforts. To answer some questions. 1. Create file (I have remote desktopped in, as Administrator) in that directory, created a .txt file, it has the following permissions: - Administrator, Network Service, Domain User

Re: Web Service File Permission Issue

2007-09-01 Thread Developer MediaDoc
Hi All, Rick, thank you for moving this over to CF-Talk... appreciate your efforts. To answer some questions. 1. Create file (I have remote desktopped in, as Administrator) in that directory, created a .txt file, it has the following permissions: - Administrator, Network Service, Domain User