A very simple and straightforward way that worked for me is as follows: Step 1. First we need to Stop apache2.…
Create a Woocommerce product sold in units of kilogram and gram
// Add a product custom field "grams_quantity" that will update the displayed price add_action('woocommerce_before_add_to_cart_button', 'special_product_by_grams', 25); function special_product_by_grams(){ global $product;…
how can write restful / authenticate API in Laravel latest version
Hope you have already install laravel with new version 5.5 or above You can write restful authenticate API through the passport package…
How to change Apache default port to a custom port
How to change Apache default port to a custom port If you have sudo permission you can do easily. The…
How to reset root user password MYSQL on Ubuntu
After the MySQL setup, I have lost my user name and password now I don’t want to reinstall. Then I…

Recent Comments