https://github.com/haehnchen/meleven
https://github.com/haehnchen/meleven
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/haehnchen/meleven
- Owner: Haehnchen
- License: other
- Created: 2016-07-07T08:03:38.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-07-07T06:56:57.000Z (over 9 years ago)
- Last Synced: 2025-01-12T16:32:43.688Z (9 months ago)
- Language: PHP
- Size: 78.1 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Shopmacher Meleven
http://www.meleven.de/
## Configuration
Shop configuration need to be changes
```
# config.php
'cdn' => [
'backend' => 'local',
'strategy' => 'md5',
'adapters' => [
'local' => [
'type' => 'local',
'mediaUrl' => '',
'path' => realpath(__DIR__ . '/')
],
'meleven' => [
'type' => 'meleven',
'strategy' => 'meleven',
'mediaUrl' => 'https://api.meleven.de/out/XXXXX/',
'auth' => [
'user' => '',
'password' => '',
'channel' => 'XXXXXX'
]
]
]
]
```## Plugin config in Backend
```
sm_meleven_enabled
sm_meleven_user
sm_meleven_password
sm_meleven_channel
```## Database
Images mapping from main origin images and Shopware path are mapped by table
```
sm_meleven_images
```## Command
To migrate from local filesystem to external
```
bin/console sw:media:migrate --from=local --to=meleven
bin/console sw:thumbnail:generate
```