I have two controllers with the same name:
app\controllers\CareersController.php (for general use) app\controllers\Admin\CareersController.php (for admins)
Due to a name conflict, I added namespace admin; to the administrator controller.
Everything works fine locally, but when I downloaded the new administrator controller to my server, I get the error message: Class Admin\CareersController does not exist
As far as I understand, the fix: php artisan dump-autoload and composer dump-autoload
However, I do not have access to Shell to run these commands, and the composer on the server is still not installed. So, is there a way to reload an automatic download file without accessing Shell?
source share