Page 1 of 1

using a script like phpmyadmin over the root

PostPosted: 02. December 2009 22:02
by mehmetsoylu
Hello
I want using a script like default phpmyadmin. I research httpd conf files for phpmyadmin directory and other info but I cant use my script in over the htdocs.
How can I use a script over htdocs directory like phpmyadmin ?

Re: using a script like phpmyadmin over the root

PostPosted: 02. December 2009 22:26
by Brabax
Just install/copy PMA to htdocs and run it.
To configure PMA to run as root or any other user, you'll need to edit config.inc.php or run the setup script.

A lot of more detail:
http://www.phpmyadmin.net/home_page/index.php

Re: using a script like phpmyadmin over the root

PostPosted: 02. December 2009 23:14
by mehmetsoylu
thank you for information.
But I want use standalone from htdocs this script. I using now. I did change httpd conf file rows. Like this.

Code: Select all
Alias /opengoo "D:/xampp/opengoo"
<Directory "D:/xampp/opengoo">
Allow from localhost
AddDefaultCharset Off
AllowOverride AuthConfig
Order allow,deny
Allow from all
</Directory>


http://localhost/opengoo

I deleted opengoo htaccess file. And work :)

nice work now, thank you everyone.