Possible Duplicate:
Upload max size in PHP?
upload_max_filesize = 500M
post_max_size = 500M
i make these 2 settings in php.ini and upload video less than 400MB but can't upload
Possible Duplicate:
Upload max size in PHP?
upload_max_filesize = 500M
post_max_size = 500M
i make these 2 settings in php.ini and upload video less than 400MB but can't upload
It's hard to understand your question, but those variables aren't the only ones needed for a successful file uploading.
<form>
has the
proper enctype
set. <input type="hidden"
name="MAX_FILE_SIZE" value="512000"
/>
to your <form>
too. This input field specifies the maximum uploadable file size in bytes.