by Garth | Apr 24, 2024 | Xampp
I use this mostly for WordPress & Laravel.Primarily this is useful for any PHP projects. Step 1 : You need to enable vhosts. Open C:xamppapacheconfhttpd.confFind the line inside there that looks like this : # Virtual hosts# Include conf/extra/httpd-vhosts.conf And...
by Garth | Apr 23, 2024 | Gaming
Solution 1 : Go into the game root directory. (The folder that has your generals.exe) and delete the dbghelp.dll Solution 2 : Edit the options.ini file. I installed my game through Steam on Windows 11.Now it’s important to note that on the newer versions of...
by Garth | Aug 24, 2023 | CSS Blog Posts
So I figured this out by mistake and had my mind blow when I saw it. Haha I have been programming with CSS for 7 years and I didn’t know this! I was adjusting default bootstrap checkbox colours and I accidentally typed an additional colour without clearing and...
by Garth | Jul 25, 2023 | Hosting
(VMware vSphere, Microsoft Hyper-V, Proxmox Virtual Environment (Proxmox VE), Oracle VirtualBox, Docker, Kubernetes, FreeNAS, OpenMediaVault, VMware Workstation/Fusion, Microsoft Azure, Amazon EC2, Amazon Web Services (AWS), Microsoft Azure, Google Cloud Platform...
by Garth | Jul 18, 2023 | Laravel Blog Posts
public function import_data(Request $request) { $success = true; try { DB::beginTransaction(); foreach ($request->array_or_object as $item) { $record_payload = [ “name” => $item->name, “surname” => $item->surname, ]; $record_id = $item->id ??...