php bin/magento cache:clean
In Mysql.php line 407:
Port must be configured within host parameter (like localhost:3306
make sure you do the commands within
warden shell
Twitter : https://twitter.com/DavidRaleche
Newsletter : Subscribe here
Store : https://david.raleche.com/shop
php bin/magento cache:clean
In Mysql.php line 407:
Port must be configured within host parameter (like localhost:3306
make sure you do the commands within
warden shell
pv ../../NEW-CLEANED-DUMP.sql | warden db import
Importing a dump database file into a database involves using command-line tools specific to the database management system, such as MySQL or PostgreSQL, and executing the appropriate commands to load the data from the dump file into the database. The process requires providing the necessary credentials, specifying the database name, and waiting for the import process to complete.
How to fix ?
2023-06-26 15:35:15 [00000730:00001b78] FATAL: exception.cpp:268: COMResult: SaveReport failed to save the file “09225EC8” for report 364. (error 80004005).
2023-06-26 15:35:15 [00000730:00001b78] FATAL: exception.cpp:270: SaveReport: SaveReport failed to save the file “09225EC8” for report 364. (error 80004005).
2023-06-26 15:35:15 [00000730:00001b78] FATAL: exception.cpp:268: COMResult: Unable to receive data from the socket. (error 8004044b).
2023-06-26 15:35:15 [00000730:00001b78] FATAL: exception.cpp:270: ProcessRequest: Unable to receive data from the socket. (error 8004044b).
MAKE SURE ALL FIELDS are filled out
For those seeking to create an alias of Python on a MAC operating system, the creation of such an alias may be achieved through the execution of a designated command line. The command line in question may be articulated as:
alias python=/usr/bin/python3
git clean -fdxn
git clean -fdx
-x
will also remove all ignored files, including ones specified by .gitignore
! You may want to use -n
for preview of files to be deleted.davidr in ~/Desktop/prelude_JULY (dev) > docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
491f92fcd11e nginx "/docker-entrypoint.…" 5 minutes ago Up 5 minutes 0.0.0.0:80->80/tcp, 0.0.0.0:443->443/tcp prelude-web
aa1b1a237eb7 prelude_july-php "docker-php-entrypoi…" 5 minutes ago Up 5 minutes 9000/tcp prelude-php
153464b88f23 edoburu/pgbouncer "/entrypoint.sh /usr…" 5 minutes ago Up 5 minutes 5432/tcp prelude-db
davidr in ~/Desktop/prelude_JULY (dev) >
docker exec -it aa1b1a237eb7 /bin/sh
/var/www/html #
SOLUTION
CREATE FILE / GO TO ==> .env
add
PHP_VERSION=7.2
Problem when trying to run DOCKER
Here is the command
git log -p -c
or git log -p --cc
2022/07/31 01:38:52 [error] 4425#0: *18 upstream timed out (60: Operation timed out) while reading response header from upstream, client: 127.0.0.1, server: , request: “GET /v1/facilitycountdown HTTP/1.1”, upstream: “fastcgi://unix:/Users/davidr/.config/valet/valet.sock”, host: “web.test”
System permision issues and fasCgi fix in nginx conf file
start valet with SUDO
sudo valet start
Start your unit test with SUDO
sudo vendor/bin/phpunit
NGINX FIX
vim /usr/local/etc/nginx/valet/valet.conf
location ~ [^/]\.php(/|$) {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
fastcgi_read_timeout 600;
fastcgi_send_timeout 600;
fastcgi_connect_timeout 600;
fastcgi_buffers 8 32k;
fastcgi_buffer_size 32k;
include fastcgi_params;
.........
brew services restart pgbouncer