Segui este tutorial do Magento DevDocs para instalar dados de amostra após a instalação do Magento 2.
Mas depois de executar o último comando ./bin/magento sampledata:deploy
, recebo o seguinte erro:
./composer.json has been updated
Loading composer repositories with package information
Updating dependencies (including require-dev)
Your requirements could not be resolved to an installable set of packages.
Problem 1
- The requested package magento/module-offline-shipping-sample-data could not be found in any version, there may be a typo in the package name.
Problem 2
- The requested package magento/module-theme-sample-data could not be found in any version, there may be a typo in the package name.
Problem 3
- The requested package magento/module-sales-sample-data could not be found in any version, there may be a typo in the package name.
Problem 4
- The requested package magento/module-msrp-sample-data could not be found in any version, there may be a typo in the package name.
Problem 5
- The requested package magento/module-sales-rule-sample-data could not be found in any version, there may be a typo in the package name.
Problem 6
- The requested package magento/module-configurable-sample-data could not be found in any version, there may be a typo in the package name.
Problem 7
- The requested package magento/module-product-links-sample-data could not be found in any version, there may be a typo in the package name.
Problem 8
- The requested package magento/module-catalog-rule-sample-data could not be found in any version, there may be a typo in the package name.
Problem 9
- The requested package magento/module-grouped-product-sample-data could not be found in any version, there may be a typo in the package name.
Problem 10
- The requested package magento/module-tax-sample-data could not be found in any version, there may be a typo in the package name.
Problem 11
- The requested package magento/module-catalog-sample-data could not be found in any version, there may be a typo in the package name.
Problem 12
- The requested package magento/module-downloadable-sample-data could not be found in any version, there may be a typo in the package name.
Problem 13
- The requested package magento/module-cms-sample-data could not be found in any version, there may be a typo in the package name.
Problem 14
- The requested package magento/module-bundle-sample-data could not be found in any version, there may be a typo in the package name.
Problem 15
- The requested package magento/module-swatches-sample-data could not be found in any version, there may be a typo in the package name.
Problem 16
- The requested package magento/module-widget-sample-data could not be found in any version, there may be a typo in the package name.
Problem 17
- The requested package magento/module-review-sample-data could not be found in any version, there may be a typo in the package name.
Problem 18
- The requested package magento/module-customer-sample-data could not be found in any version, there may be a typo in the package name.
Problem 19
- The requested package magento/module-wishlist-sample-data could not be found in any version, there may be a typo in the package name.
Potential causes:
- A typo in the package name
- The package is not available in a stable-enough version according to your minimum-stability setting
see <https://groups.google.com/d/topic/composer-dev/_g3ASeIFlrc/discussion> for more details.
Não consegui encontrar uma solução e, para ser sincero, meu conhecimento sobre compositor está seriamente ausente. Qualquer ajuda é bem vinda.
magento2
composer
sample-data
Sander Mangel
fonte
fonte
Respostas:
Eu também tenho lutado para instalar os dados de amostra. Parece que algo está quebrado aqui (outubro de 2015) e as instruções nos devdocs também não funcionaram para mim. Eu estava enfrentando os mesmos problemas do compositor e
magento sampledata:install
nem sequer está lá.Em vez disso, segui as instruções "Do repositório do GitHub" no arquivo leia-me dos dados de amostra :
Apenas clone o repositório em algum lugar (pode estar fora da pasta do projeto, pois a ferramenta está cuidando da ligação simbólica dos módulos individuais):
Em seguida, execute o script "installer":
Depois disso, execute o script de atualização:
E você deve ver os dados de amostra sendo instalados (demora um pouco ...):
Não se esqueça de limpar caches e corrigir permissões e você deverá ver todos os dados de amostra no back-end e no front-end agora ...
fonte
PHP Fatal error: Interface 'Magento\Framework\Serialize\SerializerInterface' not found
é exibido no terminal Enquanto o arquivo SerializerInterface.php existir.Teve o mesmo problema. Corrigido ir ao diretório raiz e especificar os repositórios para o compositor com o seguinte comando (use https para evitar aviso do compositor):
Depois disso
trabalhou como pretendido
fonte
Alterações recentes no código possibilitam a instalação de dados de amostra usando o ramo de desenvolvimento Magento 2 CE GitHub, desde que você clone o Magento 2 e os repositórios de dados de amostra.
Esse método de instalação de dados de amostra será aumentado pelo tempo do GA com uma opção de linha de comando e uma opção de compositor; no entanto, atualmente, AFAIK, esta é a única maneira de instalar dados de amostra com a ramificação de desenvolvimento.
Em resumo:
Observe que, se você executar o Assistente de instalação, poderá ver exceções em aproximadamente 90%. Nesse caso, defina a permissão e a propriedade do sistema de arquivos novamente (provavelmente como root).
Detalhes: http://devdocs.magento.com/guides/v2.0/install-gde/install/web/install-web-sample-data.html
fonte
Na primeira seção, adicione
"minimum-stability": "beta"
, antes da licença.fonte
install
comando disponívelhttps://packages.magento.com é o antigo URL do pacote para Magento, altere o arquivo composer.json para https://repo.magento.com
fonte
Caso você também possa usar esta alternativa:
e depois:
você será solicitado a fornecer nome de usuário / senha: use public_key / private_key da sua conta do Magento Marketplace
fonte