A customer deleted a whole folder with data objects.
For my surprise - they won´t be in the TrashBin - they would be completely deleted, so it´s not possible to bring them back from Trash.
How is this possible? Other objects i found in the Trash. Any idea why this could be happend? Did i miss something?
Hi All I hope you are well this close to Christmas, I have been pulling my hair out trying to learn Docker and get Pimcore installed on Docker Desktop.
If I use the information on this git https://github.com/pimcore/pimcore, my vscode doesnt recognise the command
Was able to get https://github.com/pimcore/docker this installed in a container, however I couldnt access the nginx.conf to edit and couldnt access htacess to edit either.
I would be greatly appreciative if I could get some guidance please.
Have a great Christmas all!
hi to all pimconauts!
ist there is reason that both repositories
are not within pimcore repositories anymore? can they be found somewhere else?
Hi. I am trying to update Pimcore 6.3.6 to 6.9. but when running composer update I get error
In Process.php line 143:
[TypeError]
Argument 1 passed to Symfony\Component\Process\Process::__construct() must be of the type array, string given, called in /var/www/vendor/pimcore/pimcore/lib/Composer.php on line 199
I see that string as param to Process was removed in Symfony 4.4 so I restricted dependencies to Symfony 4.3. but I am still getting this error. Anyone had similiar issues?
hey all - I'm using the Pimcore skeleton and have installed the datahub and data importer bundles. I manually start an import...
...and then manually run the import as such:
sudo php bin/console datahub:data-importer:process-queue-parallel --processes=2 -vvv
...but then I get:
Any help greatly appreciated!!!
Hi all, I'm struggling to find my way to make Data Importer working properly , I am using bitnami pimcore stack on debian 11.
My first try when follow the official installation guidelines I got an error on the first command
composer require pimcore/data-importer --with-all-dependencies
In RequireCommand.php line 142:
file_put_contents(./composer.json): Failed to open stream: Permission denied
So I add "sudo" before this command and I got warning
Do not run Composer as root/super user! See https://getcomposer.org/root for details
I ignored this and continued back then and added the crontab commands then plugin installed put get stuck at 0/x proceed for ever when I get back to command line I found that if I tested cronjob commands outside crontab it fires an error
Could not open input file: /opt/bitnami/stack/pimcore/bin/console
and so on .
So I stopped this aws instance and creted fresh new one
Now I need your help to install Data Importer again but properly this time and add all needed configurations for bitnami pimcore stack version 10.5.15.1 on debian 11
hello everyone. I am having trouble installing pimcore with a mysql database which requires an ssl connection. I am running the command like so:
PIMCORE_INSTALL_MYSQL_SSL_CERT_PATH=${MYSQL_CERT_PATH} vendor/bin/pimcore-install --ignore-existing-config --admin-username=admin --admin-password=admin
I am getting this error:
[ERROR] The following errors were encountered during installation
* Couldn't establish connection to MySQL: An exception occurred in driver: SQLSTATE[HY000] [3159] Connections using insecure transport are prohibited while --require_secure_transport=ON.
I have tried this command now,
vendor/bin/pimcore-install --ignore-existing-config --admin-username=admin --admin-password=admin --mysql-ssl-cert-path=${MYSQL_CERT_PATH} --mysql-username=${DATABASE_USER} --mysql-password=${DATABASE_PASSWORD} --mysql-database=${DATABASE_NAME}
but still getting the error.
I am trying to generate a new bundle for pimcore. I have tried both commands from my php-docker but am getting the same error that:
"There are no commands defined in the "pimcore:generate" namespace."
I have tried both commands:
bin/console pimcore:generate:bundle
and
bin/console pimcore:generate:bundle --env=dev
I am using the docker for pimcore/demo project with PHP version 8.1:
docker run --rm -v %cd%:/var/www/html pimcore/pimcore:php8.1-latest composer create-project pimcore/demo my-project
No, I haven't. I used docker to install pimcore. I used below command to install it in windows having docker desktop installed.
docker run --rm -v /d/Projects/2_pimcore:/var/www/html pimcore/pimcore:php8.1-latest composer create-project pimcore/demo my-project-docker
Then I accessed my PHP docker by:
docker exec -it my-project-docker-php-1 bash
and then tried to create bundle using below commands but to no use:
bin/console --env=dev pimcore:generate:bundle
bin/console pimcore:generate:bundle --env=dev