Yop tout le monde !
Je cherche à tester Zend en local, avec Wamp, et franchement, depuis ce matin je galère. :ninga:
C'est pour cela que je sollicite votre aide. Voici où j'en suis :
Or, en tapant simplement :
zf show version
Au lieu d'avoir une tite ligne indiquant la version, j'ai (invocation de paté) :
***************************** ZF ERROR ********************************
In order to run the zf command, you need to ensure that Zend Framework
is inside your include_path. There are a variety of ways that you can
ensure that this zf command line tool knows where the Zend Framework
library is on your system, but not all of them can be described here.
The easiest way to get the zf command running is to allow is to give it
the include path via an environment variable ZEND_TOOL_INCLUDE_PATH or
ZEND_TOOL_INCLUDE_PATH_PREPEND with the proper include path to use,
then run the command "zf --setup". This command is designed to create
a storage location for your user, as well as create the zf.ini file
that the zf command will consult in order to run properly on your
system.
Example you would run:
$ ZEND_TOOL_INCLUDE_PATH=/path/to/library zf --setup
Your are encourged to read more in the link that follows.
Zend_Tool & CLI Setup Information
(available via the command line "zf --info")
* Home directory found in environment variable HOMEPATH with value \Users\Shu
drum
* Storage directory assumed in home directory at location \Users\Shudrum/.zf/
* Storage directory does not exist at \Users\Shudrum/.zf/
* Config file assumed in home directory at location \Users\Shudrum/.zf.ini
* Config file does not exist at \Users\Shudrum/.zf.ini
To change the setup of this tool, run: "zf --setup"
Si quelqu'un peut m'aider, je lui serait plus que reconnaissant !
EDIT : Je ne suis pas fermé sur Zend, en fait, j'hésite entre Zend et Symfony, si quelqu'un peut me guider sur toute l'install de l'un des deux, ça me va
EDIT BIS : L'include PHP semble marcher, vu que ce morceau de code marche très bien :
Je cherche à tester Zend en local, avec Wamp, et franchement, depuis ce matin je galère. :ninga:
C'est pour cela que je sollicite votre aide. Voici où j'en suis :
- Installer Wamp, ça va ^^ J'suis pas un noob quand même.
- Donc, ce que je fais : je copie les fichiers situés dans le répertoire library de Zend dans c:\wamp\www\library
- Je copie les fichiers bin dans mon répertoire de php (5.3) qui lui est enregistré dans la variable "Path" des variables d'environnement.
- Dans mon php.ini : je décommente la ligne include_path pour mettre : include_path = ".;C:\wamp\www\library;"
Or, en tapant simplement :
zf show version
Au lieu d'avoir une tite ligne indiquant la version, j'ai (invocation de paté) :
***************************** ZF ERROR ********************************
In order to run the zf command, you need to ensure that Zend Framework
is inside your include_path. There are a variety of ways that you can
ensure that this zf command line tool knows where the Zend Framework
library is on your system, but not all of them can be described here.
The easiest way to get the zf command running is to allow is to give it
the include path via an environment variable ZEND_TOOL_INCLUDE_PATH or
ZEND_TOOL_INCLUDE_PATH_PREPEND with the proper include path to use,
then run the command "zf --setup". This command is designed to create
a storage location for your user, as well as create the zf.ini file
that the zf command will consult in order to run properly on your
system.
Example you would run:
$ ZEND_TOOL_INCLUDE_PATH=/path/to/library zf --setup
Your are encourged to read more in the link that follows.
Zend_Tool & CLI Setup Information
(available via the command line "zf --info")
* Home directory found in environment variable HOMEPATH with value \Users\Shu
drum
* Storage directory assumed in home directory at location \Users\Shudrum/.zf/
* Storage directory does not exist at \Users\Shudrum/.zf/
* Config file assumed in home directory at location \Users\Shudrum/.zf.ini
* Config file does not exist at \Users\Shudrum/.zf.ini
To change the setup of this tool, run: "zf --setup"
Si quelqu'un peut m'aider, je lui serait plus que reconnaissant !
EDIT : Je ne suis pas fermé sur Zend, en fait, j'hésite entre Zend et Symfony, si quelqu'un peut me guider sur toute l'install de l'un des deux, ça me va
EDIT BIS : L'include PHP semble marcher, vu que ce morceau de code marche très bien :
Code PHP :
<?php
// affiche de Hello Zend framework avec la date du jour
require 'Zend/Date.php';
$date= new Zend_Date();
echo "Hello Zend Framework, nous sommes le ".$date;
?>