Large File Upload

See all posts See thread Reply

Re: Large File Upload new!
by colin, 16 years, 9 months ago
First, you need to set the PHP limits properly (memory, upload, etc...), as well as the maximum size in the upload class.

Now, it is strongly discouraged to store files in a database, especially such large files. It would be really better to store the files on disk, and the filename in the database. Your database will collapse under the weight of all these BLOB files, and be very slow. This said, it's up to you.

What are the errors that you have? Are they from PHP, from the class?Reply