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
+13-13Lines changed: 13 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -166,7 +166,7 @@ browsing the project directory and executing this command:
166
166
.. code-block:: bash
167
167
168
168
$ cd my_project_name/
169
-
$ php app/console server:run
169
+
$ php bin/console server:run
170
170
171
171
Then, open your browser and access the ``http://localhost:8000/`` URL to see the
172
172
Welcome Page of Symfony:
@@ -197,7 +197,7 @@ server with the ``server:stop`` command:
197
197
198
198
.. code-block:: bash
199
199
200
-
$ php app/console server:stop
200
+
$ php bin/console server:stop
201
201
202
202
Checking Symfony Application Configuration and Setup
@@ -267,7 +267,7 @@ If there are any issues, correct them now before moving on.
267
267
If none of the previous methods work for you, change the umask so that the
268
268
cache and log directories will be group-writable or world-writable (depending
269
269
if the web server user and the command line user are in the same group or not).
270
-
To achieve this, put the following line at the beginning of the ``app/console``,
270
+
To achieve this, put the following line at the beginning of the ``bin/console``,
271
271
``web/app.php`` and ``web/app_dev.php`` files::
272
272
273
273
umask(0002); // This will let the permissions be 0775
@@ -308,7 +308,7 @@ several minutes to complete.
308
308
309
309
.. code-block:: bash
310
310
311
-
$ php app/console security:check
311
+
$ php bin/console security:check
312
312
313
313
A good security practice is to execute this command regularly to be able to
314
314
update or replace compromised dependencies as soon as possible.
@@ -333,7 +333,7 @@ of the Symfony Installer anywhere in your system:
333
333
c:\projects\> php symfony demo
334
334
335
335
Once downloaded, enter into the ``symfony_demo/`` directory and run the PHP's
336
-
built-in web server executing the ``php app/console server:run`` command. Access
336
+
built-in web server executing the ``php bin/console server:run`` command. Access
337
337
to the ``http://localhost:8000`` URL in your browser to start using the Symfony
0 commit comments