Can someone please ban these idiots. "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a...
ColdFusion Hosting Providers ColdFusion Hosting Providers' List brought to you by *** ColdFusion-HowTo: Yahoo's No. 1 and the biggest group for ColdFusion...
coldfusion-howto@yaho...
Oct 1, 2006 8:21 pm
39597
Hello all, I will make this short... I'm launching a website called smudt.com and it will offer music/photos from unsigned artists/models, music, interviews,...
Im trying to create a CFC file for users.. here is the code.. <cffunction name="login" returntype="boolean"> <cfargument name="username" type="string"...
You are missing your single quotes around the variables. _____ From: coldfusion-howto@yahoogroups.com [mailto:coldfusion-howto@yahoogroups.com] On Behalf Of...
my main problem is that mypassed arguments are replaced by the actual column names from the query.. ... From: Mark Bureau To: coldfusion-howto@yahoogroups.com ...
This should work (based on the limited code/info you posted).. <cffunction name="login" returntype="boolean"> <cfargument name="username" type="string"...
Hi there.. Can anybody in here post some simple scripts for uplaoding files.. thanks! Ronald A. de Leon Technical Analyst I Solutions Xchange [Non-text...
Or use cfftp ... "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed...
Just use cffile with the values sent from a form. Simple stuff. "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9...
can you include some code snippets for that?. stating where the file will be uploaded (what folder) specific filetypes will be accepted (e.g. images only) and...
http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentation&file=part_cfm.htm Or if it's broken...
It sounds like you're just starting down the path of ColdFusion and HTML. You should play around with HTML first, with forms and the like before you delve into...
Hi there.. Im really new to Coldfusion but I've been developing webpages using PHP for quite sometime now.. I'm developing a simple Project Mngt System using...
People here tend to not give answers to questions that can be figured out reading the ColdFusion documentation. Figuring things out for yourself is the best...
Hi Guys... How to configure the coldfusion server, for the script always searchs cfcomponent close of it. Flávio [Non-text portions of this message have been...
I used CFChart to build a graph. It displays OK on the screen. My problem is that I used the 'name=chart1' and format=jpeg to output the graph to a file. This...
OPS Web Page Design Specialist SUMMARY: Develops and maintains web sites for a department. Creates content when necessary, adapts existing content to a...
okay thanks! ... From: John Bartlett To: coldfusion-howto@yahoogroups.com Sent: Tuesday, October 03, 2006 12:16 AM Subject: Re: [coldfusion-howto] File uploads...
One thing that's not always clear in the documentation is that you cannot use relative pathing when you're dealing with files (i.e., ../documents/). I tend to...
What I like to do is create a variable called "RootDir" in the Application.cfm which identifies the directory the app resides in and doesn't need to be edited...
I have a string that I need to add 1 byte of padding to. These are the instructions I received, "In this case we need to pad the string by adding one byte, in...
<CFSET Str=Str & Chr(0)> ? Not sure if CF can handle a null character. I know CF5 can't process a string with chr(160) in it, it vanishes. -John ... From:...
Hey JoAnn, This _may_ work. It may vary on character set. Short answer: <cfset myString = chr(1) & myString /> Long answer: Strings can be represented as...
OK. Sigh. . . The programmers on the other end are treating each character as a single byte - adding chr(1) does add one byte to the end of my 39 character ...
Boy did I get that turned around. OK. I have the padding done. Now, back to Dmitry to find out why the encryption is failing. . . . Thanks! JoAnn A....
?? okay . . . . ;-) JoAnn A. Schlosser Sr. Manager for Information Services/Webmaster Association for Professionals in Infection Control and Epidemiology 1275...
I've always used the LJustify/RJusitfy functions to pad out a string to a specified length - if the passed in string exceeds that length already, nothing is...