Currently if I supply no extensions to the class it allows no extensions. I would like to allow all extensions. Is there any way to do this without hacking the core?
|
feedback
|
|
In Codeigniter 2, you simply need to define allowed types like this :
| |||
|
feedback
|
|
The answer to your direct question: No, there's no way to do this without overriding the core To good news is you can avoid hacking the core, per the manual
So, to have a drop in replacement for your library, you could copy Upload.php to your
folder, and then add your custom logic to that Upload.php file. Code Igniter will include this file instead whenever you load the upload library. Alternately, you could create your OWN custom uploader class that extends the original, and only refines the is_allowed_filetype function.
You'll want to read over the changelog whenever you're upgrading, but this will allow you to keep your code and the core code in separate universes. | ||||
|
feedback
|
|
So far it looks like it would only be possible via a hack. I inserted a | |||
feedback
|
|
What I do is:
That makes all files in every function call automatically allowed. | |||
|
feedback
|
|
You simply need to replace this condition:
With:
| ||||
|
feedback
|