ho risolto:
il problema è che io avendo istallato apache 2.2.4 (o credo in generale 2.2.x) potevo utilizzare solo apche 5.2.3 e le ricghe di codice sopra
#Start Php integration
LoadModule php4_module "c:/php/php4apache2.dll"
AddType application/x-httpd-php .php
PhpIniDir "C:/php"
#End Php integration
una volta istallato il 5.2.x vanno modificate così
#Start Php integration
LoadModule php5_module "c:/php/php5apache2_2.dll"
AddType application/x-httpd-php .php
PhpIniDir "C:/php"
#End Php integration
Inoltre il mio secondo problema non lo era inrealtà, infatti anche se compare (diversamente dalla guida
#
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
#
<IfModule dir_module>
DirectoryIndex index.html
</IfModule>
basta modificarlo in
#
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
#
<IfModule dir_module>
DirectoryIndex index.html index.html index.html.var
</IfModule>
Spero che questo topic sia utile a chi incontra questo problema dopo di me... ghgh

Rispondi quotando