I found the problem
The problem is, end requires a reference. explode(".", $fileUpload->name) cannot be turned into a reference. That's why you have to assign the result of explode(".", $fileUpload->name) to a variable.
Open /includes/class.uploader.php
Find on line 441
$extension =...