Search code examples
phpmyadminxampp

I installed xampp on Directory E:/xampp , how to access localhost/phpmyadmin


I installed xampp on non default directory E: and now I am unable to access phpmyadmin and my applications in E:/htdocs folder. How I can do it ?


Solution

  • Open httpd.conf file located under conf folder in apache folder. (apache/conf/httpd.conf)

    Edit it in Text editor and change the path of root directory.

    DocumentRoot "d:/newdirectory_name"
    ...
    ...
    <Directory "d:/newdirectory_name">
    #
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    ...