Search the Community
Showing results for tags 'authentication'.
-
Is it possible to make Firebase working on apps compiled by Cocoon? Followed https://firebase.google.com/docs/auth/web/cordova tutorial, tested on the device with error that cordova-plugin-inappbrowser is not installed. Tried to many plugins, all of those which are available throughout “Plugins” in Cocoon’s developer account. Really it seems to be there is actually NO plugin, which can handle Firebase for Cordova, really?! Some of them had issues during complication, some of them after - including cordova-plugin-inappbrowser. Errors after compilation with error “cordova-plugin-inappbrowser is not installed”: @d2d/cordova-plugin-inappbrowser @types/cordova-plugin-inappbrowser cordova-plugin-inappbrowser-progressed cordova-plugin-inappbrowser-custom cordova-plugin-auth-dialog cordova-inappbrowser appgn.plugin.custominappbrowser appgn.plugin.customappbrowserbeta2 archriss-cordova-inappbrowser-ios archriss-cordova-inappbrowser-android Errors during compilation: com.brainfall.cordova-plugin-inappbrowser custom-inapp-browser-plugin cordova-plugin-sscinappbrowser cordova-plugin-inappbrowser-wkwebview cordova-plugin-inappbrowser-popup-bridge cordova-plugin-inappbrowser-orcas cordova-plugin-inappbrowser-notification cordova-plugin-inappbrowser-location-editable cordova-plugin-inappbrowser-engage-irishferries cordova-plugin-inappbrowser-engage-if cordova-plugin-inappbrowser-engage cordova-plugin-inappbrowser-bypassssl cordova-plugin-inappbrowser-adv cordova-plugin-ete-inappbrowser cordova-fork-inappbrowser-allow-all cordova-customplugin-inappbrowser com.taxiapps.cordova-plugin-inappbrowser com.shoety.cordova.plugin.inappbrowserxwalk com.dt-workshop.inappcrossbrowser
-
For some reason when I add website user authentication "scene.executeWhenReady()" never runs. My code is like this: BABYLON.SceneLoader.Load("assets/", "main.babylon", engine, function (newScene) { console.log("Scene loaded"); newScene.executeWhenReady(function () { console.log("execute when ready"); //do stuff }}It prints "Scene loaded" but never prints "execute when ready". It works fine Safari, Chrome and Firefox though. I've set up my .htaccess like this: RewriteEngine OnRewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule ^([^/]+)/([^/]+)$ /index.php?menu=$1&submenu=$2 [QSA,L]RewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule ^([^/]+) /index.php?menu=$1 [L]AuthUserFile /var/www/somedirectory/.htpasswdAuthName "Punk Office development site"AuthType Basicrequire user someguyI'm no expert in server configurations so I might have done something wrong here, but strange that it works everywhere cept in IE. Also there's no error message in the IE console.log