file size

2001-06-11 Thread Steve Vosloo
Is there any way to dynamically display the size of a file? I display lists of PDF links and need to show the size of each file after the title. Although all the pdf's are in the same folder, they are linked to from various pages. Thanks, Steve Development Manager Vardus Internet Solutions (S

File size

2004-11-03 Thread Parker, Kevin
Is it possible to determine the size of a file in CFML? TIA!! ++ Kevin Parker Web Services Manager WorkCover Corporation p: 08 8233 2548 m: 0418 806 166 e: [EMAIL PROTECTED] w: www.workcover.com ++ This e

Check file size?

2004-01-30 Thread Burns, John
Is there a simple way to check a file's size on Linux using CF5?  CFMX 6.1 is being  upgraded in the next week or two, so that would work also if you have a solution in that direction.  No tags are disabled. John [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Se

Re:Check file size?

2004-01-30 Thread Michael Dinowitz
CFDIRECTORY returns the file size when you run it. File Size = qFile.Size >Is there a simple way to check a file's size on Linux using CF5?  CFMX >6.1 is being  upgraded in the next week or two, so that would work also >if you have a solution in that direction.  No tags are disa

Re:Check file size?

2004-01-30 Thread Stuart Kidd
On the same topic, is there a way of checking the file size before CF uploads?  Otherwise you upload a 1mb file only to find that it's over the limit that you wanted to set (eg. 75kb) causing unnecessary bandwidth use. Can it be done a better way? Stuart -- Original Me

RE: file size

2001-06-11 Thread David Shadovitz
Sure. Do a on the PDF files in that directory, and then you've got access to the size of each as qPDF.Size -David On Monday, June 11, 2001 3:37 AM, Steve Vosloo [SMTP:[EMAIL PROTECTED]] wrote: > Is there any way to dynamically display the size of a file? > > I display lists of PDF links and

RE: file size

2001-06-11 Thread Larry Junker
>From CFusion Docs for CFDIRECTORY: CFDIRECTORY Example CFDIRECTORY Example -Original Message- From: Steve Vosloo [mailto:[EMAIL PROTECTED]] Sent: Monday, June 11, 2001 5:37 AM To: CF-Talk Subject: file size Is there any way to dynamically display the size

RE: file size

2001-06-11 Thread Steve Vosloo
Thanks. > -Original Message- > From: David Shadovitz [mailto:[EMAIL PROTECTED]] > Sent: Monday, June 11, 2001 3:07 PM > To: CF-Talk > Subject: RE: file size > > > Sure. Do a FILTER="*.pdf"> on the PDF > files in that directory, and then you

Re: File size

2004-11-03 Thread Qasim Rasheed
I am not sure about cffile or cfdirectory, however using some native Java classes, I am confident that you can get this information. On Thu, 4 Nov 2004 14:23:46 +1030, Parker, Kevin <[EMAIL PROTECTED]> wrote: > Is it possible to determine the size of a file in CFML? > > TIA!! > > ++ >

Re: File size

2004-11-03 Thread Barney Boisvert
Here's two methods, one with pure CFML, and one using Java. #fileinfo.size# #createObject("java", "java.io.File").init(filename).length()# cheers, barneyb On Thu, 4 Nov 2004 14:23:46 +1030, Parker, Kevin <[EMAIL PROTECTED]> wrote: > Is it possible to determine the size of a file in CFML? >

Determine a file size

2000-08-23 Thread Peter Benoit
Hi, I'd like to determine the size of say a .pdf and present that information on screen. Is this possible in Cold Fusion? Thanks, Pete -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe

Access2000 file size limits?

2002-04-09 Thread Jeff Green
Was wondering what file size limits Access2000 DB have? TIA, Jeff __ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. FAQ: http://www.thenetprofits.co.uk

limiting upload file size

2000-07-02 Thread Chris Giminez
I am permitting a user to upload their resume as an option when inquiring for employment. This file should never exceed 1Mb and will usually be much less. I'm using cffile to write the file to the server, then attaching it with cfmail to go to my client. How can I detect the size of the file prio

RE: Check file size?

2004-01-30 Thread Burns, John
lk Subject: Re:Check file size? CFDIRECTORY returns the file size when you run it. FILTER="functions.cfm"> File Size = qFile.Size >Is there a simple way to check a file's size on Linux using CF5?  CFMX >6.1 is being  upgraded in the next week or two, so that would work als

Re: Re:Check file size?

2004-01-30 Thread Massimo Foti
> On the same topic, is there a way of checking the file size before CF uploads? _javascript_ can do that for images. If you use DW you can try this: http://www.massimocorner.com/dw/behaviors/check_img_upload.mxp Massimo Foti http://www.massimocorner.com Co-Aut

RE: Check file size?

2004-01-30 Thread Burns, John
1. A user chooses a file in a form and submits it. 2. I pop open a new window passing the result of cgi.content_length and form.filename to the new window (before I do the cffile action=""> to upload the file) 3. In the pop-up, I do a cfdirectory action="" filter="file

RE: Check file size?

2004-01-30 Thread Bryan F. Hogan
In order to get the file size it will have to be uploaded first. Which defeats the purpose of your progress bar. It can be done with the ActiveX or something but then you have the security issues. -Original Message- From: Burns, John [mailto:[EMAIL PROTECTED] Sent: Friday, January 30

Re: Check file size?

2004-01-30 Thread Matt Liotta
A user chooses a file in a form and submits it. > 2. I pop open a new window passing the result of cgi.content_length and > form.filename to the new window (before I do the cffile action=""> > to upload the file) > 3. In the pop-up, I do a cfdirectory action="&quo

Re: Check file size?

2004-01-30 Thread Matt Liotta
> 1. A user chooses a file in a form and submits it. > > 2. I pop open a new window passing the result of cgi.content_length > and > > form.filename to the new window (before I do the cffile > action=""> > > to upload the file) > > 3. In the pop-up,

RE: Check file size?

2004-01-30 Thread Burns, John
the upload with straight HTML) John Burns -Original Message- From: Matt Liotta [mailto:[EMAIL PROTECTED] Sent: Friday, January 30, 2004 11:02 AM To: CF-Talk Subject: Re: Check file size? Actually, this makes me think of an interesting idea. It might be interesting to create a Servlet Fi

Re: Check file size?

2004-01-30 Thread Matt Liotta
ewed source and there > were no embedded tags or special plug-ins, it was just straight HTML > (in the pop-up...not that they did the upload with straight HTML) > > John Burns > > -Original Message- > From: Matt Liotta [mailto:[EMAIL PROTECTED] > Sent: Friday, Janua

CFFTP - file size 0

2001-04-30 Thread Rudy Rustam
Everytime I uploaded the files, it always save in 0 size. While uploading with other ftp application, it works fine. Have anyone got this problem before? How do you solve it? - Rudy ~~ Structure your ColdFusion code with Fusebox. Get the officia

File size of unzipped files

2003-02-18 Thread Richmond, Pamela
I have an application that uploads a zip file from the user, unzips the file, and adds a record for each resulting file to a database. I need to determine the file size of each of the files extracted from the zip file so I can add it to the db. I am using CFX_Zip to unzip. Is there an easy way

Re: Determine a file size

2000-08-23 Thread Brad Barker
nesday, August 23, 2000 10:44 AM Subject: Determine a file size > Hi, > > I'd like to determine the size of say a .pdf and present that information on > screen. Is this possible in Cold Fusion? > > Thanks, > Pete > > ---

RE: Determine a file size

2000-08-23 Thread DeVoil, Nick
> I'd like to determine the size of say a .pdf and present that information on screen. Is this possible in Cold Fusion? Pete, Provided you don't have disabled, should leave the size in #query_name.size# Nick ** Informatio

RE: Determine a file size

2000-08-23 Thread Philip Arnold - ASP
dressed. If you have received this email in error please notify the system manager. ** > -Original Message- > From: Peter Benoit [mailto:[EMAIL PROTECTED]] > Sent: 23 August 2000 15:44 > To: '[EMAIL PROTECT

RE: Determine a file size

2000-08-23 Thread Peter Benoit
3, 2000 12:13 PM * To: '[EMAIL PROTECTED]' * Subject: RE: Determine a file size * * * * > I'd like to determine the size of say a .pdf and present that * information on screen. Is this possible in Cold Fusion? * * Pete, * Provided you don't have disabled, * *

Re: Determine a file size

2000-08-23 Thread Russel Madere
per's Exchange. > >- Original Message - >From: "Peter Benoit" <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]> >Sent: Wednesday, August 23, 2000 10:44 AM >Subject: Determine a file size > > > > Hi, > > > > I'd like to determine the s

Limit file size for uploads

2002-08-16 Thread YC Nyon
How do I limit a file size that is being upload to my server. If it was a 1MB limit, can I stop the process when it goes beyond the limit or must i wait till the process is done and delete it off using the CFFile tag. TIA Nyon FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http

RE: Access2000 file size limits?

2002-04-09 Thread Dan Phillips
None that I know of. However, if you are going to use them for web development, don't go over 20MB, at least IMHO Dan Phillips CFXHosting.com -Original Message- From: Jeff Green [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 09, 2002 10:38 AM To: CF-Talk Subject: Access2000 file

RE: Access2000 file size limits?

2002-04-09 Thread Mark A. Kruger - CFG
ou better compact it frequently. Realistically, if you are already concerned about file size, then access is probably not the best choice in any case... -Original Message- From: Dan Phillips [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 09, 2002 9:36 AM To: CF-Talk Subject: RE: Access2

RE: Access2000 file size limits?

2002-04-09 Thread Jeff Green
: Access2000 file size limits? None that I know of. However, if you are going to use them for web development, don't go over 20MB, at least IMHO Dan Phillips CFXHosting.com -Original Message- From: Jeff Green [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 09, 2002 10:38 AM To: CF-Talk Su

RE: Access2000 file size limits?

2002-04-09 Thread Dan Phillips
Green [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 09, 2002 10:57 AM To: CF-Talk Subject: RE: Access2000 file size limits? hehehe, Your gonna love this then :) Im using Access for temp storage of some dynamically generated code, Im approaching 400mb access .mdb file ;) jeff -Original

RE: Access2000 file size limits?

2002-04-09 Thread Mark A. Kruger - CFG
AM To: CF-Talk Subject: RE: Access2000 file size limits? hehehe, Your gonna love this then :) Im using Access for temp storage of some dynamically generated code, Im approaching 400mb access .mdb file ;) jeff -Original Message- From: Dan Phillips [mailto:[EMAIL PROTECTED]] Sent: Tues

Re: Access2000 file size limits?

2002-04-09 Thread Joseph Thompson
My 23MB Access2000 database is still holding up ok... it starts to choke when more than 60 people at a time are browsing the site but is ok around 50.. .I know.. time to upgrade :-) > Was wondering what file size limits Access2000 DB h

RE: Access2000 file size limits?

2002-04-09 Thread Tony_Petruzzi
>From Access 2000 help: Max Database size: 2GB. Anthony Petruzzi Webmaster 954-321-4703 http://www.sheriff.org -Original Message- From: Joseph Thompson [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 09, 2002 1:04 PM To: CF-Talk Subject: Re: Access2000 file size limits? My 2

RE: Access2000 file size limits?

2002-04-09 Thread Joel Blanchette
I think I saw something about 2 gigs. 400mb..that is nothing...I have a database that is 908mb!!! joel -Original Message- From: Jeff Green [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 09, 2002 9:57 AM To: CF-Talk Subject: RE: Access2000 file size limits? hehehe, Your gonna

Re: Access2000 file size limits?

2002-04-09 Thread Jochem van Dieten
Jeff Green wrote: > Was wondering what file size limits Access2000 DB have? Min(2 GB, max file size of your file system) Jochem __ This list and all House of Fusion resources hosted by CFHosting.com. The place

Re: Access2000 file size limits?

2002-04-09 Thread Kevin Miller
ing I like or would recommend. They are a PAIN to maintain and fix. Kevin > Was wondering what file size limits Access2000 DB have? > __ This list and all House of Fusion resources hosted by CFHosting.com. The place

RE: Access2000 file size limits?

2002-04-09 Thread Dave Watts
> Was wondering what file size limits Access2000 DB have? I believe that the maximum file size is 2 Gb. I've actually seen files nearly that large being used in CF applications (1.8 Gb or so). Interestingly enough, the file size by itself doesn't necessarily make that much of

RE: Access2000 file size limits?

2002-04-09 Thread Kevin Miller
cess unless you must. Kevin >>> [EMAIL PROTECTED] 04/09/02 03:07PM >>> I believe that the maximum file size is 2 Gb. I've actually seen files nearly that large being used in CF applications (1.8 Gb or so). Interestingly enough, the file size by itself doesn't necessaril

Re: Access2000 file size limits?

2002-04-09 Thread Dina Hess
haven't tried it yet...Macromedia has a custom tag called CF_Compact that claims to let you compact an Access db remotely. - Original Message - From: Kevin Miller To: CF-Talk Sent: Tuesday, April 09, 2002 5:17 PM Subject: RE: Access2000 file size limits? That

Re: Access2000 file size limits?

2002-04-09 Thread Dina Hess
oops..sorry, Jochem. CF_Compact is available at http://www.cfcomet.com/cfcomet/ author: Jochem van Dieten - Original Message - From: Dina Hess To: CF-Talk Sent: Tuesday, April 09, 2002 11:05 PM Subject: Re: Access2000 file size limits? haven't tried it yet...Macro

RE: Access2000 file size limits?

2002-04-09 Thread Peter Tilbrook
Access is good for quick and dirty database design especially for testing. Then "upsize it" to SQL Server (if you have it). Enterprise Manager can then be used to make adjustments to the SQL database. Haven't used Access XP yet but it's probably even better. >>Snip<< There are free alterna

file size after verity search

2000-05-24 Thread cftalk
How can I get and dsiplay the size of a file that is being searched by Verity in a resultpage ? As I look upon the attributes of I cannot find this parameter. Uwe SD Solutions Uwe Degenhardt Fon: 08122/903791 Fax: 08122/903792 Web: http://www.sdsolutions.de E-Mail: [EMAIL PROTECTED] -

Re: limiting upload file size

2000-07-02 Thread Seth Petry-Johnson
> How can I detect the size of the file prior to upload to prevent someone > from maliciously uploading a 100MB file (or worse!). I know I can see it > with #file.filesize# but this is only after the upload, right? I'm afraid you really can't do this with any server side programming (such as CF).

Re: limiting upload file size

2000-07-02 Thread Seth Petry-Johnson
> I've never tried it, but you might be able to use JavaScript to do some sort > of test on the file data before the upload completes. This has peaked my > interest, so I'm going to look into it... I'll post a follow up if I find > anything useful. I did some searching of the comp.lang.javascrip

Re: limiting upload file size

2000-07-02 Thread rkeniger
>I want to not upload at all if the file is bigger than 1MB. How can this be >done? I can't think of a way to do this, but while I was looking around for a solution I found this page about file upload fields which is quite informative: http://www.hut.fi/u/jkorpela/forms/file.html I hope this

Re: limiting upload file size

2000-07-02 Thread pan
From: Chris Giminez <[EMAIL PROTECTED]> > > How can I detect the size of the file prior to upload to prevent someone > from maliciously uploading a 100MB file (or worse!). I know I can see it > with #file.filesize# but this is only after the upload, right? > As Seth mentioned, you are going t

File Size limit with CFFile?

2002-07-02 Thread Thanh Nguyen
Is there a limit on the file size using CFFILE? I have a simple program that helps clients upload files to our server, but they can't upload files that's over 30 MB. Is this a browser issue or server issue? Thanks, Th

Checking file size before upload.

2001-10-24 Thread Lon Lentz
Is there a way to check the size of a file before the server CFFile-Uploads it? Lon Lentz Applications Developer and CyberEntomolgist http://Proof-it-Online.Com - Free 15 Day Trial ~~ Your ad could be here. Monies from ads go to support these l

CFFILE REAL file size limit

2001-04-10 Thread Hays, Duncan
I have data in a text file I want to read, parse and save to Oracle. It's a little over 2mb. Is CF server going to choke on this? (I'd rather not crash our test server if I can help it.) This is a 1 time import so I can always break it up if I have to. Duncan Hays Peace Corps ~~

Re: CFFTP - file size 0

2001-04-30 Thread Kevin Schmidt
Make sure you specify the full path of where you want the file to go...Drive letter and all! Kevin - Original Message - From: "Rudy Rustam" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, April 30, 2001 2:15 AM Subject: CFFTP - file

Getting File Size with Java

2005-02-22 Thread cftalk
Can someone help me in getting started in going underneath the Java hood and to retrieve a file size of a file sitting on a server. I know I can do this with cffile, but I want to see what type of performance difference the Java class will give me. Thx! Ricky Fritzsching

Get file size on UNIX?

2005-04-28 Thread Burns, John D
I'm not a unix guy so I appologize for the (hopefully) easy question. What's the easiest way to get the file size of a file that is already sitting on the server? I need to loop over a list of files and save the file size and name of each file to a db. Any help that can be offere

RE: File size of unzipped files

2003-02-18 Thread Raymond Camden
day, February 18, 2003 8:01 AM > To: CF-Talk > Subject: File size of unzipped files > > > I have an application that uploads a zip file from the user, > unzips the file, and adds a record for each resulting file to > a database. I need to determine the file size of each of

RE: CFFILE upload max. file size?

2003-06-11 Thread Trey Rouse
vices - Rice University > -Original Message- > From: Andrew Golden [mailto:[EMAIL PROTECTED] > Sent: Tuesday, May 13, 2003 12:35 PM > To: CF-Talk > Subject: CFFILE upload max. file size? > > Does anyone know if there is a maximum file size that can be transferred > us

RE: CFFILE upload max. file size?

2003-06-11 Thread Stacy Young
003 3:47 PM To: CF-Talk Subject: RE: CFFILE upload max. file size? There is a bug in IIS that limits the file upload size. Its tricky to put a number on it, but anything over 4 megs on a 100mbit line will likely send your server running never to return. It has nothing to do with memory allocation,

Re: Limit file size for uploads

2002-08-16 Thread Douglas Brown
You can only check the file size once the file is uploaded to the server, so I guess the answer to your question would be to delete the file if it is too big, as you suggested. Douglas Brown Email: [EMAIL PROTECTED] - Original Message - From: "YC Nyon" <[EMAIL PROTECTED]&

Re: Limit file size for uploads

2002-08-17 Thread Gyrus
- Original Message - From: "YC Nyon" <[EMAIL PROTECTED]> > How do I limit a file size that is being upload to my server. > If it was a 1MB limit, can I stop the process when it goes beyond the limit > or must i wait till the process is done and delete it o

Re: Limit file size for uploads

2002-08-17 Thread Yves Arsenault
I believe that you can't check the file size until the file is loaded on the server. Afterwards you can check the size and delete. (With the FILE.FileSize or CFFILE.FileSize variable) Yves - Original Message - From: "YC Nyon" <[EMAIL PROTECTED]> To: "CF-Talk

Re: limiting upload file size - solution

2000-07-03 Thread Justin v0.9 MacCarthy
Hi all , To do this use you can use the CGI.CONTENT_LENGTH variable Justin MacCarthy - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, July 03, 2000 3:04 AM Subject: Re: limiting upload file size > > > > > >

Re: limiting upload file size - solution

2000-07-03 Thread Joel Firestone
I just had to do this recently. I found the tutorial here. Check it out: http://www.teamallaire.com/tutorials/limitFileUploadSize.cfm Joel : To do this use you can use the : CGI.CONTENT_LENGTH variable : : Justin MacCarthy

RE: limiting upload file size - solution

2000-07-03 Thread Dave Watts
> : To do this use you can use the CGI.CONTENT_LENGTH variable > I just had to do this recently. I found the tutorial here. > Check it out: > > http://www.teamallaire.com/tutorials/limitFileUploadSize.cfm Unfortunately, relying on CGI.CONTENT_LENGTH doesn't prevent a user from uploading a f

Re: limiting upload file size - test

2000-07-03 Thread pan
From: Dave Watts <[EMAIL PROTECTED]> > > : To do this use you can use the CGI.CONTENT_LENGTH variable > > > I just had to do this recently. I found the tutorial here. > > Check it out: > > > > http://www.teamallaire.com/tutorials/limitFileUploadSize.cfm > > Unfortunately, relying on CGI.CON

Re: limiting upload file size - solution

2000-07-04 Thread Larry W. Virden
Re: preventing uploads of large files vs not keeping large files after upload Note that depending on client side support means that you require users to turn on javascript to use your site. Many users won't / don't / can't have javascript turned on. Be sure you know your audience before locking

Re: limiting upload file size - solution

2000-07-04 Thread paul smith
What percentage? Which classes of users? best, paul At 05:30 AM 7/4/00 -0400, you wrote: >Many users won't / don't / can't have >javascript turned on. -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe vi

RE: limiting upload file size - solution

2000-07-04 Thread Stephen Moretti
You'll probably find that a lot of the large corporate users will have Java prohibited by their firewall, as it is seen as a security risk. Particularly the latest version of Java which no longer resides in a sandbox. A lot of the larger corps. will disable it because they will lose the big contr

RE: limiting upload file size - test

2000-07-04 Thread Dave Watts
> I was sure cgi.content_length wouldn't work either, but since I > hadn't tried the method I tested it to get some empirical data. > > It is all server side. At least with WebSite, cgi.content_length > isn't available until after the file is transmitted. This is true for any web server, as the c

RE: limiting upload file size - test

2000-07-04 Thread lsellers
> This is true for any web server, as the content length is in the > header for > the HTTP request which contains the file itself. It's a MIME thing; the > browser says, "Here's the data string, and it's x characters long." > > Dave Watts, CTO, Fig Leaf Software > http://www.figleaf.com/ > voice:

RE: limiting upload file size - test

2000-07-05 Thread Dave Watts
> Hmm. CF handles all http in blocks. It doesn't stream any of > it. But you... might, be able to write a cgi/dll that you can > post an upload form to and have the cgi abort the process > immediately if the file is above a certain length. > > I don't recall offhand what the headers are like for a

RE: limiting upload file size - test

2000-07-05 Thread lsellers
> The content length for a POST is returned in the HTTP request header, and > the actual data is in the body of the request. > > It's not only outside of CF, but it wouldn't work with standard > web servers, > which even for CGI applications handle all of the data before the CGI > application get

Re: File Size limit with CFFile?

2002-07-02 Thread Douglas Brown
Well if this is IIS, you can limit the message size through the SMTP settings Douglas Brown Email: [EMAIL PROTECTED] - Original Message - From: "Thanh Nguyen" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, July 02, 2002 3:18

RE: File Size limit with CFFile?

2002-07-02 Thread Tony Gruen
ginal Message- From: Thanh Nguyen [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 02, 2002 3:18 PM To: CF-Talk Subject: File Size limit with CFFile? Is there a limit on the file size using CFFILE? I have a simple program that helps clients upload files to our server, but they can't up

Re: File Size limit with CFFile?

2002-07-02 Thread Kevin Miller
. Third, you need to monitor disk space usage. Good luck! Kevin >>> [EMAIL PROTECTED] 07/02/02 03:18PM >>> Is there a limit on the file size using CFFILE? I have a simple program that helps clients upload files to our server, but they can't upload files that's over 30 MB

RE: File Size limit with CFFile?

2002-07-02 Thread Matt Liotta
Could be a proxy that limits the size of requests. -Matt > -Original Message- > From: Thanh Nguyen [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, July 02, 2002 3:18 PM > To: CF-Talk > Subject: File Size limit with CFFile? > > Is there a limit on the file size usin

RE: File Size limit with CFFile?

2002-07-02 Thread MW
26 PM > To: CF-Talk > Subject: RE: File Size limit with CFFile? > > Thanh, > The restriction is primary available system memory on the server (RAM). > CFFILE moves the uploaded file into available system RAM BEFORE writing it > to the hard drive. If you're running Windows

RE: File Size limit with CFFile?

2002-07-03 Thread Thanh Nguyen
Matt, That's an interesting way to do it. I'll look into that. Thanks. Thanh -Original Message- From: MW [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 02, 2002 4:08 PM To: CF-Talk Subject: RE: File Size limit with CFFile? We had a terrible time with CFFile and uploads.

RE: File Size limit with CFFile?

2002-07-03 Thread Matt Liotta
Nguyen [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, July 03, 2002 10:56 AM > To: CF-Talk > Subject: RE: File Size limit with CFFile? > > Matt, > > That's an interesting way to do it. I'll look into that. > > Thanks. > > Thanh > > -Original Me

RE: Checking file size before upload.

2001-10-24 Thread Joseph DeVore
Javascript. Joseph DeVore VeloxWeb Technologies -Original Message- From: Lon Lentz [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 23, 2001 1:07 PM To: CF-Talk Subject: Checking file size before upload. Is there a way to check the size of a file before the server CFFile-Uploads

Re: Checking file size before upload.

2001-10-24 Thread Massimo Foti
"Lon Lentz" <[EMAIL PROTECTED]> wrote in message > Is there a way to check the size of a file before the server > CFFile-Uploads it? Something like this should help you getting started: WriteOutPut("The selected file's size is greater than the " & #tmtFileSize# & "bytes maximun size

RE: Checking file size before upload.

2001-10-24 Thread Tilbrook, Peter
Lentz [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 24 October 2001 6:07 To: CF-Talk Subject: Checking file size before upload. Is there a way to check the size of a file before the server CFFile-Uploads it? Lon Lentz Applications Developer and CyberEntomolgist http://Proof-it-Online.Com - Fr

Re: Checking file size before upload.

2001-10-25 Thread Lewis Sellers
On Thu, 25 Oct 2001 16:51:35 +1000, "Tilbrook, Peter" <[EMAIL PROTECTED]> wrote: >I don't thinks so. At least not with CF as standard. I vaguely recall writing a custom http server and cfx to handle getting raw post data... I believe I intended to allow you to set a byte-limit and have the serve

RE: Checking file size before upload.

2001-10-25 Thread Mike Amburn
and how would you do it with JavaScript? -Original Message- From: Joseph DeVore [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 25, 2001 1:13 AM To: CF-Talk Subject: RE: Checking file size before upload. Javascript. Joseph DeVore VeloxWeb Technologies -Original Message

Re: Checking file size before upload.

2001-10-25 Thread Jon Hall
for an applet like JUpload to be included with ColdFusion as uploading files is always one of the biggest problems developers have. jon - Original Message - From: "Mike Amburn" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, October 25

Re: Checking file size before upload.

2001-10-25 Thread Massimo Foti
"Jon Hall" <[EMAIL PROTECTED]> wrote in message news:016501c15d87$53a9a740 > I dont think it is possible with javascript. In order for this to be true, > either the script would need access to the local filesystem, which it does > not...or the browser would store the filesize of the selected file

Re: Checking file size before upload.

2001-10-25 Thread Jon Hall
with a few modifications. jon - Original Message - From: "Massimo Foti" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, October 25, 2001 4:31 PM Subject: Re: Checking file size before upload. > > It's feasible, even if it&#

RE: Checking file size before upload.

2001-10-25 Thread Ron Hornbaker
n the web where we could see it work? Or send it to me w/o linewraps off-list: [EMAIL PROTECTED]? Thanks, Ron > -Original Message- > From: Massimo Foti [mailto:[EMAIL PROTECTED]] > Sent: Thursday, October 25, 2001 3:32 PM > To: CF-Talk > Subject: Re: Checking file size

Re: Checking file size before upload.

2001-10-25 Thread Massimo Foti
file from the users hd using the same > concept with a few modifications. Well, it may be, but there aren't too many info you can grab from a file this way. For images you can take dimensions and file size... I have no idea if you could grab dangerous info pointing to a text file. Anyway,

RE: Checking file size before upload.

2001-10-25 Thread Lee Fuller
Ditto > -Original Message- > From: Ron Hornbaker [mailto:[EMAIL PROTECTED]] > Sent: Thursday, October 25, 2001 2:50 PM > To: CF-Talk > Subject: RE: Checking file size before upload. > > > Massimo, > > Try as I might, I can't get your script to w

Re: Checking file size before upload.

2001-10-25 Thread Massimo Foti
"Ron Hornbaker" <[EMAIL PROTECTED]> wrote in message > Try as I might, I can't get your script to work. I've gone through > replacing hard carriage returns with spaces where they should be (the > message got wrapped), but it's not working, and not throwing any errors > with IE5.5. > > Any chance y

Re: Checking file size before upload.

2001-10-25 Thread Matt Robertson
Well, is this thing just too cool or what? Works like a charm. Thanks, Massimo! Any compatibility issues with regard to browsers and the js used? --- Matt Robertson[EMAIL PROTECTED] MSB Designs, Inc., www.mysecretbase.com ---

Re: Checking file size before upload.

2001-10-25 Thread Massimo Foti
"Matt Robertson" <[EMAIL PROTECTED]> wrote in message > Well, is this thing just too cool or what? Works like a charm. Thanks, Massimo! Any compatibility issues with regard to browsers and the js used? No NN 4 and no Mac browsers, but it fails silentely on both cases. The reason why it fails o

RE: Checking file size before upload.

2001-10-26 Thread Lon Lentz
This is very helpful, and pretty impressive. Thank you. "Ron Hornbaker" <[EMAIL PROTECTED]> wrote in message > Try as I might, I can't get your script to work. I've gone through > replacing hard carriage returns with spaces where they should be (the > message got wrapped), but it's not workin

CFFILE Action=READ --> MAX file size?

2000-12-02 Thread Eric Fickes
Hello all, I was wondering if anybody knew the max file size that CFSERVER can read using CFILE Action=READ. I have a CF log reader page and a coworker came to me with a 270m log file. I tried and tried to get my page to read it but I never could. Any ideas? Oh yeah, does anybody have any CF

RE: CFFILE REAL file size limit

2001-04-10 Thread Dylan Bromby
nope. i've uploaded files MUCH bigger than that using CFFILE. DB -Original Message- From: Hays, Duncan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 10, 2001 12:40 PM To: CF-Talk Subject: CFFILE REAL file size limit I have data in a text file I want to read, parse and save to O

MS SQL 7/2k File Size

2001-08-29 Thread BEN MORRIS
List, Does anyone know of a way in SQL (as opposed to enterprise manager) to get the file size of a MS SQL database? Thanks in advance, Ben Morris ~~ Structure your ColdFusion code with Fusebox. Get the official book at http

Re: Getting File Size with Java

2005-02-22 Thread Bryan Stevenson
.com - Original Message - From: <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Tuesday, February 22, 2005 10:30 AM Subject: Getting File Size with Java > Can someone help me in getting started in going underneath the Java hood > and > to retrieve a file size of a file sitting on

RE: Getting File Size with Java

2005-02-22 Thread Ricky Fritzsching
Bryan: Thx for the snippet! Works perfectly! Have any more in your library you want to share?? R -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 22, 2005 12:37 PM To: CF-Talk Subject: Re: Getting File Size with Java Hey Ricky, try this

Re: Getting File Size with Java

2005-02-22 Thread Bryan Stevenson
Glad it's doing the trick ;-) .and yep...I've got all kinds (too many to listI've been at this a while...hehe)if you're after anything specific...post away! Cheers Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fa

  1   2   >