You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: book/installation.rst
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -164,7 +164,7 @@ browsing the project directory and executing this command:
164
164
.. code-block:: bash
165
165
166
166
$ cd my_project_name/
167
-
$ php app/console server:run
167
+
$ php bin/console server:run
168
168
169
169
Then, open your browser and access the ``http://localhost:8000/`` URL to see the
170
170
Welcome Page of Symfony:
@@ -195,7 +195,7 @@ server with the ``server:stop`` command:
195
195
196
196
.. code-block:: bash
197
197
198
-
$ php app/console server:stop
198
+
$ php bin/console server:stop
199
199
200
200
Checking Symfony Application Configuration and Setup
@@ -265,7 +265,7 @@ If there are any issues, correct them now before moving on.
265
265
If none of the previous methods work for you, change the umask so that the
266
266
cache and log directories will be group-writable or world-writable (depending
267
267
if the web server user and the command line user are in the same group or not).
268
-
To achieve this, put the following line at the beginning of the ``app/console``,
268
+
To achieve this, put the following line at the beginning of the ``bin/console``,
269
269
``web/app.php`` and ``web/app_dev.php`` files::
270
270
271
271
umask(0002); // This will let the permissions be 0775
@@ -306,7 +306,7 @@ several minutes to complete.
306
306
307
307
.. code-block:: bash
308
308
309
-
$ php app/console security:check
309
+
$ php bin/console security:check
310
310
311
311
A good security practice is to execute this command regularly to be able to
312
312
update or replace compromised dependencies as soon as possible.
@@ -331,7 +331,7 @@ of the Symfony Installer anywhere in your system:
331
331
c:\projects\> php symfony demo
332
332
333
333
Once downloaded, enter into the ``symfony_demo/`` directory and run the PHP's
334
-
built-in web server executing the ``php app/console server:run`` command. Access
334
+
built-in web server executing the ``php bin/console server:run`` command. Access
335
335
to the ``http://localhost:8000`` URL in your browser to start using the Symfony
0 commit comments