Replies: 1 comment 3 replies
-
Hi, could you get it to work? I am also stuck but on ubuntu with Akeneo Community Edition :-( |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, forks, I stuck in the half way installing Akeneo in CWP-pro which Akeno is using composer not like other (prestashop, wordpress) just upload the site files and create database.
System: Centos 8 stream CWP delayed 4GB RAM, 4GB SWAP, 256GB SSD
Centos Control Webpanel(CWPpro version: 0.9.8.1116) with global Apache 2.4.52/ PHP version: 7.4.27
Akeneo is an excellent PIM solution for E-commerce website magento, prestashop.
Akeneo requires composer to install the I follow the link to install the lasted version composer with root privileges user
http://wiki.centos-webpanel.com/install-composer-php-dependency-manager
Akeneo installation link
https://docs.akeneo.com/latest/install_pim/manual/installation_ce.html
Here are the steps what I did:
composer create-project akeneo/pim-community-standard /home/akatest/public_html/sub.mydomain.com "5.0.*@stable"
---------------------------------------------COMMAND OUTPUT-----------------------------------------------
Creating a "akeneo/pim-community-standard" project at "./sub.mydomain.com"
Installing akeneo/pim-community-standard (v5.0.67)
Created project in /home/aketest/sub.mydoamin.com
Loading composer repositories with package information
Updating dependencies
Your requirements could not be resolved to an installable set of packages.
Problem 1
- akeneo/pim-community-dev[v5.0.0, ..., v5.0.67] require ext-apcu * -> it is missing from your system. Install or enable PHP's apcu extension.
- Root composer.json requires akeneo/pim-community-dev ^5.0.0 -> satisfiable by akeneo/pim-community-dev[v5.0.0, ..., v5.0.67].
To enable extensions, verify that they are enabled in your .ini files:
- /usr/local/bin/php.ini
You can also run php --ini in a terminal to see which files are used by PHP in CLI mode.
Alternatively, you can run Composer with --ignore-platform-req=ext-apcu to temporarily ignore these required extensions.
composer create-project akeneo/pim-community-standard /home/aketest/sub.mydomain.com "5.0.*@stable" --ignore-platform-req=ext-apcu
---------------------------------------------COMMAND OUTPUT-----------------------------------------------
Creating a "akeneo/pim-community-standard" project at "./pima.domain.com"
Installing akeneo/pim-community-standard (v5.0.67)
Created project in /home/aketest/sub.mydomain.com
Loading composer repositories with package information
Updating dependencies
Your requirements could not be resolved to an installable set of packages.
Problem 1
- akeneo/pim-community-dev[v5.0.0, ..., v5.0.67] require ext-imagick * -> it is missing from your system. Install or enable PHP's imagick extension.
- Root composer.json requires akeneo/pim-community-dev ^5.0.0 -> satisfiable by akeneo/pim-community-dev[v5.0.0, ..., v5.0.67].
To enable extensions, verify that they are enabled in your .ini files:
- /usr/local/bin/php.ini
You can also run php --ini in a terminal to see which files are used by PHP in CLI mode.
Alternatively, you can run Composer with --ignore-platform-req=ext-imagick to temporarily ignore these required extensions.
composer create-project akeneo/pim-community-standard /home/domain/pima.domain.com "5.0.*@stable" --ignore-platform-req=ext-apcu --ignore-platform-req=ext-imagick
---------------------------------------------COMMAND OUTPUT-----------------------------------------------
Creating a "akeneo/pim-community-standard" project at "./sub.mydomin.com"
https://repo.packagist.org could not be fully loaded (curl error 35 while downloading https://repo.packagist.org/packages.json: OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to repo.packagist.org:443 ), package information was loaded from the local cache and may be out of date
Installing akeneo/pim-community-standard (v5.0.67)
Created project in /home/aketest/sub.mydomain.com
Loading composer repositories with package information
Updating dependencies
Lock file operations: 148 installs, 0 updates, 0 removals
Writing lock file
Installing dependencies from lock file (including require-dev)
Package operations: 148 installs, 0 updates, 0 removals
0/47 [>---------------------------] 0% - Downloading symfony/requirements-checker (v1.1.8)
Package doctrine/doctrine-cache-bundle is abandoned, you should avoid using it. No replacement was suggested.
Package doctrine/reflection is abandoned, you should avoid using it. Use roave/better-reflection instead.
Package swiftmailer/swiftmailer is abandoned, you should avoid using it. Use symfony/mailer instead.
Package symfony/inflector is abandoned, you should avoid using it. Use use
EnglishInflector
from the String component instead instead.Package twig/extensions is abandoned, you should avoid using it. No replacement was suggested.
Generating autoload files
composer/package-versions-deprecated: Generating version class...
composer/package-versions-deprecated: ...done generating version class
78 packages you are using are looking for funding.
Use the
composer fund
command to find out more!Symfony recipes are disabled: "symfony/flex" not found in the root composer.json
What I'm thinking is composer is using the system PHP will use the PHP compiled in PHP selectors or the configuration in Vhost
Anyone have any ideas? please please help Appreciated
Beta Was this translation helpful? Give feedback.
All reactions