NginX + PHP on Windows 10

Installing Nginx on Windows Download NginX files from: https://nginx.org/en/docs/windows.html. Unzip to C\{name-version} (Which in my case would be C:\nginx-1.25.4). Open PowerShell as an Administrator and lunch server by typing cmd: start nginx Every time you will...

Storing password in git?

To store passwords in GIT you need to be able to encrypt and decrypt the password. You can do that using GPG tool. Both tools are available for a variety of platforms. See the instruction below on how to install the tooling and at the very end how to use them to store...
What should you know as a PHP developer?

What should you know as a PHP developer?

As PHP developer, you need to know some common concepts and techniques that help you to write better code and provide solid solutions. It is also important to implement the right tools for the job. Tooling, development practices and development process methodology. If...

How to push git project to GitHub repository?

To push project to GitHub Go to github.comCreate new repositoryCopy repository urlNow run of of the fallowing git commands: Create a new repository on the command line echo “# PROJECTNAME” >> README.md git init git add README.md git commit -m “first...