Posts by Hagamenon Nicolau de Oliveira • 26 points
3 posts
-
1
votes1
answer75
viewsA: integrating php with mongoDB DB
Missing mongodb module in PHP. To install the mongodb module you will need: libbson and libmongoc (https://github.com/mongodb/libbson) Install by PECL: sudo pecl install mongodb In php.ini insert…
-
0
votes1
answer30
viewsA: Error finding class in application using namespace
Run the Composer dump-autoload command
-
0
votes1
answer135
viewsA: Android emulator accesses web service by browser but not by APP
First you need to add permissions to your Androidmanifest <uses-permission android:name="android.permission.INTERNET" /> <uses-permission…