skip to Main Content

Vite manifest not found – CPanel

I Working on project that working with laravel 9 and Vite with laravel-vite, In Dev environment all thing working fine, but in production cPanel server I has this issue Vite manifest not found at: /home/???????/cart_shop/public/build/manifest.json # With Missing Vite Manifest…

VIEW QUESTION

install and enable OCI8 extension for php:8.1-fpm in Dockerfile

I'm trying to install and enable OCI8 in dockerfile for php:8.1-fpm image to .. This is a part of my Dockerfile: RUN mkdir /opt/oracle # Install Oracle Instantclient RUN wget https://download.oracle.com/otn_software/linux/instantclient/216000/instantclient-basic-linux.x64-21.6.0.0.0dbru.zip && wget https://download.oracle.com/otn_software/linux/instantclient/216000/instantclient-sdk-linux.x64-21.6.0.0.0dbru.zip && wget https://download.oracle.com/otn_software/linux/instantclient/216000/instantclient-sqlplus-linux.x64-21.6.0.0.0dbru.zip && unzip instantclient-basic-linux.x64-21.6.0.0.0dbru.zip…

VIEW QUESTION

How to fix a Laravel Sail "SQLSTATE[HY000] [1130] Host 'XXX.XXX.X.X' is not allowed to connect to this MySQL server" error – Docker

Laravel: 9.2 Mac OS: 12.3.1 Docker Desktop: 4.5.0 I have installed a default Laravel project using sail. My docker-compose.yml file includes the following: mysql: image: 'mysql/mysql-server:8.0' ports: - '${FORWARD_DB_PORT:-3306}:3306' environment: MYSQL_ROOT_PASSWORD: '${DB_PASSWORD}' MYSQL_ROOT_HOST: "%" MYSQL_DATABASE: '${DB_DATABASE}' MYSQL_USER: '${DB_USERNAME}' MYSQL_PASSWORD: '${DB_PASSWORD}'…

VIEW QUESTION
Back To Top
Search