Skip to main content

Posts

Wordpress - Contact Form 7 notification open in popup - Bootstrap modal popup

How to add open Contact form 7 Notification / Messages in Modal popup We can use the Bootstrap modal popup and Contact form 7 Doom Events to create the popup. Paste the below code in the functions.php, it will work for you (please change the messages as per the requirements): add_action('wp_footer', 'munesh_Footertext'); function munesh_Footertext() { echo '<div class="modal fade in formids" id="myModal2" role="dialog" tabindex="-1">     <div class="modal-dialog">       <!-- Modal content-->       <div class="modal-content no_pad text-center">          <button type="button" class="close" data-dismiss="modal">&times;</button>         <div class="modal-header heading">           <h3 class="modal-title" id="MSTitle">Message Sent!</b></h3>         </div>      ...

DataTables warning: table id=table1 - Cannot reinitialise DataTable. For more information about this error, please see http://datatables.net/tn/3

Issue -  DataTables warning: table id=table1 - Cannot reinitialise DataTable. For more information about this error, please see http://datatables.net/tn/3 Solution - This error can often occur when trying to obtain a reference to the DataTable for working with the API. For example, you might have a function which will always try to create a DataTable instance by passing in options when created. Then you make a modification which calls this function on a table which has already been initialised and you get this error. In such a case, you will want to use the  $.fn.dataTable.isDataTable()  static method. This can be used to check if a table is a DataTable or not already: Javascript 1 2 3 4 5 6 7 8 if   ( $.fn.dataTable.isDataTable(  '#table1'   ) ) {      table = $( '#table1' ).DataTable(); } else   {      table = $( '#table1' ).DataTable( {      ...

Issue SSL Certificate from the https://cheapsslsecurity.com using the CSR

Generate SSL Certificate: go to the recent order and click on the certificate and Chose the domain validation option “Email Authentication” for this you have the access of one of the following emails: admin@yourdomain.com administrator@yourdomain.com webmaster@yourdomain.com postmaster@yourdomain.com hostmaster@yourdomain.com Input CSR (Certificate Signing Request) Select Your Server(optional) – left this as default or select “Microsoft Internet Information Server” Select the Signature Algorithm – choose SHA2 Click on the continue – this will send a verification email of the selected email in the step Verify the verification – please verification by clicking the link received in the mail Get SSL Certificate – You will receive a SSL certificate in the Mail

How to Install an SSL certificate on IIS

Install an SSL certificate on IIS Press Win + R and type “inetmgr” in the appeared window to run the Internet Information Services (IIS) Manager. On the IIS Manager home page, locate the “Server Certificates” icon and double-click it: Locate the “Actions” panel on the right side and click “Complete Certificate Request”: In the “Specify Certificate Authority Response” window, perform the actions below. In the “File name containing the certification authority’s response” field, browse the file system to select your .p7b (or .cer) certificate. In the “Friendly name” field, specify any name that will help you to identify the certificate among other files. It is best to submit the actual domain name of the certificate. In the “Select a certificate store for the new certificate” field, leave the default value “Personal”. Click “OK” to import the certificate to the server storage. Once the import is completed, in the “Server Certificates” window, you will see a new...

How to Generate CSR from Microsoft IIS 7/ IIS 8/ IIS 10

Generate a CSR from Microsoft IIS Open Internet Information Services (IIS) Manager - Click Start, Control Panel, Administrative Tools, and then select Internet Information Services (IIS) Manager. Open Internet Information Services (IIS) Manager - In the left Connections menu, select the server name (host) where you want to generate the request. Navigate to Server Certificates - In the center menu, click the Server Certificates icon under the Security section near the bottom Select Create a New Certificate - In the right Actions menu, click Create Certificate Request. Enter your CSR details - In the Distinguished Name Properties window, enter in the required CSR details and then click Next. Note: To avoid common mistakes when filling out your CSR details, reference  Select a cryptographic service provider and bit length - In the Cryptographic Service Provider Properties window, select Microsoft RSA Channel Cryptographic Provider and Bit Length of 2048, then click Next...

How to generate CSR, purchase SSL from cheapest SSL and Install On IIS

Generate a CSR from Microsoft IIS Open Internet Information Services (IIS) Manager - Click Start, Control Panel, Administrative Tools, and then select Internet Information Services (IIS) Manager. Open Internet Information Services (IIS) Manager - In the left Connections menu, select the server name (host) where you want to generate the request. Navigate to Server Certificates - In the center menu, click the Server Certificates icon under the Security section near the bottom Select Create a New Certificate - In the right Actions menu, click Create Certificate Request. Enter your CSR details - In the Distinguished Name Properties window, enter in the required CSR details and then click Next. Note: To avoid common mistakes when filling out your CSR details, reference  Select a cryptographic service provider and bit length - In the Cryptographic Service Provider Properties window, select Microsoft RSA Channel Cryptographic Provider and Bit Length of 2048, then click Nex...

How to add ads.txt to blogger.com?

Set up an ads.txt file If your blog is monetized with third-party providers or you’ve manually integrated AdSense in your blog, you will need to manually set up the content of the ads.txt file. Sign in to Blogger . In the top left, click the Down arrow  . Click the blog you want to set up an ads.txt file on. On the left, click Settings. Under "Settings," click Search preferences. Under "Monetization," find "Custom ads.txt" and click Edit. Click Yes. Copy the settings from your third-party monetization provider and paste them in the text box. Click Save settings. Optional: To check the content of your ads.txt file, go to http:// /ads.txt. Note: If your blog is not monetized, or it’s only configured to use AdSense using the Blogger-AdSense integration, then you do not need to manually set up ads.txt. Blogger will do this for you. Read more about  ads.txt for AdSense . reference has been taken from  https://supp...