cancel
Showing results for 
Search instead for 
Did you mean: 

Can I restalling 2.3.6 p1

Can I restalling 2.3.6 p1

The dashboard is showing me that I am on 2.3.6 P1. I do not leave I actually fully upgraded to that from 2.3.6.  I believe it failed. I can I just go ahead and try reinstalling it even though it's showing me that I am on 2.3.6-P1. Will I run into any problems running it $ composer require magento/product-community-edition=2.3.6 P1 --no-update

1 REPLY 1

Re: Can I restalling 2.3.6 p1

Hi, I guess you have uninstalled or remove the previous one then install it again so please follow the below.

1. To check your composer version run the below command.

 -> composer -V if not installed then please install it.
 run following commands to install it 

php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
php -r "if (hash_file('sha384', 'composer-setup.php') === '756890a4488ce9024fc62c56153228907f1545c228516cbf63f885e036d37e9a59d27d63f46af1d4d07ee0f76181c7d3') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
php composer-setup.php
php -r "unlink('composer-setup.php');"

after that please run again composer -V and check the version again

2. To install the Magento 2.3.6 p1 version community edition run the following command

composer create-project --repository-url=https://repo.magento.com/ magento/project-community-edition=2.3.6-p1 <install-directory-name>

3. To set file permissions run the below commands.

cd /var/www/html/<magento install directory>
find var generated vendor pub/static pub/media app/etc -type f -exec chmod g+w {} +
find var generated vendor pub/static pub/media app/etc -type d -exec chmod g+ws {} +chown -R :www-data . # Ubuntu
chmod u+x bin/magento

4. check the Magento directory then run your Magento 2.3.6-p1 domain on the browser and configure the admin and store front.

I have taken reference from dev docs 
https://devdocs.magento.com/guides/v2.3/install-gde/composer.html

Please give me a Kudos if it will h...