Generate CSR  Start screen Open IIS Manager Click on server name From the center menu, double-click the “Server Certificates” button in the “IIS” section (it is in the middle of the menu). From the “Actions” menu (on the right), click on “Create Certificate Request…” This will open the Create Certificate… Continue Reading SSL installation on windows server 2012

Posted Date:11-07-2017 In this we will explain mysql_query insert using custom user created function Stpe 1:Create basic html page with form <form method=”POST” action=”” id=”addproduct-form”> <label for=”hd-desc”>Select Category</label> <select name=”cat_id” id=”cat-id”> <option value=”” selected=””>Select Category</option> <option value=”8″>mobile</option> <option value=”9″>Tv</option> <option value=”10″>XYZ</option> <option value=”11″>mobile2</option> <option value=”12″>Tv2</option> <option value=”13″>Tv 3</option> </select> <label… Continue Reading insert query in php using function

When you integrate angular2 with laravel on top of nginx, you may see empty page while accessing angular2 end point on browser. say http://server-ip/angularclient if you dig little deeper using inspect element, you may see 404 for all files(css,html,js,etc). You just need to verify the href base is as same… Continue Reading laravel and angular2 setup shows empty page on nginx

What is SquirrelMail? SquirrelMail is a standards-based webmail package written in PHP. It includes built-in pure PHP support for the IMAP and SMTP protocols,   #1 Add epel repo wget http://epel.mirror.net.in/epel/5/i386/epel-release-5-4.noarch.rpm rpm -Uvh epel-release-5-4.noarch.rpm #2 Install Squirrelmail yum install squirrelmail -y Navigate to /usr/share/squirrelmail/config/ directory and run the command conf.pl:… Continue Reading install Squirrelmail On CentOS

Posted Date:11-07-2017 In this post we will fix the issue of Select2 search input not working in Bootstrap Modal. If you are implementing  select2 plugin in boostarp  modal, First remove tabindex=”-1″ and add style=”overflow:hidden;”

Install Jenkins on Ubuntu 16 Date Posted: 02-07-2017 Jenkins is a deployment application tool which is used for continuous integration and deployment. In this post, we will explain on how to install jenkins on Ubuntu 16. Prerequisites: Ubuntu Host Allow Incoming port 8080. Implementation: Consider this is a fresh ubuntu server… Continue Reading Install Jenkins on Ubuntu 16

Posted Date:01-07-2017 In this post we will explain selected text from a drop-down list (select box) using jQuery Step 1: Include jQuery  Plugin <source src=”http://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js”></source > Step 2:Create the HTML page using  following code <!DOCTYPE html> <html> <head> <title>Drop Down Select text value </title> <source src=”http://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js”></source> </head> <body> <select name=”select_text” id=”select_text”… Continue Reading selected text from a drop-down list (select box) using jQuery

Postfix is a free and open-source mail transfer agent (MTA) that routes and delivers electronic mail, intended as an alternative to Sendmail MTA. Remove sendmail if it was already installed on your system yum remove sendmail #1 Install Postfix Now Install Postfix  and make sure it started at boot by adding… Continue Reading install and configure postfix and dovecot on CentOS

You might get not found error (404) when you access laravel API end points on nginx. To resolve this we need to add below rules in nginx.conf. Post that reload nginx conf. location @rewrite { rewrite ^/(.*)$ /index.php?_url=/$1; } location / { try_files $uri $uri/ @rewrite; } $ service nginx… Continue Reading Laravel route gives 404 error on nginx

Add PureFTP service to Fail2ban – Ubuntu Date Posted: 23-06-2017 Prerequisites: Ubuntu Host Fail2Ban Service – Incase, if fail2ban service is not installed, follow the below mentioned post to install. Install Fail2ban on Ubuntu Implementation: Copy the file pure-ftpd.conf to pureftpd.conf cp /etc/fail2ban/filter.d/pure-ftpd.conf /etc/fail2ban/filter.d/pureftpd.conf Open the file /etc/fail2ban/jail.local and append the below lines. vi /etc/fail2ban/jail.local [pureftpd]… Continue Reading Add PureFTP service to Fail2ban – Ubuntu