Tag: example

  • The Perfect ISPConfig Ubuntu 18.04 Server

    The Perfect ISPConfig Ubuntu 18.04 Server

    This tutorial shows how to prepare an Ubuntu 18.04 server (with Apache2, BIND, Dovecot) for the installation of ISPConfig, and how to install ISPConfig. The web hosting control panel ISPConfig allows you to configure the following services through a web browser: Apache or nginx web server, Postfix mail server, Courier or Dovecot IMAP/POP3 server, MySQL,…

  • HTML 5 Audio Tags are not all equal with Javascript and PHP

    HTML 5 Audio Tags are not all equal with Javascript and PHP

    Recently I was asked to create an audio proxy, whereby no files were contained within DOCROOT. Straight forward I thought, how hard can it be when all it requires is a range resume delivery system. Well, I was once again thwarted by the changes Apple make to their products without telling anyone.

  • How to create Custom Coupon Types in WooCommerce

    Coupons are one of WooCommerce’s greatest assets; everyone loves a discount. However, the default types and restrictions may not be exactly what you’re looking for and you may need to extend the functionality. After being recently commissioned to extend the coupon functionality of a stable (all be it old), 2.3.11 installation, finding the right places to hook into…

  • get_product_search_form

    The filter used for intercepting the default WooCommerce product search form. Assigning a new function to this filter allows the search form to be redesigned to specific requirements [php]<?php function webdav_get_product_search_form () { // Insert custom code here $output = ”; // function should return html code in a string return $output; } add_filter (‘get_product_search_form’,…