Welcome Guest, Not a member yet? Register   Sign In
Upload Error: The filetype you are attempting to upload is not allowed.
#2

[eluser]Cristian Gilè[/eluser]
From the userguide, the description for the file_name setting says:

Quote:If set CodeIgniter will rename the uploaded file to this name. The extension provided in the file name must also be an allowed file type.

Change your actual $config['file_name'] to:

Code:
$config['file_name'] = rand().time().get_extension($_FILES['image']['name']);

You can use a function like this to get the extension:

Code:
function get_extension($filename)
{
        $x = explode('.', $filename);
        return '.'.end($x);
}

Cristian Gilè


Messages In This Thread
Upload Error: The filetype you are attempting to upload is not allowed. - by El Forum - 01-13-2011, 12:22 PM



Theme © iAndrew 2016 - Forum software by © MyBB