I usually access phpMyAdmin on my server by going to www.mysite.com/phpMyAdmin, however after I've installed Django, when I go to the mentioned address, I get the Django It worked page.

Any suggestions on how I can fix this?

link|improve this question

feedback

1 Answer

I fixed it by placing the following in httpd.conf

Alias /phpmyadmin /full/path/to/phpmyadmin/
<Directory /full/path/to/phpmyadmin>
   Options -Indexes
   ...etc...
</Directory>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.