ciao,
vorrei usare drupal sul mio pc ma ho dei problemi.
nella root di apache ho creato una cartella con il nome del sito che vorrei sistemare
ho modificato il file settings.php
C:\Programmi\ApacheSoftwareFoundation\Apache2.2\ht docs\inklink\sites\default

...
...
* It is not allowed to have a trailing slash; Drupal will add it
* for you.
*/
$base_url = 'http://www.inklink.it'; // NO trailing slash!

/**
* PHP settings:
...
...

ho modificato il file http.conf
ho attivato:

LoadModule rewrite_module modules/mod_rewrite.so

e
...
...
#
# This should be changed to whatever you set DocumentRoot to.
#
<Directory "C:/Programmi/ApacheSoftwareFoundation/Apache2.2/htdocs">
#
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important. Please see
# http://httpd.apache.org/docs/2.2/mod/core.html#options
# for more information.
#
Options Indexes FollowSymLinks MultiViews +Includes <---------------

#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride All <--------------
...
...

e

...
...
<IfModule dir_module>
DirectoryIndex index.html index.php <--------------
</IfModule>
...
...


e

..
..

# Real-time info on requests and configuration
#Include conf/extra/httpd-info.conf

# Virtual hosts
Include conf/extra/httpd-vhosts.conf <--------------

# Local access to the Apache HTTP Server Manual
#Include conf/extra/httpd-manual.conf
...
...

poi ho modificato il file:

C:\Programmi\ApacheSoftwareFoundation\Apache2.2\co nf\extra

httpd-vhosts.conf <--------------


...
...
<VirtualHost *:80>
ServerAdmin webmaster@dummy-host2.localhost
DocumentRoot "C:/Programmi/ApacheSoftwareFoundation/Apache2.2/docs/dummy-host2.localhost"
ServerName dummy-host2.localhost
ErrorLog "logs/dummy-host2.localhost-error.log"
CustomLog "logs/dummy-host2.localhost-access.log" common
</VirtualHost>

<VirtualHost *:80>
ServerAdmin mymail@gmail.com
DocumentRoot "C:/Programmi/ApacheSoftwareFoundation/Apache2.2/htdocs/inklink.localhost"
ServerName inklink.it.localhost
ServerAlias www.inklink.it.localhost
ErrorLog "C:/Programmi/ApacheSoftwareFoundation/Apache2.2/htdocs/inklink/logs/localhost-error.log"
CustomLog "C:/Programmi/ApacheSoftwareFoundation/Apache2.2/htdocs/inklink/logs/dummy-host.localhost-access.log" common
</VirtualHost>

poi ho modificato il file:

C:\WINDOWS\system32\drivers\etc

hosts <--------------

...
...
# Per esempio:
#
# 102.54.94.97 rhino.acme.com # server origine
# 38.25.63.10 x.acme.com # client host x

127.0.0.1 localhost
127.0.0.1 inklink.it.local


ma non funziona.

il sito www.inklink.it è online e vorrei lavorare sul mio pc per fare tutte le modifiche e poi uploadare sul server

l'errore è:

http://localhost/inklink.it/install.php
"
Forbidden

You don't have permission to access /inklink.it/install.php on this server.
"

qualcuno può aiutarmi?
Grazie tiziano