Catatan

LARAVEL 9

  How to Install Bootstrap in Laravel 9? https://medium.com/@laraveltuts/how-to-install-bootstrap-in-laravel-9-ef36be699bb6 How to Install Bootstrap 5 in Laravel 9 With Vite https://techvblogs.com/blog/how-to-install-bootstrap-5-in-laravel-9-with-vite Laravel Database Migration https://laravel.com/docs/9.x/authentication#starter-kits Laravel Authentication https://laravel.com/docs/9.x/authentication#starter-kits

Cannot connect WiFi. Network card fully utilized.

Imej
The problem: The machine denies connecting with WiFi. The Solution: Reset the log and disconnect the network using step as below; 1. Type netstat -a to check the network loopback. 2. Stop any application that uses the network card such as Apache XAMPP, IIS Server, MSSQL, or MySQL. Also, need to stop any services that used the network activity such as ping, and connect to the server. *Note: loopback can be monitored through Wireframe. *Note: If the machine has installed Docker Desktop, we need to stop the services. 3. Open a command prompt and type ipconfig /release to clear the established connection. 4. Type ipconfig /renew to renew the connection. 5. Okay done.

Eclipse - "Incompatible JVM. Version 1.8.0_261 of the JVM is not suitable for this product. Version: 11 or greater is required"

Imej
Error: Eclipse - "Incompatible JVM. Version 1.8.0_261 of the JVM is not suitable for this product. Version: 11 or greater is required" Solution:  https://stackoverflow.com/a/72326988/10763264 Step - 1 Go to the file location of the eclipse and open  eclipse.ini  in editable format Step - 2 Go to the java folder location where you find javaw.exe In my case :  C:\Program Files\Java\jdk-11.0.11\bin\javaw.exe Step - 3 Then paste the following before tag  -vmargs  inside  eclipse.ini  file -vm C:\Program Files\Java\jdk- 11.0 .11 \bin\javaw.exe The below image shows in brief

Error : mysql xampp Can't create IP socket: No such host is known.

Imej
Error :  Solution 1: Edit phpmyadmin config.inc.php File dir : C:\xampp2\phpMyAdmin\config.inc.php $cfg['Servers'][$i]['host'] = '127.0.0.1' Solution 2: Check windows host  File dir : C:\Windows\System32\drivers\etc\hosts

Response.redirect raises "Thread was being aborted"

Imej
The Problem: The redirect code shows runtime error "Thread was being aborted" Solution : Response.redirect raises "Thread was being aborted" - https://stackoverflow.com/a/4874895/10763264 HttpResponse.Redirect Method

FORCE TO OPEN .NET APPLICATION AS ADMINISTRATOR

  References :  https://stackoverflow.com/questions/2818179/how-do-i-force-my-net-application-to-run-as-administrator

MSSQL Timeout expired. Max pool size was reached.

Imej
mssql 'Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool size was reached.' Solutions:  1)  How can I solve a connection pool problem between ASP.NET and SQL Server?  https://stackoverflow.com/questions/670774/how-can-i-solve-a-connection-pool-problem-between-asp-net-and-sql-server 2) SQL Server Connection Pooling (ADO.NET)   https://docs.microsoft.com/en-us/dotnet/framework/data/adonet/sql-server-connection-pooling#adding-connections 3) d