installation.xml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <sect1 id="introduction.installation">
  2. <title> Instalación</title>
  3. <para>
  4. Zend Framework requiere por lo menos PHP 5.1.4 o superior, aunque Zend recomienda encarecidamente la versión 5.2.3 o superior, porque hay parches de seguridad y mejoras en el rendimiento entre estas dos versiones. Por favor, consulte el anexo sobre los <link linkend="requirements">requisitos del sistema</link>. para obtener más información.
  5. </para>
  6. <para>
  7. La instalación del Zend Framework es muy simple. Una vez que haya descargado y descomprimido el framework, deberá añadir la carpeta "/library" de la distribución al principio de su "include path". También puede mover la carpeta "library" a cualquier otra posición (compartida o no) de su sistema de archivos.
  8. <itemizedlist>
  9. <listitem>
  10. <para>
  11. <ulink url="http://framework.zend.com/download">Descargar la última versión estable.</ulink> Esta versión esta disponible en formatos<code>.zip</code>. <code>.tar.gz</code>, es una buena opción para aquellos que comienzan o son nuevos en Zend Framework.
  12. </para>
  13. </listitem>
  14. <listitem>
  15. <para>
  16. <ulink url="http://framework.zend.com/download/snapshot">Download the latest nightly
  17. snapshot.</ulink> For those who would brave the cutting edge, the nightly snapshots represent the
  18. latest progress of Zend Framework development. Snapshots are bundled with documentation either in
  19. English only or in all available languages. If you anticipate working with the latest Zend
  20. Framework developments, consider using a Subversion (SVN) client.
  21. </para>
  22. </listitem>
  23. <listitem>
  24. <para>
  25. Using a <ulink url="http://subversion.tigris.org">Subversion</ulink> (SVN) client. Zend Framework
  26. is open source software, and the Subversion repository used for its development is publicly
  27. available. Consider using SVN to get the Zend Framework if you already use SVN for your
  28. application development, want to contribute back to the framework, or need to upgrade your
  29. framework version more often than releases occur.
  30. </para>
  31. <para>
  32. <ulink url="http://svnbook.red-bean.com/nightly/en/svn.ref.svn.c.export.html">Exporting</ulink> is
  33. useful if you want to get a particular framework revision without the <code>.svn</code>
  34. directories as created in a working copy.
  35. </para>
  36. <para>
  37. <ulink url="http://svnbook.red-bean.com/nightly/en/svn.ref.svn.c.checkout.html">Checking out a
  38. working copy</ulink> is good when you might contribute to Zend Framework, and a working copy can
  39. be updated any time with
  40. <ulink url="http://svnbook.red-bean.com/nightly/en/svn.ref.svn.c.update.html"><code>svn
  41. update</code></ulink>.
  42. </para>
  43. <para>
  44. <ulink url="http://svnbook.red-bean.com/nightly/en/svn.advanced.externals.html">An externals
  45. definition</ulink> is highly convenient for developers already using SVN to manage their
  46. application working copies.
  47. </para>
  48. <para>
  49. La URL del almacén del repository SVN de Zend Framework es:
  50. <ulink url="http://framework.zend.com/svn/framework/standard/trunk">http://framework.zend.com/svn/framework/standard/trunk</ulink>
  51. </para>
  52. </listitem>
  53. </itemizedlist>
  54. </para>
  55. <para>
  56. Una vez que tenga disponible una copia de Zend Framework, su aplicación necesita poder acceder a las clases del framework. Aunque hay
  57. <ulink url="http://www.php.net/manual/en/configuration.changes.php">
  58. diferentes maneras de lograr esto</ulink>, su
  59. <ulink url="http://www.php.net/manual/en/ini.core.php#ini.include-path"><code>include_path</code></ulink> de PHP necesita contener una ruta a la librería de Zend Framework.
  60. </para>
  61. <para>
  62. Zend provides a <ulink url="http://framework.zend.com/docs/quickstart">QuickStart</ulink> to get you up and running
  63. as quickly as possible. This is an excellent way to begin learning about the framework with an emphasis
  64. on real world examples that you can built upon.
  65. </para>
  66. <para>
  67. Ya que los componentes de Zend Framework están débilmente conectados, tiene la opción de usar cualquier combinación de ellos en sus aplicaciones. Los siguientes capítulos presentan una referencia exhaustiva de Zend Framework, componente a componente.
  68. </para>
  69. </sect1>