Data base Direct Admin

Bravia200920

New member
Joined
Dec 8, 2011
Messages
4
Hi

I install Direct admin after that i want use phpmyadmin of this server but i can not accces and i get thid errro

Forbidden

You don't have permission to access /phpmyadmin on this server.

Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.
 
Hello,

Check:
Code:
cd /var/www/html
ls -la
you should see a directory:
phpMyAdmin-3.4.8-all-languages

and a link:
phpMyAdmin -> /var/www/html/phpMyAdmin-3.4.8-all-languages

If not, type:
Code:
cd /usr/local/directadmin/custombuild
./build phpmyadmin
Also check the /var/www/html, and any directories above it, in case they've got .htaccess files which might be denying access to that path.

John
 
Re

It seem install and there are any redirect but do not work
[root@server37 html]# ls -la
total 76
drwx------ 5 webapps webapps 4096 Dec 8 05:52 .
dr-xr-x--- 9 webapps apache 4096 Dec 5 15:29 ..
-rw-r--r-- 1 webapps webapps 33 Dec 5 22:05 .bash_logout
-rw-r--r-- 1 webapps webapps 176 Dec 5 22:05 .bash_profile
-rw-r--r-- 1 webapps webapps 124 Dec 5 22:05 .bashrc
-rw-r--r-- 1 root root 44 Dec 5 15:29 index.html
lrwxrwxrwx 1 webapps webapps 44 Dec 8 05:52 phpMyAdmin -> /var/www/html/phpMyAdmin-3 .4.8-all-languages
drwxr-xr-x 10 webapps webapps 4096 Dec 8 05:52 phpMyAdmin-3.4.8-all-languages
-rwxr-xr-x 1 root root 68 Dec 5 17:02 redirect.php
lrwxrwxrwx 1 webapps webapps 17 Dec 5 17:18 roundcube -> roundcubemail-0.6
drwxr-xr-x 10 webapps webapps 4096 Dec 5 17:18 roundcubemail-0.6
lrwxrwxrwx 1 webapps webapps 19 Dec 5 17:18 squirrelmail -> squirrelmail-1.4.22
drwxr-xr-x 16 webapps webapps 4096 Dec 5 17:18 squirrelmail-1.4.22
[root@server37 html]#
 
Hello,

Looks like this is the cause:
Code:
drwx------ 5 webapps webapps 4096 Dec 8 05:52 .
Type:
Code:
chmod 755 /var/www/html
John
 
Back
Top