aimeos / aimeos_dist
Aimeos TYPO3 distribution for web shops, portals and market places
Installs: 546
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 2
Forks: 3
Open Issues: 0
Type:typo3-cms-extension
Requires
- php: ~7.1
- aimeos/aimeos-typo3: ~20.10||2020.10.x-dev
- bk2k/bootstrap-package: ~11.0
- sjbr/static-info-tables: ~6.9
- typo3/cms-core: ~10.4
README
Aimeos online shop distribution for TYPO3
The distribution package provides an out of the box web shop based on the the Aimeos online shop extension for TYPO3. The package contains a pre-configured, full featured shop including faceted search, product listings and detail views as well as baskets, coupon handling the checkout process and all e-mail handling for notifying the customers.
Table of contents
Installation
From TER
For non-composer installations, you can install the Aimeos distribution using the Extension manager. You can choose Aimeos from the list of available distributions:
Alternatively, you can download the Aimeos TYPO3 distribution package from the TER.
Composer
To install TYPO3 via composer, execute this at the command line
composer create-project "typo3/cms-base-distribution:^10.4" myshop
to install the required TYPO3 packages. Afterwards, you have to create the
FIRST_INSTALL
file to be able to run the setup process:
cd myshop
touch public/FIRST_INSTALL
For local installations, you can fire up the internal PHP web server
php -d memory_limit=256M -d max_execution_time=240 -d max_input_vars=1500 -S 127.0.0.1:8000 -t public
and open the URL ("http://127.0.0.1:8000") in your web browser. If you use Apache or another web server, head over directly to the URL your installation is reachable directly without starting the PHP wev server. Complete the TYPO3 setup process before you continue to install the Aimeos distribution.
Then, you need to add this to your composer.json
file in the root application directory:
"scripts": { "post-install-cmd": [ "Aimeos\\Aimeos\\Custom\\Composer::install" ], "post-update-cmd": [ "Aimeos\\Aimeos\\Custom\\Composer::install" ], ... }
Now install the Aimeos distribution for TYPO3 via command line. Due to conflicts with the composer/installers package, installation is only possible using composer 1.x!
composer req aimeos/aimeos_dist
Then, activate the extensions and update the database:
./vendor/bin/typo3 extension:activate scheduler ./vendor/bin/typo3 extension:activate aimeos ./vendor/bin/typo3 extension:activate aimeos_dist
Now, your Aimeos installation is complete and you can check the frontend and log into the TYPO3 backend.
License
The Aimeos TYPO3 distribution is licensed under the terms of the GPL Open Source license and is available for free.