Preliquisites Tailwind CSs Laravel Livewire
Slack: Increase productivity by keeping your conversations organized
Why? Keep messages organized Keep track of important conversations; pin, save or star Create a culture where people cc you if they would like you to address the message. You can ignore ones you’re not tagged or not addressed to…
How to setup automatic deployment with Plesk and Github
Plesk provides an quick configuration to setup automatic deployment for your application using your favorite code repo platform such as Github, Gitlab or Bitbucket without having a need to write YAML files for deployment. In this case, I reserve those…
Connect to server at ‘localhost’ failed Logrotate plesk error
Issue You get the following errors from your server after running schedule logrotate tasks You get this error when running the command in ssh Cause User root with no password is stored in the file /etc/mysql/debian.cnf: Solution ssh to your server and run…
Manually change WordPress URL
After moving your WordPress to a new domain, use either of the following methods to update your installation to the new domain. MySQL queries Execute the following MySQL statements in phpMyAdmin or terminal after login. UPDATE wp_posts SET guid =…
Manage your WordPress e-commerce site with Laravel
Background Millions of business owners are using WordPress as an e-commerce platform using WooCommerce. I have a love-hate relationship with WordPress when it comes to managing content beyond blogging. One downside of this is that, for every additional feature you need, you…
Adding font-awesome to an element using CSS
Use cases Customizing a WordPress theme without editing core theme files Customizing a web page using Chrome extensions If you are working on hosted site without the ability to edit core files, the author might provide a way to inject…
How is discovered a serious security bug on a mortgage software vendor serving major US bank
At the time of this writing, its be been over few months which gave the company involved time to fix the issue, which they did. I will not use real names of the parties involved in this post. I happened…
Cron job to backup all MySQL databases in your VPS host
With this script, you can backup your all your MySQL databases. You need to have SSH access to your hosting. You can also extend functionality to backup to another remote location. https://gist.github.com/jgmuchiri/8445b27d86d6fa7aa556f381f5c9f6c2 Login as root and create a cron job…