Archivo del Autor: Alberto

Acerca de Alberto

A young developer from Madrid who loves programming and computing. Constantly testing with new technologies and thinking in new projects and challenges.

Solving: Can’t connect to MySQL server on ‘IP Adress’ (10061)

If you are having this problem, it means that your MySQL server is now allowing remote connections. To solve this, you must follow the next steps: 1. Login into your machine via SSH with a ROOT user. 2. Connect to your MySQL server: 3. Execute next line on MySQL console with your username and password: […]

How to ignore folder tracking with GIT

A frequently asked question on GIT is how to ignore a folder tracking. We can have in our project folders which contains cache files, file uploads, etc and are unnecesary to be included in our GIT repository. To do this, we need to create a .gitignore file on our GIT root folder. Then, if we […]