Skip to content

Updated the Symfony Installer installation instructions #4494

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions quick_tour/the_big_picture.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ On **Linux** and **Mac OS X** systems, execute the following console commands:

.. code-block:: bash

$ curl -sS https://symfony.com/installer | php
$ curl -LsS http://symfony.com/installer > symfony.phar
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is it really needed to switch back to plain HTTP?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unfortunately yes, because symfony.com doesn't support SSL yet. We're working on this but it will take some time.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hm okay, that should indeed be solved as fast as possible. Having to retrieve such an important tool from an HTTP connection is not really trustworthy.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1 I could see someone "burning" Symfony for this in the Twitter-world. And of course, we just shouldn't put people in this position. The faster the better on the SSL cert.

$ sudo mv symfony.phar /usr/local/bin/symfony

.. note::
Expand All @@ -41,7 +41,7 @@ On **Linux** and **Mac OS X** systems, execute the following console commands:

.. code-block:: bash

$ php -r "readfile('https://symfony.com/installer');" | php
$ php -r "readfile('http://symfony.com/installer');" > symfony.phar
$ sudo mv symfony.phar /usr/local/bin/symfony

After installing the Symfony installer, you'll have to open a new console window
Expand All @@ -53,9 +53,9 @@ to be able to execute the new ``symfony`` command:

On **Windows** systems, execute the following console command:

.. code-block:: bash
.. code-block:: bash

c:\> php -r "readfile('https://symfony.com/installer');" | php
c:\> php -r "readfile('http://symfony.com/installer');" > symfony.phar

This command downloads a file called ``symfony.phar`` which contains the Symfony
installer. Save or move that file to the directory where you create the Symfony
Expand Down