Instalar Symfony en Windows
De CidesaWiki
(Diferencias entre revisiones)
Línea 4: | Línea 4: | ||
<pre> | <pre> | ||
- | |||
# php -v | # php -v | ||
PHP 5.1.6 (cli) (built: Mar 7 2007 12:48:25) | PHP 5.1.6 (cli) (built: Mar 7 2007 12:48:25) | ||
Línea 20: | Línea 19: | ||
<pre> | <pre> | ||
- | |||
# pear channel-discover pear.symfony-project.com | # pear channel-discover pear.symfony-project.com | ||
Adding Channel "pear.symfony-project.com" succeeded | Adding Channel "pear.symfony-project.com" succeeded | ||
Línea 31: | Línea 29: | ||
.............................done: 1,911,013 bytes | .............................done: 1,911,013 bytes | ||
install ok: channel://pear.symfony-project.com/symfony-1.0.1 | install ok: channel://pear.symfony-project.com/symfony-1.0.1 | ||
- | |||
</pre> | </pre> | ||
Línea 37: | Línea 34: | ||
<pre> | <pre> | ||
- | |||
# symfony -V | # symfony -V | ||
symfony version 1.0.1 | symfony version 1.0.1 | ||
Línea 44: | Línea 40: | ||
* '''Configuramos Apache''' | * '''Configuramos Apache''' | ||
- | Se debe colocar en el archivo de texto C:/AppServ/Apache2.2/conf/http.conf, para decirle que los host virtuales apunte al archivo | + | Se debe colocar en el archivo de texto C:/AppServ/Apache2.2/conf/http.conf, para decirle que los host virtuales apunte al archivo httpd-vhosts: |
<pre> | <pre> | ||
- | |||
Include C:/AppServ/Apache2.2/conf/default/httpd-vhosts | Include C:/AppServ/Apache2.2/conf/default/httpd-vhosts | ||
- | |||
</pre> | </pre> | ||
Línea 55: | Línea 49: | ||
<pre> | <pre> | ||
- | |||
<VirtualHost *:80> | <VirtualHost *:80> | ||
ServerName www.siga.com | ServerName www.siga.com | ||
Línea 86: | Línea 79: | ||
</VirtualHost> | </VirtualHost> | ||
- | |||
</pre> | </pre> | ||
Línea 92: | Línea 84: | ||
* Listo........ | * Listo........ | ||
- | |||
- | |||
- | |||
- |
Revisión de 13:20 4 abr 2007
- Instalar Apache2, php5, php5-cli, php-pear
- Modificar la Memoria Usada por PHP en el archivo /etc/php5/*/php.ini. Debes ser superusuario para realizar esta operación. Se debe cambiar la opción "memory_limit = 8M" y colocarla en 64M (o 128 se vas a generar en symfony schemas muy grandes). Debes modificar todos los php.ini dentro de la carpeta /etc/php5.
- verificar la correcta instalación de php y pear.
# php -v PHP 5.1.6 (cli) (built: Mar 7 2007 12:48:25) Copyright (c) 1997-2006 The PHP Group Zend Engine v2.1.0, Copyright (c) 1998-2006 Zend Technologies # pear -V PEAR Version: 1.4.9 PHP Version: 5.1.6 Zend Engine Version: 2.1.0 .....
- Se ejecutan las siguientes instrucciones para instalar symfony:
# pear channel-discover pear.symfony-project.com Adding Channel "pear.symfony-project.com" succeeded Discovery of channel "pear.symfony-project.com" succeeded # pear install symfony/symfony downloading symfony-1.0.1.tgz ... Starting to download symfony-1.0.1.tgz (1,911,013 bytes) .............................done: 1,911,013 bytes install ok: channel://pear.symfony-project.com/symfony-1.0.1
- Se verifica la instalación de Symfony
# symfony -V symfony version 1.0.1
- Configuramos Apache
Se debe colocar en el archivo de texto C:/AppServ/Apache2.2/conf/http.conf, para decirle que los host virtuales apunte al archivo httpd-vhosts:
Include C:/AppServ/Apache2.2/conf/default/httpd-vhosts
Luego editar el archivo httpd-vhosts que se encuentra en C:/AppServ/Apache2.2/conf/default/ y se coloca los siguiente:
<VirtualHost *:80> ServerName www.siga.com DocumentRoot "c:/appserv/www/siga/web/" DirectoryIndex index.php Alias /sf c:\AppServ\php5\PEAR\data\symfony\web\sf <Directory "c:\AppServ\php5\PEAR\data\symfony\web\sf"> AllowOverride All Allow from All </Directory> <Directory "c:/appserv/www/siga/web"> AllowOverride All Allow from All </Directory> </VirtualHost> <VirtualHost *:80> ServerName localhost DocumentRoot "c:/appserv/www/" DirectoryIndex index.php index.html index.htm <Directory "c:/appserv/www/"> AllowOverride All Allow from All </Directory> </VirtualHost>
- Luego, reiniciar el equipo para que tenga efecto lo que se configuró.
- Listo........