source: extensions/Google2Piwigo/include/Zend/INSTALL.txt @ 17475

Last change on this file since 17475 was 17475, checked in by mistic100, 12 years ago

new extension: Google2Piwigo

File size: 3.4 KB
Line 
1INSTALLATION
2------------
3
4Zend Framework requires no special installation steps. Simply download the framework,
5extract it to the folder you would like to keep it in, and add the library directory
6to your PHP include_path. To use components in the extras library, add the extras/library
7directory to your PHP include_path, as well.
8If you would like to use Zend_Tool, simply add bin/zf.bat (for Windows) or
9bin/zf.sh (for anything else) to your system executable path.
10
11SYSTEM REQUIREMENTS
12-------------------
13
14Zend Framework requires PHP 5.2.4 or later. Please see the system requirements
15appendix for more detailed information:
16
17http://framework.zend.com/manual/en/requirements.html
18
19DEVELOPMENT VERSIONS
20--------------------
21
22If you would like to preview enhancements or bug fixes that have not yet been
23released, you can obtain the current development version of Zend Framework using one
24of the following methods:
25
26* Download the latest nightly snapshot. For those who care to brave the cutting
27  (often bleeding) edge, the nightly snapshots represent the latest single-
28  download development version of Zend Framework development. Snapshots are bundled
29  with documentation in English only or in all available languages. If you anticipate
30  updating to the latest development version of Zend Framework often, consider using
31  Subversion as described below.
32
33  http://framework.zend.com/download/snapshot
34
35* Using a Subversion (SVN) client. Zend Framework is open source software, and
36  the Subversion repository used for its development is publicly available. Consider
37  using SVN to get Zend Framework if you already use SVN for your application
38  development, want to contribute back to the framework, or need to upgrade your
39  framework version very often.
40
41  Exporting is useful if you want to get a particular framework revision without the
42  .svn  directories as created in a working copy.
43
44  Checking out a working copy is necessary if you would like to directly contribute
45  to Zend Framework; a working copy can be updated any time with svn update.
46
47  An externals definition is highly convenient for developers already using SVN to
48  manage their application working copies.
49
50  The URL for the trunk of the Zend Framework SVN repository is:
51
52  http://framework.zend.com/svn/framework/trunk
53
54  For more information about Subversion, please see the official website:
55
56  http://subversion.tigris.org
57
58CONFIGURING THE INCLUDE PATH
59----------------------------
60
61Once you have a copy of Zend Framework available, your application will need to
62access the framework classes. Though there are several ways to achieve this, your
63PHP include_path needs to contain the path to the Zend Framework classes under the
64/library directory in this distribution. You can find out more about the PHP
65include_path configuration directive here:
66
67http://www.php.net/manual/en/ini.core.php#ini.include-path
68
69Instructions on how to change PHP configuration directives can be found here:
70
71http://www.php.net/manual/en/configuration.changes.php
72
73GETTING STARTED
74---------------
75
76A great place to get up-to-speed quickly is the Zend Framework QuickStart:
77
78http://framework.zend.com/docs/quickstart
79
80The QuickStart covers some of the most commonly used components of ZF. Since
81Zend Framework is designed with a use-at-will architecture and components are
82loosely coupled, you can select and use only those components that are needed for
83your project.
Note: See TracBrowser for help on using the repository browser.