> Prueba a mirar /var/log/apache2/access.log Esto es lo que encuentro en el fichero access.log:
127.0.0.1 - - [10/Apr/2006:05:51:38 -0400] "GET /drupal/?q=admin/themes HTTP/1.1" 200 4258 "http://127.0.0.1/drupal/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.8) Gecko/20050513 Debian/1.7.8-1" 127.0.0.1 - - [10/Apr/2006:05:51:39 -0400] "GET /drupal/themes/pushbutton/screenshot.png HTTP/1.1" 304 - "http://127.0.0.1/drupal/?q=admin/themes" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.8) Gecko/20050513 Debian/1.7.8-1" 127.0.0.1 - - [10/Apr/2006:05:51:58 -0400] "POST /drupal/?q=admin/themes HTTP/1.1" 302 - "http://127.0.0.1/drupal/?q=admin/themes" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.8) Gecko/20050513 Debian/1.7.8-1" > Funcionan todas las páginas que tienes alojadas o sólo falla esa en concreto? Falla solo en esta pagina de drupal, tengo instalado phpmyqdmin y funciona correctamente. > Has configurado correctamente apache2? /etc/apache2/ > Si pegases la sección del sites-available podríamos decirte algo más... aqui les va la sesion sites-available, el fichero default: ameVirtualHost * <VirtualHost *> ServerAdmin [EMAIL PROTECTED] DocumentRoot /var/www/ <Directory /> Options FollowSymLinks AllowOverride None </Directory> <Directory /var/www/> Options Indexes FollowSymLinks MultiViews AllowOverride None Order allow,deny Allow from all # This directive allows us to have apache2's default start page # in /apache2-default/, but still have / go to the right place RedirectMatch ^/$ /apache2-default/ </Directory> ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/ <Directory "/usr/lib/cgi-bin"> AllowOverride None Options ExecCGI -MultiViews +SymLinksIfOwnerMatch Order allow,deny Allow from all </Directory> ErrorLog /var/log/apache2/error.log # Possible values include: debug, info, notice, warn, error, crit, # alert, emerg. LogLevel warn CustomLog /var/log/apache2/access.log combined ServerSignature On Alias /doc/ "/usr/share/doc/" <Directory "/usr/share/doc/"> Options Indexes MultiViews FollowSymLinks AllowOverride None Order deny,allow Deny from all Allow from 127.0.0.0/255.0.0.0 ::1/128 </Directory> </VirtualHost> Gracias nuevamente.

