On Tue, Jun 17, 2008 at 8:39 AM, Jason Pruim <[EMAIL PROTECTED]> wrote:
> Hi everyone,
>
> I am attempting to adopt some code to work more reliably then how it is
> now...
>
> What I am doing is coding a upload form where people could be uploading .zip
> files in excess of 200 MB... Yes I know that is large, but it's for a print
> shop and they get HUGE files to print from.
[snip!]

    Tweak this to meet your needs.  All .htaccess settings are
PHP_INI_ALL or PHP_INI_PERDIR in modern PHP's.

# In your .htaccess
php_flag max_execution_time 300
php_flag max_input_time 300
php_flag memory_limit 64M
php_flag post_max_size 256M
php_flag upload_max_filesize 256M


<?php
// In your script:
ignore_user_abort(1);
?>

-- 
</Daniel P. Brown>
Dedicated Servers - Intel 2.4GHz w/2TB bandwidth/mo. starting at just
$59.99/mo. with no contract!
Dedicated servers, VPS, and hosting from $2.50/mo.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to