Welcome Guest, Not a member yet? Register   Sign In
adding flv mimes disables the format filter
#5

[eluser]charlie spider[/eluser]
yes that will allow you to upload .flv files, ( actually the only thing that makes it work is adding 'application/octet-stream' to your mimes.php ) but the problem is that this will also allow you to upload any other type of file, like .php or .exe, or all kinds of fun stuff.

i added

Code:
if ( $filedata['file_ext'] == '.flv' )
{
--upload code here--
}
and made sure to add

Code:
unlink($filedata['full_path']);

in all appropriate locations after renaming the file and saving the info in the database.


Messages In This Thread
adding flv mimes disables the format filter - by El Forum - 01-08-2009, 01:50 PM
adding flv mimes disables the format filter - by El Forum - 02-13-2009, 06:14 PM
adding flv mimes disables the format filter - by El Forum - 04-03-2009, 12:38 AM
adding flv mimes disables the format filter - by El Forum - 04-04-2009, 05:11 PM
adding flv mimes disables the format filter - by El Forum - 04-04-2009, 05:26 PM
adding flv mimes disables the format filter - by El Forum - 04-05-2009, 10:11 AM
adding flv mimes disables the format filter - by El Forum - 09-16-2009, 09:41 AM
adding flv mimes disables the format filter - by El Forum - 11-26-2009, 10:55 AM



Theme © iAndrew 2016 - Forum software by © MyBB