If you have a large website setup or a server with limited resources, 504 Gateway Timeout Nginx Error can be seen quite often. It means that a server upstream that is acting as a gateway to handle HTTP requests is either down or too slow to manage requests. This issue is really frustrating and sometimes […]
15 Best Text Editors For Web Designers
Even though most web designers like work using visual tools, there is still a good need of text editor for front-end coding and tooling. Not everything can be achieved by visual tools, so there is always a need for a good code editor. With that mindset, I am going to list some of the best […]
PHP5-FPM 502 Bad Gateway Error (connect() to unix:/var/run/php5-fpm.sock failed (2: No such file or directory)
I personally had this 502 Bad Gateway Error issue on my website. This is the most frustrating error I have ever experienced while using NGINX with PHP5-FPM. When I went through the log I found a very simple error: 12:40:32 [crit] 4257#0: *538 connect() to unix:/var/run/php5-fpm.sock failed (2: No such file or directory) while connecting […]
Your PHP installation appears to be missing the MySQL extension which is required by WordPress
If you are a WordPress user and getting an error that says “Your PHP installation appears to be missing the MYSQL extension which is required by WordPress”, then this might be very frustrating to deal with. Being a webmaster, I faced the same issue with my website. I searched online for a solution, posted in […]
How to Create 3D Button in HTML & CSS?
Creating an HTML button using Cascading Stylesheet (CSS) can be one of the easiest but the trickiest task, especially if you are new to HTML and CSS. HTML button tag can easily create a button with a single line of code: <button type=”button”>Click Me!</button> You can also use <a> tag that defines hyperlink. So the […]