Symfony window installation and Installation Problems and Solutions, symfonywindow
1. Run cmd to go to DOS and cd to the php.exe directory.
2. php-r "readfile ('HTTP: // symfony.com/installer');"> symfony
3. move symfony to projects (your working directory) move symfony c: \ projects
4. c: \> cd projects/
C: \ projects \> php symfony new my_project_name
5. php D: \ amp \ test \ my_project_name \ bin \ console server: run
If it is normal, start creating,
Generally, this error occurs:
[GuzzleHttp \ Exception \ RequestException]
CURL error 60: SSL certificate problem: unable to get local issuer certificate
[GuzzleHttp \ Ring \ Exception \ RingException]
CURL error 60: SSL certificate problem: unable to get local issuer certificate
Solution:
1. Download cacert. pem: https://curl.haxx.se/ca/cacert.pem
2.
Add this in php. ini:
Curl. cainfo = "[pathtothisfile] \ cacert. pem" For example: curl. cainfo = "D: \ phpStudy \ php55n \ cacert. pem"
3. Repeat the symfony step.