I am working with Satellizer on an angular/laravel app (beta version here: http://178.62.117.184/#/ticket). On my server, everything works fine, but locally, it only works on Safari and Firefox, not on Chrome.
When I load the app, I get this error:
( ! ) Warning: require(/home/vagrant/Code/VCP/code/public/vcp-app/vendor/composer/autoload_psr4.php): failed to open stream: No such file or directory in /home/vagrant/Code/VCP/code/public/vcp-app/vendor/composer/autoload_real.php on line 35 Call Stack #TimeMemoryFunctionLocation 10.0007362136{main}( ).../index.php:0 20.0007362384require( '/home/vagrant/Code/VCP/code/public/vcp-app/bootstrap/autoload.php' ).../index.php:22 30.0021363912require( '/home/vagrant/Code/VCP/code/public/vcp-app/vendor/autoload.php' ).../autoload.php:17 40.0062379472ComposerAutoloaderInit6a47e5f4021a55615764473c5acf629f::getLoader( ).../autoload.php:7 `
I don't understand this PHP error as it works fine on Safari and Firefox. Also, the autoload files exist. But when I comment the Satellizer injection in app.js, the app is loaded successfully:
`angular.module('vcpProject', ['ui.router', /'satellizer',/ 'angularSoundManager', 'ui.bootstrap', 'ui-notification'])
I checked this issue: https://github.com/jadjoubran/laravel5-angular-material-starter/issues/214 . I tried to remove the Bootstrap dependency as having both Bootstrap and Satellizer might create conflicts. I still have the same issue on Chrome.
You can find my package.json here: https://github.com/litil/vcp-app
Might be due to incompatible dependencies?
via litil