Salut,
Notice: Undefined property: ShopsController::$upload in /home/richardp/www/mvc/controller/ShopsController.php on line 89
Veut dire que ta propriété "upload" n'est pas définie dans le controleur ShopController. Elle est peut-être dans la classe mère mais alors en private. Pour qu'elle soit accessible dans ton ShopController elle doit être public ou bien protected. Une fois cela fait, il faut l'initialiser avec un new. Dans le cas contraire tu auras un nullpointerexception ce qui produit en php un
Fatal error: Call to a member function upload() on a non-object