Best WordPress Form Plugins in 2018 – Create Secure Forms

To get in touch between you and your clients without giving personal email address form plugin is most important. Trusted WordPress Form Plugins allow you to get support help to your clients or visitors in a perfect way. In this post, we would like to share a unique list of most useful and popular 16 trusted and best WordPress...

Bash Script to Auto-renew Letsencrypt SSL certificate on nginx

on my last article Installing web server on ubuntu 18, I covered all the steps required to have a nginx server running on your linux ubuntu server with Letsencrypt SSL encryption. Here I will cover how to use a bash script to Auto-renew Letsencrypt SSL certificate on Ningx. Varnish uses port 80 and Nginx uses port 8080 but when letsencrypt try...

7 Best FREE Page Builder Plugins for WordPress in june 2018

 Hello guys! Hope you are doing all well! You are developing a website based on WP platform and you are stuck in finding a tool to build your site in an easy way and fast time. Don't worry about this, let me help you to an awesome tool – Page Builder. In this post, I will introduce you to 7 best FREE...

The Complete Guide to Creating Symbolic Links (aka Symlinks) on Windows 10

Windows 10, 8, 7, and Vista all support symbolic links—also known as symlinks—that point to a file or folder on your system. You can create them using the Command Prompt or a third-party tool called Link Shell Extension. What Are Symbolic Links? Symbolic links are basically advanced shortcuts. Create a symbolic link to an individual file or folder, and that link will...

It’s official! Microsoft has acquired GitHub for $7.5 billion

  After a week of rumors, Microsoft today confirmed that it has acquired GitHub, the popular Git-based code sharing and collaboration service. The price of the acquisition was $7.5 billion in Microsoft stock. GitHub raised $350 million and we know that the company was valued at about $2 billion in 2015. Former Xamarin CEO Nat Friedman (and now Microsoft corporate vice president) will...

8 Best WordPress Contact Form Plugins in june 2018

  Tired of using buggy contact forms plugin on your site? It’s easy to get overwhelmed with thousands of contact form plugins in the WordPress repository. Since each plugin has its own pros and cons, finding the right one for your needs can be difficult. If you’re wondering which contact plugin you should choose for your site, then you’re in the right...

Useful commands for ubuntu 18

Compress files inside directory go directory: cd /var/www/yourfile/ zip -r filename.zip . import sql to database mysql -u user -pyourpassword yourdatabase < your-file-db.sql   Compress and decompress folder For compressing: tar -cvzf tarballname.tar.gz itemtocompress and for decompression: tar -xzvf file.tar.gz Export database settings simple: mysqldump -u root -p <database> > /data/raidpsbkp2.sql with procedures and functions mysqldump -u root -p -R <database> > /data/raidpsbkp2.sql //ignore views mysqldump -u root -p -R --ignore-table=dps.vw_tour --ignore-table=dps.vw_user_booking <database> > /data/raidpsbkp2.sql //custom tables mysqldump -u...

Installing and using git on ubuntu 17.10 and Window 10 (self-hosted)

Git is a free and open-source version control system that can be used to track changes of code. Git allows you to create many repositories for the same application and coordinating work on those files among multiple people. It is primarily used for source code management in software development. In this article, we will learn how to install an...

Installing web server on ubuntu 18

After installing ubuntu 18: https://softdiscover.com/2018/05/24/installing-nginx…php-in-ubuntu-18/ we are going to install the next service for our powerful web server INSTALLING POSTFIX update first: apt-get update apt -y install postfix sasl2-bin then choose internet-site option then on system mail name, I added mail.mydomain.com For making test, install this: sudo apt-get install mailutils then we will make a test echo "Test Email message body" | mail -s "Email test subject" info@yourothermail.com INSTALLING MARIADB just install using the...

Switching dynamic to static ip on ubuntu 18

it happens when you have dynamic ip on your ubuntu server and suddenly your ip has changed and you have problems connecting with your local services because of ip change. here the solution sudo apt-get install network-manager Networking is handled by netplan by default in Ubuntu Server 18. I suggest that you edit the /etc/netplan/01-netcfg.yaml file to read: nano /etc/netplan/01-netcfg.yaml and add the next and...