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: quick_tour/the_big_picture.rst
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,18 @@ Downloading Symfony2
19
19
First, check that you have installed and configured a Web server (such as
20
20
Apache) with PHP 5.3.2 or higher.
21
21
22
+
.. tips::
23
+
24
+
Since PHP 5.4, you could use the Build-in web server. For development purpose only, it can help you to start your project right now.
25
+
Just use this command to launch the server:
26
+
27
+
.. code-block:: bash
28
+
29
+
php -S localhost:80 -t /path/to/www
30
+
31
+
Where "/path/to/www" is the path to some directory on your machine that you'll extract Symfony into so that the eventual URL to your application is "http://localhost/Symfony/app_dev.php".
32
+
You can also extract Symfony first and then start the web server in the Symfony "web" directory. If you do this, the URL to your application will be "http://localhost/app_dev.php".
33
+
22
34
Ready? Start by downloading the "`Symfony2 Standard Edition`_", a Symfony
23
35
:term:`distribution` that is preconfigured for the most common use cases and
24
36
also contains some code that demonstrates how to use Symfony2 (get the archive
0 commit comments