First of all sorry if it isn't the best place to post about server issues but it's best I've found.
I used to have a single django site on my apache server (on archlinux) but now I want to give a try to drupal and then installed it on my local machine.
I search a bit about having more than a website on apache, and I understand I should do something like that in my /etc/http/conf/http.conf :
... <VirtualHost *:80> ServerName djangoWebsite.com WSGIDaemonProcess mart.localhost user=mart group=users processes=2 threads=25 WSGIProcessGroup mart.localhost LogLevel debug Alias /dmedia /usr/share/django/martfiles/media/ <Directory /usr/share/django/martfiles/> Order allow,deny Allow from all </Directory> WSGIScriptAlias / /usr/share/django/martfiles/django.wsgi </VirtualHost> <VirtualHost *:80> ServerName drupalWebsite.com DocumentRoot /srv/http/drupal <Directory /srv/http/drupal> Options FollowSymLinks MultiViews Order allow,deny allow from all </Directory> </VirtualHost> ...
So I can access to my main website with djangowebsite.com and the drupal folder with drupalwebsite.com
During the configuration of drupal, I'm blocked at the Database configuration
Quote
Your web server does not appear to support any common database types. Check with your hosting provider to see if they offer any databases that Drupal supports.
I tried to access to phpmyadmin with http://localhost/phpmyadmin but I arrived on the error page of my django website as this page doesn't exist
It seems that http://localhost/, http://127.0.0.1/ and http://djangowebsite.com/ are the same domain
How can I resolv it ? and how can I access to phpmyadmin (and finish the configuration of drupal)
Thank you














