cancel
Showing results for 
Search instead for 
Did you mean: 

Magento2 dove trovo la linea di comando

Magento2 dove trovo la linea di comando

Goodmorning everyone, i am trying to install magento2 locally for what i could understand i have to install it from command line. but where do I find the command line?

11 REPLIES 11

Re: Magento2 dove trovo la linea di comando

@manuelp1 

 

The command line means the terminal application of your system.

if you have installed Magento Application on your local system you have to use application called as "Terminal" and go inside Magento folder directory by cd command.

if you have installed Magento on server then you have to connect via ssh and go to Magento application folder.

Make sure you have all the requirements to install Magento on your system :

https://devdocs.magento.com/guides/v2.4/install-gde/system-requirements-tech.html

 

Hope it helps !

Problem Solved ? Click on 'Kudos' & Accept as Solution ! Smiley Happy

Re: Magento2 dove trovo la linea di comando

ciao, grazie per la risposta, io ho provato ad inserire il codice su terminal di windows recuperata da  https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands.html

ma tutto quello che ho ricevuto sono stati messaggi di errore 

PS C:\xampp\htdocs\magento> setup:install
setup:install : Termine 'setup:install' non riconosciuto come nome di cmdlet, funzione, programma eseguibile o file
script. Controllare l'ortografia del nome o verificare che il percorso sia incluso e corretto, quindi riprovare.
In riga:1 car:1
+ setup:install
+ ~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (setup:installSmiley Frustratedtring) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException

Re: Magento2 dove trovo la linea di comando

@manuelp1 

 

The command should be like this :

 

C:\xampp\htdocs\magento> php bin/magento setup:install

so the installation command should be :

php bin/magento setup:install --base-url=http://127.0.0.1/magento2/ \
--db-host=localhost --db-name=magento --db-user=magento --db-password=magento \
--admin-firstname=Magento --admin-lastname=User --admin-email=user@example.com \
--admin-user=admin --admin-password=admin123 --language=en_US \
--currency=USD --timezone=America/Chicago --use-rewrites=1 \
--search-engine=elasticsearch7 --elasticsearch-host=es-host.example.com \
--elasticsearch-port=9200

change all the values from above command.

every command should start with php bin/magento, hope you are clear now

you can check by typing :

php bin/magento

Hope it helps !

Problem Solved ? Click on 'Kudos' & Accept as Solution ! Smiley Happy

Re: Magento2 dove trovo la linea di comando

grazie veramente tante, ma purtroppo non riesco a risolvere, tutte queste prove le avevo gia fatte nel cmd prompt dei comandi. ma il messaggio di errore era lo stesso 

PS C:\xampp\htdocs\magento> php bin / magento setup: install
php : Termine 'php' non riconosciuto come nome di cmdlet, funzione, programma eseguibile o file script. Controllare
l'ortografia del nome o verificare che il percorso sia incluso e corretto, quindi riprovare.
In riga:1 car:1
+ php bin / magento setup: install
+ ~~~
+ CategoryInfo : ObjectNotFound: (phpSmiley Frustratedtring) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException

Re: Magento2 dove trovo la linea di comando

@manuelp1 

 

Please share screenshot from http://awesomescreenshot.com

direct adding image in comment needs acceptance from Moderator.

Problem Solved ? Click on 'Kudos' & Accept as Solution ! Smiley Happy

Re: Magento2 dove trovo la linea di comando

Re: Magento2 dove trovo la linea di comando

@manuelp1 

 

Two things to notice :

1. Don't add space in bin / magento and for other keywords too, just type :

php bin/magento

2. I think you don't have php installed on your machine, you can check by typing :

php -v

if the above returns a version then it's fine, else you have to setup all the requirements which is explained in the above given link of Magento requirements.

 

Hope it helps !

Problem Solved ? Click on 'Kudos' & Accept as Solution ! Smiley Happy

Re: Magento2 dove trovo la linea di comando

ho  anche provato a non inserire spazi tra le parole, ma effettivamente quello che sembra è che non legga il comando php. ma xampp ha già lui istallato php, mysql e apache 

Re: Magento2 dove trovo la linea di comando

@manuelp1 

qual è stato il risultato di "php -v" ?

se dice php non trovato, devi prima risolverlo !

Problem Solved ? Click on 'Kudos' & Accept as Solution ! Smiley Happy