skip to Main Content

Laravel illuminate/filesystem and laravel/framework coexist but did not find illuminate/filesystem in composer.json

I am updating laravel from composer but getting one error during updating it Only one of these can be installed: illuminate/filesystem[v9.0.0-beta.1, ..., 9.x-dev, v10.0.0, ..., 10.x-dev, v11.0.0, ..., 11.x-dev], laravel/framework[v10.0.0, ..., 10.x-dev]. laravel/framework replaces illuminate/filesystem and thus cannot coexist with…

VIEW QUESTION

Laravel – MySQL docker container stuck reloading

My stack is win10/wsl2/ubuntu/docker desktop. I'm stuck on running a MySQL docker container. This is a part of my docker-compose.yml: mysql: hostname: a-mysql container_name: a-mysql image: mysql:8 restart: unless-stopped volumes: - ./mysql_data:/var/lib/mysql - ./mysql/my.cnf:/etc/mysql/conf.d/my.cnf - ./mysql/dump:/docker-entrypoint-initdb.d env_file: - .env ports:…

VIEW QUESTION

Nginx – Vite config on docker

I'm using a machine on my network (not the one I use to edit/view the application) to host a docker laravel application. I'm struggling setting up vite. I get the console errors: jobs:20 GET http://[::]:5173/@vite/client net::ERR_BLOCKED_BY_CLIENT jobs:20 GET http://[::]:5173/resouces/css/app.css net::ERR_BLOCKED_BY_CLIENT…

VIEW QUESTION

I made Laravel CRUD api and I can't upload an image

for several days I have problem uploading an image with Laravel api. I was sending request via React's modified axios. Code is as follows. axios-client.js import axios from "axios"; const axiosClient = axios.create({ baseURL : `${import.meta.env.VITE_API_BASE_URL}/api` }); axiosClient.interceptors.request.use((config) => {…

VIEW QUESTION
Back To Top
Search