I am using "HWIOAuthBundle" along with "FOSUserBundle", which works pretty well on localhost (Windows). But when I upload it to live server, I get the following error:
Fatal error: Class 'HWI\Bundle\OAuthBundle\HWIOAuthBundle' not found in /home/site/symfony3/app/AppKernel.php on line 21
AppKernel.php has such entry:
$bundles = [
...,
...,
new FOS\UserBundle\FOSUserBundle(),
new WhiteOctober\PagerfantaBundle\WhiteOctoberPagerfantaBundle(),
new HWI\Bundle\OAuthBundle\HWIOAuthBundle(),
];
What could be the problem? I'm using Symfony 3.1.1 on Windows (localhost). PS: I have no access to the terminal as it is a shared hosting, thus clear:cache is not possible. Alternatives?