Re: [ cf-dev ] CGI variables in debugging

2003-03-28 Thread Allan Cliff
Sorry my mistake. Forgot to test with the cgi. - Original Message - From: Rich Wild To: '[EMAIL PROTECTED]' Sent: Friday, March 28, 2003 10:41 AM Subject: RE: [ cf-dev ] CGI variables in debugging Unless this behaviour has changed in MX, an isDefined() performed on cgi

Re: [ cf-dev ] CGI variables in debugging

2003-03-28 Thread Allan Cliff
Another thing with this is if I put my (real) IP address on CF Admin to show debugging on the website it is checks my cgi.REMOTE_ADDR which is not the same. To see debugging I have to add the REMOTE_ADDR (proxy IP) to the debugging list to see what I want. The downside of this is that there

Re: [ cf-dev ] CGI variables in debugging

2003-03-28 Thread Matt Horn
if you are connecting to the webserver via the proxy it doesnt see your real ip address .. only the proxies .. bypass the proxy and use your real IP At 11:03 28/03/2003 +0100, you wrote: Another thing with this is if I put my (real) IP address on CF Admin to show debugging on the website it is

RE: [ cf-dev ] multipart email -- email coming out blank

2003-03-28 Thread Colm Brazel
Niks gone to the CFUG meeting mate but check the dev exchange its on there. Alex What's the name of the tag. Took a look just there and couldn't find it. Looking through pages I found some stuff useful for myself troubleshooting cfmail/cfpop, Damian earlier post may see something here as why

RE: [ cf-dev ] multipart email -- email coming out blank

2003-03-28 Thread Colm Brazel
cfmailparam name=Mime-Version value=1.0 cfmailparam name=content-type value=text/plain charset=us-ascii Damian, Maybe your Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit below should be inside the first cfmailparam tag? Colm -Original Message-

Re: [ cf-dev ] multipart email -- email coming out blank

2003-03-28 Thread Damian Watson
hmmm, I'll give it a try later if I got a mo -- so you're basically saying to set text/plain as a default param for the email... - Original Message - From: Colm Brazel [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, March 28, 2003 10:19 AM Subject: RE: [ cf-dev ] multipart email --

RE: [ cf-dev ] multipart email -- email coming out blank

2003-03-28 Thread Niklas Richardson
Hey Colm, The tag is called advancedemail. URL: http://www1.oli.tudelft.nl/jochemd/index.cfm?PageID=8 Cheers Niklas -Original Message- From: Colm Brazel [mailto:[EMAIL PROTECTED] Sent: Friday, March 28, 2003 10:08 AM To: [EMAIL PROTECTED] Subject: RE: [ cf-dev ] multipart email

RE: [ cf-dev ] multipart email -- email coming out blank

2003-03-28 Thread Niklas Richardson
http://www.macromedia.com/cfusion/exchange/#loc=en_usview=sn131viewNam e=ColdFusion%2520ExtensionextID=1001777lc_id=77953 -Original Message- From: Niklas Richardson [mailto:[EMAIL PROTECTED] Sent: Friday, March 28, 2003 10:35 AM To: [EMAIL PROTECTED] Subject: RE: [ cf-dev ]

RE: [ cf-dev ] multipart email -- email coming out blank

2003-03-28 Thread Colm Brazel
so you're basically saying to set text/plain as a default param for the email... Nah, I`m no expert on cfmail to point out anything in particular but in the light of those notes I found on devexchange earlier personally I`d muck around the above, mime-version, CF5 bugs/hot fixes, the cfusion mail

RE: [ cf-dev ] OT: soeditor and plain text

2003-03-28 Thread Lucas Sherwood
How about strip out the HTML code in the end... L. -Original Message- From: Tim Blair [mailto:[EMAIL PROTECTED] Sent: 28 March 2003 12:22 To: [EMAIL PROTECTED] Subject: [ cf-dev ] OT: soeditor and plain text Yo. Has anyone used soEditor to use plain text rather than HTML? I want to

RE: [ cf-dev ] OT: soeditor and plain text

2003-03-28 Thread Tim Blair
How about strip out the HTML code in the end... I've been considering that as a last resort... Anyone got a nice HTML2text CT or UDF? Tim. --- RAWNET LTD - Internet, New Media and ebusiness Gurus. Visit our new website at

[ cf-dev ] cfTag best practises template

2003-03-28 Thread Justin MacCarthy
Just out of interest, does anyone know of a best practise custom cfml tag template??? Thanks Justin -- ** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] For human help, e-mail:

[ cf-dev ] Search Engine friendly URLs with Fusebox and MX

2003-03-28 Thread Steve Penfold
Hi, Apologies if this issue has been discussed recently. We are having issues running the Fusebox FormURL2AttributesSearch tag in CFMX. The same code runs fine with CF4.5 - the error we are receiving is - 'The page you are looking for is currently unavailable.'. We not appear to receiving a 404

RE: [ cf-dev ] OT: soeditor and plain text

2003-03-28 Thread rafe . fitzpatrick
Should do most HTML need to test depending on app cfset non_html=REReplace(html_text,[^]*,,ALL) Rafe Fitzpatrick Senior Developer http://www.alienationdesign.co.uk mailto:[EMAIL PROTECTED] Tel: 0141 575 9700 Fax: 0141 575 9600 Creative solutions in a technical world

RE: [ cf-dev ] Search Engine friendly URLs with Fusebox and MX

2003-03-28 Thread Alex Skinner
Steve, You have to make a change to one of the xml files in the cfmx server in order to get that code to work its below C:\CFusionMX\wwwroot\WEB-INF\web.xml or whatever path under servlet-mapping servlet-nameCfmServlet/servlet-name url-pattern*.cfm/url-pattern /servlet-mapping add

[ cf-dev ] (OT) XHTML

2003-03-28 Thread Phil Ewington - 43Plc
Hi All, Having a problem with XHTML and was wondering whether anyone had come across this before. When a new page loads, the following error is displayed... The XML page cannot be displayed Cannot view XML input using style sheet. Please correct the error and then click the Refresh button, or

RE: [ cf-dev ] OT: soeditor and plain text

2003-03-28 Thread Tim Blair
Should do most HTML need to test depending on app cfset non_html=REReplace(html_text,[^]*,,ALL) I was thinking along the lines of also replacing HTML character entities with the ASCII equivalents as well, like amp; to etc... Ah well, roll-your-own here we come. Tim.

[ cf-dev ] OT select list validator

2003-03-28 Thread Damian Watson
Hi, anyone see anything wrong with this? //validate selectlists that need a value selected selectlist = new Array('selectitem','selectitem2'); for(element=0;elementselectlist.length;element++) { doc = eval('document.forms[0].'+selectlist[element]); if(doc.selectedIndex == -1) {alert('You

RE: [ cf-dev ] OT select list validator

2003-03-28 Thread Robertson-Ravo, Neil (RX)
yep, contact me offlist and I will send you a cracking form validation script which covers a load of stuff... N -Original Message- From: Damian Watson [mailto:[EMAIL PROTECTED] Sent: 28 March 2003 14:53 To: [EMAIL PROTECTED] Subject: [ cf-dev ] OT select list validator Hi, anyone see

RE: [ cf-dev ] Search Engine friendly URLs with Fusebox and MX

2003-03-28 Thread Steve Penfold
Alex, It worked like a dream. Thank you very much. Steve -Original Message- From: Alex Skinner [mailto:[EMAIL PROTECTED] Sent: 28 March 2003 14:40 To: [EMAIL PROTECTED] Subject: RE: [ cf-dev ] Search Engine friendly URLs with Fusebox and MX Steve, You have to make a change to one of

RE: [ cf-dev ] Search Engine friendly URLs with Fusebox and MX

2003-03-28 Thread Alex Skinner
no problemo -Original Message- From: Steve Penfold [mailto:[EMAIL PROTECTED] Sent: 28 March 2003 15:01 To: [EMAIL PROTECTED] Subject: RE: [ cf-dev ] Search Engine friendly URLs with Fusebox and MX Alex, It worked like a dream. Thank you very much. Steve -Original Message-

[ cf-dev ] CFHTTp stripping spaces

2003-03-28 Thread Robertson-Ravo, Neil (RX)
Anyone had problems with CFHTTP and CF45 where, when it posts to an external page it seems to strip out spaces from text blocks? such as United Kingdom geting posted as UnitedKingdom? Thanks Neil -- ** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/ To unsubscribe, e-mail:

Re: [ cf-dev ] CFHTTp stripping spaces

2003-03-28 Thread Matt Horn
try URLencode() them At 15:09 28/03/2003 +, Robertson-Ravo, Neil (RX) wrote: Anyone had problems with CFHTTP and CF45 where, when it posts to an external page it seems to strip out spaces from text blocks? such as United Kingdom geting posted as UnitedKingdom? Thanks Neil -- ** Archive:

Re: [ cf-dev ] CFHTTp stripping spaces

2003-03-28 Thread Tom Smith
are you using httpparam? - Original Message - From: Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, March 28, 2003 3:09 PM Subject: [ cf-dev ] CFHTTp stripping spaces Anyone had problems with CFHTTP and CF45 where, when it posts to an external page it

RE: [ cf-dev ] CFHTTp stripping spaces

2003-03-28 Thread Robertson-Ravo, Neil (RX)
Yepbut I have looked into any bugs and it doesnt seem to be a cause? unless you guys no different! -Original Message- From: Tom Smith [mailto:[EMAIL PROTECTED] Sent: 28 March 2003 15:20 To: [EMAIL PROTECTED] Subject: Re: [ cf-dev ] CFHTTp stripping spaces are you using httpparam?