Doesn anyone know what is the RegEx in coldfusion to return all characters between "[MergeField" and "]" Examples: [MergeField FirstName] [MergeField LastName]...
Hello all, Recently unInstalled IIS and installed apache 2.2. I just I ran the cf7 apache connector today, and my apache server has refused to start. Ran...
... Hash: SHA1 You will need the new wsconfig.jar file that is for Apache 2.2 and manually configure your website connector. If you do not have this file or...
I seem to recall something about a patch for the connector to work with Apache 2. I am in need of that patch myself but can't look for it now. If you find...
I need to return a list of subdirectories. This can be done with cfdirectory for example, in a roundabout way, but I cannot use this tag on the hosting...
Here's what they say about that: Can I use the Custom Tags directory on a virtual hosting plan? No. For security and performance reasons, we do not offer use...
... the calling script. Ok, this stands for CFML tags, those you write in CFML code and generally call <CF_myTag... But you certainly cannot install <CFX tags,...
Try this to see if you can use FileSystemObjects <CFTRY> <CFOBJECT TYPE="COM" CLASS="Scripting.FileSystemObject" NAME="FSO" ACTION="CONNECT"> <CFCATCH...
If that works you can use this <CFTRY> <CFOBJECT TYPE="COM" CLASS="Scripting.FileSystemObject " NAME="FSO" ACTION="CONNECT"> <CFCATCH type="ANY"> <CFOBJECT...
Yes. :) ... From: coldfusion-howto@yahoogroups.com [mailto:coldfusion-howto@yahoogroups.com] On Behalf Of Ernest Breau Sent: Tuesday, September 04, 2007 4:16...
Hey Ernest, that works great! One problem though. The directory I wish to interrogate is on a path which includes spaces, and that seems to be killing it. ...
Try drilling down into the path set your folder to c:\ and see if that gives you the same error ... -- ____________________________________________________ ...
Hi all I am trying to join two tables (first time I have ever needed to) and from what I have read this is what it is supposed to be coded as, but alas… it...
Try this select table1.word, table1.meaning from table1, table2 where table1.word=table2.word and table1.meaning=table2.meaning The way this is written, it...
Hi Mikky, what settings were written to your httpd.conf file? Sounds like there was an issue when the JRun configuration was written there. Is this the...
... Hash: SHA1 The mod_jrun.so file is for apache 2.0. For Apache 2.2 the file will be mod_jrun22.so. I have uploaded the Zip file which can be acquired from...
thanks john!! much appreciated I am wondering also… Is it just silly to add another set of where and and clauses enclosed in a cfif to be able to create a...
You can add CFIF statements while looping over the query results. You can also use CFIF statements inside a CFQUERY block to create dynamic SQL. You may want...
I find myself often looping over and conditions the best way to do this is start off with where 1=1 then loop all your ands and CompanyName='Adobe' and...
Thanks for the widget. It's a bit ugly, but I can pass in the appropriate folder level, then use http get to process the return (lots of string replacement,...
I have users copy text from Word document into a HTML text area. The text in the text area will be emailed using cfmail tag. The text that is emailed does not...