WordPress – Use javascript to print specific contents in page

  This solution worked for me. Step 1: Specify the printable contents inside this div. <a href=’javascript:printContent(“ad_div”)’ id=’print_link’>Print</a> <div id=’ad_div’> specify your printable content here……

Add Javascript in WordPress Pages

WordPress defaults security feature restricts use of JavaScript into your content. However there are plenty of plugins out in WordPress that allows JavaScript within page or…

WordPress – How to pass variable as parameter in URL

  This simple method worked for my WordPress website to pass a parameter in URL. In this tutorial, the Datewise Invoices page lists down all the invoices created between…

LTM – Disable or Forced Offline Pool member for application maintenance

When you wanted to perform maintenance of a specific application, LTM has got a good feature where you can either disable or forced offline at pool…

Backup Cisco Mobility Express Configuration

Here is the solution to backup Cisco Mobility Express Configuration. If you are backing up the controller, you do not need to backup each AP.…

Cisco ASA Error – AnyConnect package on the secure gateway could not be located

You might be experiencing a similar issue while connecting through Cisco ASA AnyConnect to your remote network. Even though you have loaded the proper AnyConnect image…

How to forward ports on Ooredoo Home Gateway – Fibre to the Home

  1.Login to Home Gateway – Fibre to the Home router. By default, IP address is 192.168.100.1, hence browse http://192.168.100.1 2.Login with default username and…

Copy image to standby Cisco ASA

  Copy IOS image to standby Cisco ASA unit, for example in order to copy asa942-6-smp-k8.bin from tftp server (10.10.10.10) to Standby ASA disk0, execute following…

Running Commands on Standby Cisco ASA

  In order to execute Cisco ASA commands on Standby unit, use failover exec as prefix. failover exec is used to execute commands on a specific…

showing errors with wpdb update or insert query

exit(var_dump( $wpdb->last_query )) prints the last query that is executed by database. This is very useful for developers to verify and troubleshoot errors in your…