Posts by George Moura • 71 points
6 posts
-
0
votes1
answer404
viewsA: Configure Nginx for multiple Socket.IO servers
You can use the Nginx upstream module and do something like this: upstream backend { server backend1.example.com; server backend2.example.com; server backend3.example.com; } and then reference on…
-
1
votes1
answer99
viewsA: Android + Webservice on Cloud Platform
Use the platform Heroku that you can create up to 5 free applications, there you can use python, java, ruby, php, nodejs for your problem, the best option is to create a web app REST, which is…
-
0
votes1
answer159
viewsA: Chrome and mysql do not open after changing permission in the /opt folder
The default permission is this: drwxr-xr-x 11 root root 4096 Mar 18 19:17 opt See if your folder is like this too, if you don’t run the command sudo chmod -R 755 /opt Then try to reinstall the…
-
0
votes2
answers6962
viewsA: PHP How to pass attribute values between classes
Search for Orms in php, a very good is the Eloquent, used in Laravel, they already abstract all the DAO and the CRUD If you don’t want to use Orms, you can place an attribute usuario within the…
-
1
votes1
answer224
viewsA: My site loads different pages on different Operating Systems
Guy by what it looks like in Ubuntu drops if guest from filter auth - try removing this check in filter auth and see what happens
-
2
votes7
answers3667
viewsA: PDO does not connect to Mysql
The extent of mysql is not installed or you do not have the mysql installed in the localhost. Create a file info.php at the root of the webserver, with function phpinfo(); and then access…