From 1144e49b8e00fa75b1593e4637c9218d7d944b97 Mon Sep 17 00:00:00 2001 From: Fabio Bas Date: Sun, 12 Jan 2014 21:33:46 +0100 Subject: Big quickstart doc overhaul, pt. 1 --- .../pages/GettingStarted/Installation.page | 41 +++++++++++++++++++--- 1 file changed, 37 insertions(+), 4 deletions(-) (limited to 'demos/quickstart/protected/pages/GettingStarted/Installation.page') diff --git a/demos/quickstart/protected/pages/GettingStarted/Installation.page b/demos/quickstart/protected/pages/GettingStarted/Installation.page index 7919e733..956f53c2 100755 --- a/demos/quickstart/protected/pages/GettingStarted/Installation.page +++ b/demos/quickstart/protected/pages/GettingStarted/Installation.page @@ -5,16 +5,17 @@ If you are viewing this page from your own Web server, you are already done with the installation.

-The minimum requirement by PRADO is that the Web server support PHP 5.2. PRADO has been tested with Apache Web server on Windows and Linux. Highly possibly it may also run on other platforms with other Web servers, as long as PHP 5.2 is supported. +The minimum requirement by PRADO is that the Web server support PHP 5.3.3. PRADO has been tested with Apache Web server on Windows, MacOSX and various Linux distro. Highly possibly it may also run on other platforms with other Web servers, as long as PHP 5.3.3 is supported.

-

-Installation of PRADO mainly involves downloading and unpacking. +PRADO can be installed as a standalone package or using composer

+
+

Standalone package

    -
  1. Go to pradosoft.com to grab the latest version of PRADO.
  2. +
  3. Go to pradosoft.com to grab the latest version of PRADO.
  4. Unpack the PRADO release file to a Web-accessible directory.
@@ -25,5 +26,37 @@ Your installation of PRADO is done and you can start to play with the demo appli

If you encounter any problems with the demo applications, please use the PRADO requirement checker script, accessible via http://web-server-address/prado/requirements/index.php, to check first if your server configuration fulfills the conditions required by PRADO.

+ +
+

Composer install

+
    +
  1. If you don't have installed composer already, install it globally: + +$ curl -s http://getcomposer.org/installer | php +$ php composer.phar install + +
  2. +
  3. Create a composer.json file for your project: + +{ + "require": { + "pradosoft/prado": "~3.2" + } +} + +
  4. +
  5. Now run the actual installation: + +$ composer install + +
  6. +
  7. In your project include the autoloader, and you will have access to the library classes: + + +
  8. +
+ -- cgit v1.2.3