How to make Wordpress Divi Theme 404 page Full Width

How to make Wordpress Divi Theme 404 page Full Width

Add the code below to your Child theme's functions.php function my_body_class($classes) {     $classes[] = '';     // if(is_404()){     if(!is_page()){     $classes[] = 'et_full_width_page no-sidebar';     }     return $classes; } add_filter('body_class', 'my_body_class'); Add the code belowRead More

Laravel Installation on Windows 7 XAMPP

Laravel Installation on Windows 7 XAMPP

https://laravel.com/ 1. Composer Installation Pre-requisites 1. XAMPP Download Composer Setup https://getcomposer.org/Composer-Setup.exe Browser and select ...\xampp\php\php.exe Click Install and Finish 2. Laravel Project Installation Create Laravel root folder Under …\xampp\htdocs\laravel (e.g. …\xampp\htdocs\laravel) Download Laravel Project Open CMD using Administrator role, and navigate to …\xampp\htdocs\laravel, andRead More

Make XAMPP phpmyadmin be accessible from other network

Make XAMPP phpmyadmin be accessible from other network

1. Make sure phpmyadmin is not running on port 80 ( Change phpmyadmin port ) 2. Navigate to \xampp\apache\conf 2. Open up httpd-xampp.conf 3. On the last section, modify as Require Local to Require gll granted # # New XAMPP security concept # <LocationMatch "^/(?i:(?:xampp|security|licenses|phpmyadmin|webalizer|server-status|server-info))"> #Read More

Secure XAMPP phpmyadmin access

Secure XAMPP phpmyadmin access

1. Navigate to \xampp\phpmyadmin 2. Open up config.inc.php 3. Append the configuration below 4. Modify either deny or allow /*  *  phpMyAdmin does no user management and will not cross-check the MySQL account's host with the incoming connection's ip/host  */ $cfg['Servers'][$i]['AllowDeny']['order'] = 'deny,allow'; $cfg['Servers'][$i]['AllowDeny']['rules']Read More

Enable XAMPP phpmyadmin login page

Enable XAMPP phpmyadmin login page

1. Navigate to \xampp\phpmyadmin2. Open up config.inc.php3. Modify $cfg['Servers'][$i]['auth_type'] = 'config'; to $cfg['Servers'][$i]['auth_type'] = 'cookie'; Read More