NANO-FRAMEWORK.COM

Framework PHP Objet UML

Navigation
HOWTO
Boîte à outils
Outils personnels
Action :

PHP5.3

S'il manque des bibliothèques, il faut installer les sources correspondants, par exemple pour notre debian :

Il ne reste qu'a configurer le vhost pour utiliser ce nouveau php :

<VirtualHost *>
	ServerName nano
	DocumentRoot /home/...
 
	ScriptAlias /php53-cgi /usr/local/php53/bin
	Action php53-script /php53-cgi/php-cgi
	AddHandler php53-script .php
 
	<Directory /home/.../public/>
		Options Indexes FollowSymLinks MultiViews
		AllowOverride All
		Order allow,deny
		allow from all
	</Directory>
</VirtualHost>
Récupérée de « http://wiki.nano-framework.com/index.php/PHP5.3 »