TLS: Enabling TLS 1.3 support in Apache on Ubuntu

By PNC No comments

Recently,  TLS or Transport Layer Security released its newest version 1.3. For security reason you ran your website into a TLS checker, and if your website is not yet using the latest version or doesn’t support it yet, there are times that it throws a message that you need to update your website TLS version […]

LARAVEL: Updating Autoload and Composer files

By PNC No comments

So! You’ve added a new class or even a new controller.  Added the view link in your route (web.php) or even in your API (api.php). Everything are working, but after deploying the app to your host, the newly created class or controller is missing. This is because the bootstrap or the composer autoload files were […]

LARAVEL: Updating your cached Route

By PNC No comments

So! You added a new route to your web.php file in Laravel but when you tried to visit one of the app link, it throws an Error 404.  You checked the page, view, controller, and it still throws the same error.  Even cleared your browser cache and history, but still nothing. One of the main […]

phpBB: Forcing phpBB Website To Redirect to https

By PNC No comments

Okay! So you’ve managed to install your SSL certificate to your phpBB website.  The issue is, the website doesn’t redirect to https://website.com and keeps on going to http://website.com whenever you type your website URL in the browser search field. So here’s what you need to do. REMINDER: This approach is for phpBB websites only. Steps: […]

VSCode: Calling your VSCode Application via Console

By PNC No comments

Okay! So! No more beating around the bush.  This is how you can call Visual Studio Code through your console. BTW, the Windows console or shell is the equivalent of  “terminal” if you are using macOS. Here it goes! While at the c: prompt or in your project folder, type the command below: c:\code . […]