Category Archives: Wordpress

WordPress is a free and open-source content management system (CMS) that powers millions of websites and blogs around the world. It was initially released in 2003 by Matt Mullenweg and Mike Little as a blogging platform but has evolved into a versatile platform for building all kinds of websites, from simple blogs to complex e-commerce stores and corporate websites.

How do I make Git ignore file mode (chmod) changes?

To make Git ignore file mode (chmod) changes, you can use the git config command to set the core.fileMode configuration option to false. This will make Git ignore changes to the file permissions (chmod) when determining if a file has been modified. Here’s how to do it: git config core.fileMode false You can run this… Read More »

How to run wordpress blog from subfolder

Common problem when your main website running different platform like java and you need to install wordpress blog with same domain but as subfolder. For example: Website url https://www.{domain}.com running on Java nginx server. Now you want to run wordpress in php apache server as sub folder like https://www.{domain}.com/blog. So you can add following nginx… Read More »