
Bash Scripting Basics
Bash is fundamental to Linux, and every Linux user uses it at some point or another. This post will help you understand bash scripting basics and provide some pro-tips! Bash …
Read MoreThe blog about anything Cloud! Get some great content about AWS, Linux, WordPress, PHP and more…
Bash is fundamental to Linux, and every Linux user uses it at some point or another. This post will help you understand bash scripting basics and provide some pro-tips! Bash …
Read MoreIs your PHP saying that it cannot find the ZipArchive class? If so, then this post will show you how the enable the ZipArchive module. Let fix the “Class ‘ZipArchive’ …
Read MoreThe AWS Management Console does not allow you to bulk delete multiple AWS CloudWatch Log Groups. Use this bash script to bulk delete AWS CloudWatch log groups. The bash script …
Read MorePrevent CRON from running your PHP code more than once by using this simple Bash hack! CRON will execute your PHP code regardless of its success or failure. Slow running …
Read MoreThis post will show you how to code a basic AWS EC2 instance dashboard using PHP. The purpose of this dashboard is to show the status of your AWS EC2 …
Read MoreThe “Call to Undefined Function idn_to_ascii()” error in PHP can be confusing. Many people assume this function is part of PHP, and it is, but not always! It turns out …
Read MoreRemoving the file path from a filename in PHP is be easy! The basename() function that will remove the path of the file from your string and leave only the …
Read MoreThis post will show how you can define a custom PHP configuration for your website.Β A Custom PHP configuration will allow you to change server default configurations. This post mentions two …
Read MoreThis post shows how you can execute PHP scripts as a root user on Ubuntu/Linux using visudo. What do you need to run PHP as root? You will need to …
Read MoreLetβs say you execute shell commands via a PHP script using the shell_exec() method, but you do not see any error messages related to the executed shell command. This behavior …
Read More