In config/logging.php: In channels section add these: 'none' => [ 'driver' => 'monolog', 'handler' => \Monolog\Handler\NullHandler::class, ], Then update your .env file to use this logger: LOG_CHANNEL=none And everything should work just f...
in /etc/my.cnf remove bind-address=127.0.0.1 or change it into bind-address=* Then restart MySQL service (service mysql restart)...
The JavaScript Searching the user agent string for "Android" is the quickest method: var ua = navigator.userAgent.toLowerCase(); var isAndroid = ua.indexOf("android") > -1; //&& ua.indexOf("mobile"); if(isAndroid) { // Do something! // Redirect to Android-si...
If you have a valid SSL then you can use the following code on your .htaccess file to redirect your site to https url. RewriteEngine On RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] If you have an existing .htaccess file: Do ...