Blog

Unzip SSH file

User unzip ssh zip file Assistant To unzip an SSH (or any other ZIP) file on a Linux server via SSH, follow these steps: 1. **Log in to your server**: Use an SSH client like `ssh` in your terminal or a tool like PuTTY (on Windows) to connect to your server. ssh username@your-server-ip Replace `username` […]

Add site AWS EC2

User add new site aws ubuntu ec2 Assistant To add a new site to your AWS EC2 instance running Ubuntu, you'll need to follow these general steps: ### 1. **SSH into your EC2 Instance** – Open your terminal (or command prompt) and SSH into your EC2 instance. – Use the following command: ssh -i /path/to/your/key.pem […]

Launch EC2 Free Tier

User aws free tier launch ec2 instance Assistant To launch an EC2 instance using the AWS Free Tier, follow these steps. The Free Tier provides 750 hours per month of Linux or Windows t2.micro instance usage for one year. Let's walk through the process: ### Prerequisites 1. **AWS Account**: Make sure you have an AWS […]

Vite Laravel Optimization Issue

User /.vite/deps/laravel-vite-plugin_inertia-helpers.js?v=20d9cbe6 net::ERR_ABORTED 504 (Outdated Optimize Dep) Vue- vite, laravel breeze Assistant The error message `net::ERR_ABORTED 504 (Outdated Optimize Dep)` typically occurs in Vite when it tries to load a dependency that has not been correctly optimized or is outdated. This can happen due to changes in the dependencies or modifications in the `package.json`. Here’s […]

504 Gateway Timeout Fix

User Failed to load resource: the server responded with a status of 504 (Outdated Optimize Dep aws laravel vue breeze Assistant A `504 Gateway Timeout` error generally indicates that the server, acting as a gateway or proxy, did not receive a timely response from the upstream server. This can occur in AWS-hosted Laravel and Vue.js […]

504 Error Resolution Tips

User Failed to load resource: the server responded with a status of 504 (Outdated Optimize Dep) Assistant The `504 (Gateway Timeout)` error with the message "Outdated Optimize Dep" suggests that a request to a server is timing out due to a dependency or process being outdated, potentially related to an optimization or caching process. Here […]

Vite 504 Error Fix

User GET http://ec2-13-60-77-224.eu-north-1.compute.amazonaws.com:3000/node_modules/.vite/deps/vue.js?v=74345201 net::ERR_ABORTED 504 (Outdated Optimize Dep) Assistant The error `504 (Outdated Optimize Dep)` typically occurs when the Vite development server is unable to properly serve dependencies, often due to outdated or incorrectly optimized dependencies. Here’s how you can troubleshoot and resolve the issue: — ### Steps to Resolve: #### 1. **Clear Vite Cache** […]

Instance reachability troubleshooting

User Instance status checks Instance reachability check failed Check failure at 2024/11/20 13:36 GMT+5:30 (3 days) Assistant The "Instance reachability check failed" error in your AWS EC2 instance indicates that the instance is running but the AWS system cannot connect to it. This is often caused by one of the following: ### 1. **Networking Issues** […]

Laravel Vue Google Login

User Laravel vue breeze google login Assistant To integrate Google Login into your Laravel application using Vue.js and Breeze, follow these steps: — ### 1. **Set Up a Google Cloud Project** 1. Go to the [Google Cloud Console](https://console.cloud.google.com/). 2. Create a new project or select an existing project. 3. Navigate to **APIs & Services > […]

Laravel Vue Google Login

User Laravel vue breeze google login Assistant To set up Google login with Laravel Breeze and Vue.js, you need to use Laravel Socialite for handling OAuth authentication. Here's a step-by-step guide: — ### Step 1: Install Laravel Socialite Run the following command to install Socialite: composer require laravel/socialite — ### Step 2: Configure Google OAuth […]