Welcome Guest, Not a member yet? Register   Sign In
Upload File type
#1

[eluser]Yash[/eluser]
Hi,

I've set this


$config['upload_path'] = './uploads/';
$config['allowed_types'] = 'gif|jpg|png|flv|avi';
$config['max_size'] = '10000';
$config['max_width'] = '1024';
$config['max_height'] = '768';


in proper location but when I try to load some.flv files..it shows

The filetype you are attempting to upload is not allowed


Is there any more setting...

Thank you
#2

[eluser]xwero[/eluser]
flv is not a known type in the config/mimes.php file. You should make a simple upload form and check the mime of the file after the post using
Code:
echo $_FILES['fileinputname']['type'];

And then add the flv key with the mimetype to the mimes.php file.
#3

[eluser]Yash[/eluser]
You are really nice guy. I mean u know a lot.

THANK YOU xwero




Theme © iAndrew 2016 - Forum software by © MyBB