Re: HELP!!! Character Encoding still

2003-01-20 Thread Paul Hastings
sending this: ?xml version=1.0 encoding=iso-8859-1? AccessLicenseAgreementRequest xml:lang=en-US Request TransactionReference CustomerContextLicense Request/CustomerContext XpciVersion1.0001/XpciVersion /TransactionReference RequestActionAccessLicense/RequestAction

RE: OT: Book Recomendations on UI

2003-01-20 Thread Jim Davis
I've many listed here: http://www.depressedpress.com/DepressedPress/Content/WebDesign/Books/Ind ex.cfm In general Designing Web Usabilty or Homepage Usability (Neilson) are good primers. The trio of Edward Tufte books are INCREDIBLE, but rather academic (they don't focus on the web at all, but

RE: validate=regular_expression

2003-01-20 Thread Bryan F. Hogan
Pefect, you saved the day. Thanks! Bryan F. Hogan Director of Internet Development Macromedia Certified ColdFusion MX Developer Digital Bay Media, Inc. 1-877-72DIGITAL -Original Message- From: Ben

Re: Deleting a row from a query?

2003-01-20 Thread Stephen Moretti
OK... See now, when I was writing the other email it occurred to me that a query is actually a structure with an associative array for each column and not quite as I've described it below, so instead... // Find the row in the array for (i=1;i=ArrayLen(YourQuery[PrimaryKey]); i=i+1) { if

Re: Idea Incubator Article : CFMX TinyMUSH 4 integration

2003-01-20 Thread William Wheatley
Tinymush sucks ;P use pennmush instead i already have them integrated with mysql support ;) - Original Message - From: Todd Rafferty [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, January 20, 2003 6:39 AM Subject: Idea Incubator Article : CFMX TinyMUSH 4 integration

Re: OT: Book Recomendations on UI

2003-01-20 Thread Bruce Sorge
Thanks to all who replied. The books you all recommend are the ones that I have had my eye on for a while now. Now I just have to decide which ones to get. ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4

Re: Idea Incubator Article : CFMX TinyMUSH 4 integration

2003-01-20 Thread William Wheatley
and i did it all with PHP not cf since my server i was on when i first wrote the mysql integration was php only. But you can specify the password for mysql on the fly you just gotta do a little tweaking using the MYSQL C api. Mail me off list sometime we can chitty chat about it - Original

RE: Deleting a row from a query?

2003-01-20 Thread Tony Weeg
why not deal with this on your presentation layer? cfif NOT yourQuery.KeyID eq X Show good rows, but not the one equal to X /cfif just wondering? ...tony Tony Weeg Senior Web Developer UnCertified Advanced ColdFusion Developer Information System Design Navtrak, Inc. Mobile workforce

[OT] Re: Idea Incubator Article : CFMX TinyMUSH 4 integration

2003-01-20 Thread Todd
William, I think you're missing the point of the article. :) Anyway, I just thought it was nifty/cool/fun thing, that's all. I'm not really a big fan of Pennmush.. I prefer MUX or TM3 for some reason. I was just trying to state in the article, you can do a lot of crazy extra stuff with cfmx

Re: Deleting a row from a query?

2003-01-20 Thread ksuh
How about something like: cfquery name=qry1 datasource=myDB SELECT * FROM myTable /cfquery cfoutput query=qry1 #userID#br/ /cfoutput hr cfquery name=qry1 dbtype=query SELECT * FROM qry1 where userID != 'KSUH' /cfquery cfoutput query=qry1 #userID#br/

Re: Goodbye cruel world

2003-01-20 Thread Dave Lyons
I forgot about that. I did have several problems when using norton securities, then I switched to zone alarm (which was a mistake) then finally found that sygates personal firewall worked the best. Defiantly leave the virus protection on though. 5000 files is a lot though to do at 1 time -

labeling numbers in cfgraph in cf 5

2003-01-20 Thread cf-talk
Hi list, in cfgraph I want to scale from 0 to 100 (USD on value-axis) But the amounts are a bit too big. How can I say for 100 = 1 Mio. (which I would prefer to write) Is there an option to label it different ? Uwe ~|

RE: Deleting a row from a query?

2003-01-20 Thread Simon Horwith
I believe there's a function at cflib.org for this. ~Simon Simon Horwith Macromedia Certified Instructor Certified Advanced ColdFusion MX Developer Certified Flash MX Developer CFDJList - List Administrator Fig Leaf Software 1400 16th St NW, # 220 Washington DC 20036 202.797.6570 (direct

CFMX Compiled Code and Remote Source

2003-01-20 Thread Mark Johnson
We have our cf source code located remotely with multiple webservers pointing at this code. Obviously for each webserver that points at the source it will have to compile the code and store it locally for execution. We recently upgraded our file server which hold the source code. In the process

CFserver Timesout when uploading a 13mb file

2003-01-20 Thread Michael E. Carluen
I have a 13mb .doc file being uploaded using a simple CFFILE. The server timesout. After I zipped the file down to a 9mb file, it was OK. Does anyone know what triggers the limitation? Thanks Michael ~| Archives:

Re: OT: Book Recomendations on UI

2003-01-20 Thread I-Lin Kuo
I like Don't Make Me Think by Steve Krug --- Bruce Sorge [EMAIL PROTECTED] wrote: Sorry for the off-topic post. I have been doing back-end programming for quite a while, and now I would like to get into actual design. Creating the UI. I have been in BN quite often, and have looked at several

Re: Google API

2003-01-20 Thread David Hannum \(Ohio University\)
Subject: Google API From: Pablo Varando [EMAIL PROTECTED] Date: Mon, 20 Jan 2003 01:24:15 -0600 Thread: http://www.houseoffusion.com/cf_lists/index.cfm?method=messagesthreadid=207 17forumid=4#104723 I'm using this on one of my sites! The best thing you can do is get CFDev's Google API CFX

RE: CFMX Compiled Code and Remote Source

2003-01-20 Thread Samuel Neff
If you're not in active development, turn on trusted cache. That and precompile the classes and you won't actually even need the CFM source at runtime. You can't copy the class files though--they're compiled with machine specific info in them. You can use the precompiler even when not using the

Re: CFserver Timesout when uploading a 13mb file

2003-01-20 Thread Todd
RAM -- CFFILE I believe uploads into pure ram before it dumps to disk. ~Todd At 11:40 AM 1/20/2003 -0800, you wrote: I have a 13mb .doc file being uploaded using a simple CFFILE. The server timesout. After I zipped the file down to a 9mb file, it was OK. Does anyone know what triggers the

Re: CFserver Timesout when uploading a 13mb file

2003-01-20 Thread Paris Lundis
I haven't heard of any good explanation as to why much above 9 megs things break :) You can effectively crash any CF server with this I have tried this across several servers with differing CPU and memory and lack thereof.. all attempts above 9Megs pretty much crippled the server...

RE: CFserver Timesout when uploading a 13mb file

2003-01-20 Thread Joshua Miller
I thought it saved it as a TMP file ??? Does it actually store in RAM ? Joshua Miller Head Programmer / IT Manager Garrison Enterprises Inc. www.garrisonenterprises.net [EMAIL PROTECTED] (704) 569-9044 ext. 254

Re: OT: Book Recomendations on UI

2003-01-20 Thread jon hall
Not books, but here are some great blogs for more tangible learning. Books have to stay pretty theorhetical since the technology and prevailing in style of the web are changing so much. You can pretty much follow the links on these three to most of the UI resources on the web.

Instant Messaging using CF

2003-01-20 Thread Chad
my client wants a custom IM application for his website. I downloaded a free IM app from macromedias website, the only thing is finding a way to get the application window to pop-up on User B's computer when user A on a different computer tries to IM them. Can this even be done using ColdFusion

RE: Deleting a row from a query?

2003-01-20 Thread Dowdell, Jason G
Great tips guys. I appreciate all of your input. The reason I am researching this is for an xml based content management system. A coworker of mine did some tests proving that with files 5meg it's faster to perform a cffile rather than a query to a db. With that said I needed an efficient

NEWBE question- how do you get a list of field names from an MS Access DB

2003-01-20 Thread Rebecca Joy Sherman
Sorry I have two questions? 1. How do you get a list of field names from an MS Access DB? 2. I have two tables. I need to populate one with information from the other both of the same structure. I tried cfquery datasource=#db# Name=boo Select * from table123 /cfquery cfoutput query=boo

Re: NEWBE question- how do you get a list of field names from an MS Access DB

2003-01-20 Thread Dave Carabetta
Sorry I have two questions? 1. How do you get a list of field names from an MS Access DB? 2. I have two tables. I need to populate one with information from the other both of the same structure. I tried cfquery datasource=#db# Name=boo Select * from table123 /cfquery cfoutput query=boo cfinsert

Goodbye cruel world

2003-01-20 Thread Mike Miessen
SWOT but surely an adventure through the backwoods. This all started sometime after I first installed Norton. About 2 days after I got my new machine. It may not be Norton’s fault I don't know but I had my share of difficulties ,seemingly, with Norton. I run XP as I said and I also work from

RE: Cfcontent force download

2003-01-20 Thread Fuzion - CFTalk
Hmm, attach has always worked for me, maybe it defaults to it? Darryl -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED]] Posted At: Monday, 20 January 2003 10:38 PM Posted To: CFTalk Conversation: Cfcontent force download Subject: Re: Cfcontent force download Fuzion

RE: CFMX Compiled Code and Remote Source

2003-01-20 Thread Mark Johnson
Sam, Unfortunately these things are in producation and we can't use trusted cache based on how our app functions. So source is extremely important. The news about being able to copy binaries is extremely dissapointing. I have not tried the precompiler, but was told that it wouldn't work with

Re: PayPal IPN

2003-01-20 Thread Dave Lyons
has anyone tried ibill yet? at the moment this is my big stumbling block in coldfusion (how to implement cc billing) anyone know of any good tutorials on the subject (besides this paypal one) - Original Message - From: Candace Cottrell [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED]

Re: Goodbye cruel world

2003-01-20 Thread Dave Lyons
damn dude, lol! always more to the story... do u use DSL? if you do you might wanna check with the provider and make sure they don't have blocks on. If I was you I defiantly would debug, fdisk, the whole 9 yards and re-install from the ground up. I do this every few months just to get all the crap

RE: Goodbye cruel world

2003-01-20 Thread Andy Ousterhout
Mike, It has happened to me a couple of times, each because I had disabled Anti-Virus for an install and forgotten to re-enable. I got some really nasty ones. Sorry for the pain. While you should probably start with a clean install (I formatted all of my hard-drives each time) you hopefully

we all need to drop our tools and go get this

2003-01-20 Thread Dave Lyons
I thought it was interesting how they have now added snippets http://www.eweek.com/article2/0,3959,834713,00.asp Dave ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

we all need to drop our tools and go get this

2003-01-20 Thread charlie griefer
dunno 'bout you...but i wasn't holding my tool (sorry, there was just *no* way i could resist that one) ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Re: we all need to drop our tools and go get this

2003-01-20 Thread ksuh
Holy Jebus! With this tool, I should be able to do everything that my grand master Microsoft commands me to do! - Original Message - From: Dave Lyons [EMAIL PROTECTED] Date: Monday, January 20, 2003 2:16 pm Subject: we all need to drop our tools and go get this I thought it was

RE: we all need to drop our tools and go get this

2003-01-20 Thread Ryan Kime
You first. -Original Message- From: Dave Lyons [mailto:[EMAIL PROTECTED]] Sent: Monday, January 20, 2003 3:17 PM To: CF-Talk Subject: we all need to drop our tools and go get this I thought it was interesting how they have now added snippets

Re: we all need to drop our tools and go get this

2003-01-20 Thread Dave Lyons
LOL, smart*ss!! - Original Message - From: charlie griefer [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, January 20, 2003 3:25 PM Subject: we all need to drop our tools and go get this dunno 'bout you...but i wasn't holding my tool (sorry, there was just *no* way i

RE: CFMX Compiled Code and Remote Source

2003-01-20 Thread Samuel Neff
The precompiler is basically just calling CFMX's compile command and specifying a directory to compile. You can pre-compile CFM's even when there is no web server connected and even when CFMX isn't running. I've run it on two of my servers with IIS. Sam -Original Message- From: Mark

Re: Google API

2003-01-20 Thread Pablo Varando
NP :) Pablo - Original Message - From: David Hannum (Ohio University) [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, January 20, 2003 1:44 PM Subject: Re: Google API Subject: Google API From: Pablo Varando [EMAIL PROTECTED] Date: Mon, 20 Jan 2003 01:24:15 -0600

Re: we all need to drop our tools and go get this

2003-01-20 Thread Jim Campbell
Hey, looks like it spells the end of the vti_bin directory. Not altogether bad... No, wait, it's FrontPage. Of course it is :) - Jim - Original Message - From: Ryan Kime [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, January 20, 2003 3:28 PM Subject: RE: we all need to

Re: Whitespace in CFMail

2003-01-20 Thread S . Isaac Dealey
snippage / Title:#space##space##space##space##space##space##space##sp ace##space##Trim(newContact.title)#/cfifcfif *next conditional statement here* blah blah/cfif etc. Might want to check out the repeatstring() function: Title:#repeatstring(space,9)##trim(newContact.title)# s. isaac

Re: input regex validate

2003-01-20 Thread S . Isaac Dealey
: I have a date form field which I have attempted to : validate using CF's validate=date : : Which should allow mm/dd/ but it also allows : mm/dd/yyy : : I tried to work around this by setting my validate : to regular_expression with a pattern of : ^\d\d\/\d\d\/\d\d\d\d$ which works

Re: we all need to drop our tools and go get this

2003-01-20 Thread Dave Lyons
my one and only local competitor goes around and tells everyone that its the true webmasters tool and that alone warrants them to charge a higher price! lol the sad part is that they believe it and when asked if it supports coldfusion their reply was that of course not and if was any good then

CFC's and people management

2003-01-20 Thread Gyrus
Hi all, I'm planning an MX revamp to our bespoke CMS, and I'm wondering about restructuring the way people are handled, using CFC's. In my current system there are users who can login to the admin functions. This works fine, most of the time. Only, when you get clients who have login accounts to

RE: CFMX Compiled Code and Remote Source

2003-01-20 Thread Mark Johnson
Sam, How do i run the precompile command? Mark -Original Message- From: Samuel Neff [mailto:[EMAIL PROTECTED]] Sent: Monday, January 20, 2003 1:31 PM To: CF-Talk Subject: RE: CFMX Compiled Code and Remote Source The precompiler is basically just calling CFMX's compile command and

Re: OT: Javascript MultiDimensional Array

2003-01-20 Thread S . Isaac Dealey
Looks to me like it's just not the right syntax: var holidayPackages = new Array(Explorer 60, GetAway Plus, Discovery, GetAway 300); that will give you a 1d array... if you want a 2d array, you have to manually insert the sub-array ... var holidayPackages = new Array(); var Explorer60 = new

RE: we all need to drop our tools and go get this

2003-01-20 Thread Tony Weeg
but heck, at least you have those playmates, or so you say :) we gotta see pics man...thats just too much... ...tony Tony Weeg Senior Web Developer UnCertified Advanced ColdFusion Developer Information System Design Navtrak, Inc. Mobile workforce monitoring, mapping reporting www.navtrak.net

order of messages with cfinput

2003-01-20 Thread Michael Wolter
I have a cfform with a bunch of required cfinput fields. I find that if I try to submit a blank form, the required window that pops up relates to a field in the middle of the form. Does anyone know what controls the order and if there's a way to have the messages come in the same order as

Re: we all need to drop our tools and go get this

2003-01-20 Thread Jim Campbell
Higher price? Than Homesite? I thought Dreamweaver was considerably more expensive than FrontPage (but very much worth it with the MX release) - but I haven't priced them all recently :) - Jim - Original Message - From: Dave Lyons [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent:

Re: input regex validate

2003-01-20 Thread ksuh
\d isn't a character class in CF 5 -- it's a new thing in regex for CFMX. So I'm baffled as to how \d works if you're using CF 5... I think he's using JavaScript for client-side validation, which does allow for \d in some versions.

RE: input regex validate

2003-01-20 Thread Bryan F. Hogan
Thanks for your reply Isaac. Ben Doom actually had the answer. I was using ^\d\d\/\d\d\/\d\d\d\d?$ and should have been using ^(\d\d\/\d\d\/\d\d\d\d)?$ If I do: cfinput type=text name=myDate validate=regular_expression pattern=^(\d\d\/\d\d\/\d\d\d\d)?$ It will allow

Re: Cfcontent force download

2003-01-20 Thread Jochem van Dieten
Fuzion - CFTalk wrote: Hmm, attach has always worked for me, maybe it defaults to it? That would be browser dependent. I think that browsers are supposed to ignore incorrect/unspecified headers, so it should result in the document being opened in the browser. But as I said, I usually don't

RE: input regex validate

2003-01-20 Thread Joshua Miller
You could further shorten the regex using numeric notation instead of \d\d\d\d\d pattern=^(\d{2}/\d{2}/\d{4})?$ Joshua Miller Head Programmer / IT Manager Garrison Enterprises Inc. www.garrisonenterprises.net [EMAIL PROTECTED] (704) 569-9044 ext. 254

RE: Goodbye cruel world

2003-01-20 Thread Mike Miessen
I'm using a cable service. I'm getting Norton anti-virus put on here. I don't know if I'll have to reinitialize my computer yet but will figure it out I guess :) -Original Message- From: Dave Lyons [mailto:[EMAIL PROTECTED]] Sent: Monday, January 20, 2003 4:02 PM To: CF-Talk Subject:

RE: we all need to drop our tools and go get this

2003-01-20 Thread Mike Miessen
Oh no, not more Microsnarf product development showing signs of innovation! Where ever do they get their ideas? -Original Message- From: Dave Lyons [mailto:[EMAIL PROTECTED]] Sent: Monday, January 20, 2003 4:44 PM To: CF-Talk Subject: Re: we all need to drop our tools and go get this my

RE: input regex validate

2003-01-20 Thread Bryan F. Hogan
Thanks Josh Bryan F. Hogan Director of Internet Development Macromedia Certified ColdFusion MX Developer Digital Bay Media, Inc. 1-877-72DIGITAL -Original Message- From: Joshua Miller [mailto:[EMAIL

RE: CFC's and people management

2003-01-20 Thread Cantrell, Adam
I wouldn't create separate CFC's for each group of people. I would create one people CFC and then one permissions CFC. On the permissions CFC I would have methods that looked like: listPeoplePermissions(peopleID) - maybe use this on login to set a session variable addPermission(peopleID,

RE: we all need to drop our tools and go get this

2003-01-20 Thread Cantrell, Adam
wonder what that guy did to his editor to deserve that story assignment :) Yeah... I'm gonna have to ask you to come in on Sunday to review the latest version of Front Page yeah. -Original Message- From: Dave Lyons [mailto:[EMAIL PROTECTED]] Sent: Monday, January 20, 2003 3:17 PM

Re: we all need to drop our tools and go get this

2003-01-20 Thread Dave Lyons
and it looks like you shall! if you have read my posts you know that my 1st cfm project is a singles site. (if I ever get time to work on it) The main attraction will be her, she will be doing a featured section , were members may have her rate them and blah, blah. Actually should be kinda fun

Runtime Errors - How/Where to set mapping

2003-01-20 Thread Russ
All-- When checking for validations on our forms, we're getting Runtime Errors. I'm fairly certain that we need to set up mapping to the CFIDE directory to ensure that the form is able to access all files required, but sadly, I'm not so certain how to do that. We're running RedHat, if that

Integrating C#

2003-01-20 Thread Brad Roberts
I've got an application written in C# that I need to integrate into our CF app. The C# app makes a HTTP request, grabs a WDDX packet (a query with about 15,000 records), does some intense calculations, and returns just a few variables. Unfortunately, I know nothing about C#, and the programmer

Security Issue With PayPal CF

2003-01-20 Thread Double Down, Inc.
Here is a problem I am having that I would like to hear some people's thoughts and ideas on. I am setting up a site where a person will be able to download a file once they have paid for it by using paypal as my processor. Problem I am having is one of security. I do not want to give any

Re: CFserver Timesout when uploading a 13mb file

2003-01-20 Thread S . Isaac Dealey
That's odd... I've been able to upload 13mb files through cffile... not on my own server, so unfortunately I can't provide any helpful specs to indicate what the difference might be. Pretty certain it was a windows server. I haven't heard of any good explanation as to why much above 9 megs

RE: CFserver Timesout when uploading a 13mb file

2003-01-20 Thread Michael E. Carluen
So if it is a RAM issue, short of getting a hardware upgrade, are there any other options that can be done relating to this? Thanks again. At 02:53 PM 1/20/2003 -0500, Joshua Miller wrote: I thought it saved it as a TMP file ??? Does it actually store in RAM ? Joshua Miller Head Programmer /

RE: Security Issue With PayPal CF

2003-01-20 Thread Jared Clinton
A method which I have used in the past: Give the user a temporary reference-key to the file (or URL to return to) Once the payment has been made, enter a record in the database which records the time that the file download is valid for. Only access the download file through a data driven

RE: CFserver Timesout when uploading a 13mb file

2003-01-20 Thread Scott Weikert
Maybe it's a pure timeout issue? 13mb takes longer to upload than 9mb... maybe the page is timing out normally in the time it takes for 13mb to upload, but not for 9mb. There's a URL variable - I can't remember exactly what it is, and can't find it in any of the four books I have handy -

Re: Security Issue With PayPal CF

2003-01-20 Thread Mahmut Basaran
You can use cfheader cfheader name=Location value=http://etc.com/somethinghere.zip cfheader statusCode = 302 statusText = Status Text Here -not crucial Mahmut - Original Message - From: Double Down, Inc. [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, January 20, 2003

Re: CFserver Timedout when uploading a 13mb file

2003-01-20 Thread brook
Why no use ASP and Xupload or ASPupload from http://www.aspupload.com/ -Brook At 07:03 PM 1/20/2003 -0500, you wrote: That's odd... I've been able to upload 13mb files through cffile... not on my own server, so unfortunately I can't provide any helpful specs to indicate what the difference might

RE: Security Issue With PayPal CF

2003-01-20 Thread Samuel Neff
Don't give anyone a direct link to the secured content but instead generate a unique serial number and give them a link to a handler with the serial number. getContent.cfm?serial=91080981 And then let people download with each serial number only once. If they go to the url a second time,

Re: Security Issue With PayPal CF

2003-01-20 Thread Jason Miller
I have not implemented paypal yet but just started reading the docs because I need to install a paypal payment option. If I remember correctly - their developer page and samples is pretty clear. I thought I had seen an option where you simply send paypal the amount and some items and prices to

RE: CFMX Compiled Code and Remote Source

2003-01-20 Thread Samuel Neff
From Charlie Arehart's blog: Create a batch file with these three lines: set MX_INSTALL=c:\CFusionMX set PATH=%MX_INSTALL%\runtime\bin;%MX_INSTALL%\runtime\jre\bin;%PATH% java -classpath %MX_INSTALL%\lib\cfusion.jar coldfusion.tools.Compiler -webroot %1 -webinf %MX_INSTALL%\wwwroot\WEB-INF %1

RE: Integrating C#

2003-01-20 Thread Jared Clinton
If you can, Convert your code into a component, publish it as a webservice and get him to do the same. Then use each others services. Thats what they are for, helping disparate systems interact. Regards, Jared Clinton. -Original Message- From: Brad Roberts [mailto:[EMAIL PROTECTED]]

RE: Integrating C#

2003-01-20 Thread Brad Roberts
Somehow I knew that would be the answer, just wanted to know if there were other options. Sounds easy enough... Thanks, Brad -Original Message- From: Jared Clinton [mailto:[EMAIL PROTECTED]] Sent: Monday, January 20, 2003 7:11 PM To: CF-Talk Subject: RE: Integrating C# If you

Re: Security Issue With PayPal CF

2003-01-20 Thread Pablo Varando
There's a tutorial here: http://tutorial23.easycfm.com/ That will guide you on how to implement it easily and it will show how in a step by step environment. This is the tutorial featured on PayPal's Developers Network Good luck (If you have any questions, let me know...) Pablo Varando

Re: Security Issue With PayPal CF

2003-01-20 Thread Chris Montgomery
Howdy DDInc., Monday, January 20, 2003, 5:45:33 PM, Double Down, Inc. wrote: I am also not sure if session variables will work since the person will be leaving my site to go to PayPal to fill out the payment info, before coming back to mine. Others have anwered the file download security

Re: CFMX Linux installation

2003-01-20 Thread stas
No to both. I insalled Apache 2.x and then CF eval, entering all relevant information during CF install. I'll do some research on the wsconfig program you mention. Thank you. Christian Cantrell wrote: Did you attempt to configure Apache during the CFMX installation process, or did you use the

RE: CFserver Timesout when uploading a 13mb file

2003-01-20 Thread Joshua Miller
http://url.com/page.cfm?RequestTimeout=500 However it doesn't work with CFMX - so you have to set it using cfsetting in your code. Joshua Miller Head Programmer / IT Manager Garrison Enterprises Inc. www.garrisonenterprises.net [EMAIL PROTECTED] (704) 569-9044 ext. 254

RE: CFserver Timesout when uploading a 13mb file

2003-01-20 Thread Ben Koshy
Requesttimeout doesn't work with CFMX?!?!?! Forgive my ignorance...but if that's the case, I have lots of code to rewrite... :) ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Re: CFserver Timesout when uploading a 13mb file

2003-01-20 Thread Dave Carabetta
Requesttimeout doesn't work with CFMX?!?!?! Forgive my ignorance...but if that's the case, I have lots of code to rewrite... :) Well, it still exists, just not when it's appended to a URL, as I'm sure you've used it before. Now you have to code it as an attribute of the CFSETTING tag in MX.

RE: CFserver Timesout when uploading a 13mb file

2003-01-20 Thread Mosh Teitelbaum
If it's an emergency, you can also hack out a solution along the lines of: !--- In Application.cfm --- CFIF IsDefined(URL.RequestTimeout) CFSETTING REQUESTTIMEOUT=#URL.RequestTimeout# /CFIF Granted, it's a hack, but it'll work until you have an opportunity

Re: CFserver Timesout when uploading a 13mb file

2003-01-20 Thread Christian Cantrell
I checked on this internally, and it seems that the server writes the bytes from the input stream (the file being uploaded) directly to the file system, and more specifically to a temp file that then gets moved to the specified directory (at least this is the behavior of MX and ColdFusion

Re: CFserver Timesout when uploading a 13mb file

2003-01-20 Thread Paris Lundis
Yeah, I can attest to it being totally like a DOS attack under CF5... that's what we still run... I have ran it on the same switch with the same computer feeding the file as running CF... I have tried it a desk away.. same effect, an unresponsive APP server... All in Windows of course...

Re: CFserver Timesout when uploading a 13mb file

2003-01-20 Thread brook
I can attest to the same on CF4.5. We really need a way set a file size limit and drop the connection or throw and error if it exceeds that size while uploading. Server Side. That would be great. Because even if the file is not read into RAM, if the file is HUGE, and your max simultaneous

Re: CFserver Timesout when uploading a 13mb file

2003-01-20 Thread Peter Mayer
As far as I know the file upload is handled by the web server, not the application server (coldfusion). The control is just handled over to the application server when the upload is finished. Therefore you have to set such a limit in your web server configuration (maximimum post size). In

<    1   2