Page 1 of 1

PHPMyadmin

PostPosted: Wed Nov 25, 2009 9:10 am
by rperez.ep
When I try access the phpmyadmin link on the servers GUI I get the following error. :?

Forbidden

You don't have permission to access /phpmyadmin/ on this server.
Apache/2.2.3 (CentOS) Server at 200.88.116.179 Port 80

What can I do access the PHPMyadmin? I appreciate any help.

Thank you,

R.

PostPosted: Wed Nov 25, 2009 12:12 pm
by gardo
You need to allow your IP address or IP address range in "/etc/httpd/conf.d/phpmyadmin.conf". For security reasons, access is only allowed through LAN.

PostPosted: Wed Nov 25, 2009 3:28 pm
by rperez.ep
Gardo,

I did as you suggested, however it didnt work any other advice???

PostPosted: Thu Nov 26, 2009 10:30 am
by gardo
Did you restart or reload Apache/HTTPD?

PostPosted: Mon Nov 30, 2009 2:47 pm
by rperez.ep
Yes I did, but still doesnt work. What else can I do?

PostPosted: Tue Dec 01, 2009 1:48 pm
by gardo
Please post the contents of your /etc/httpd/conf.d/phpmyadmin.conf. What's the IP address of the workstation you're using to access phpmyadmin?

PostPosted: Tue Dec 01, 2009 4:32 pm
by wizzbangca
gardo wrote:You need to allow your IP address or IP address range in "/etc/httpd/conf.d/phpmyadmin.conf". For security reasons, access is only allowed through LAN.


If that was the case, I would be able access phpmysql within the same lan as vicidialnow, but I can't. Not only that, phpmyadmin was not installed by the install disc for version 1.3. Instead, I got phpmyadmin after updating the dialer. Not only that, a link to phpmyadmin is nowhere to be found on the web interface. Not on the main page with links to the client/admin/crm login, not in the client pages (shouldn't be there anyway), nowhere in the vicidialnow amdinistration pages, nowhere in the crm web pages.

The ip address of the dialer is 10.48.10.9, ip address of the only computer trying to access phpmyadmin is 10.48.10.49. Both computers are in the same lan, but access is still being denied.

Phpmyadmin isn't the only problem I have with version 1.3. I'm having problems that makes version 1.2 very attractive.

PostPosted: Tue Dec 01, 2009 7:09 pm
by wizzbangca
Got mine working. The old phpmyadminconf is this one:
#
# Web application to manage MySQL
#

<Directory "/usr/share/phpmyadmin">
Order Deny,Allow
Deny from all
Allow from 127.0.0.1 192.168
</Directory>

Alias /phpmyadmin /usr/share/phpmyadmin
Alias /phpMyAdmin /usr/share/phpmyadmin
Alias /mysqladmin /usr/share/phpmyadmin

My new on is this one:
#
# Web application to manage MySQL
#

<Directory "/usr/share/phpmyadmin">
Order Deny,Allow
#Deny from all
Allow from 127.0.0.1 10.14.10
</Directory>

Alias /phpmyadmin /usr/share/phpmyadmin
Alias /phpMyAdmin /usr/share/phpmyadmin
Alias /mysqladmin /usr/share/phpmyadmin

Commenting the "Deny from all" line might not be regarded as 100% safe, but that along with the local loan ip were what was needed to be able to log into phpmyadmin.

PostPosted: Wed Dec 02, 2009 7:49 am
by enavaro
Hi,

We have the same problem at first. When I open my phpmyadmin at 192.168.1.xxx/phpmyadmin. And tried user: admin pass: admin got the 1045 error. Then I tried some few passwords like vicidialnow etc. I accidentally omit the password from tries then hoooray I'm in the phpmyadmin.

I guest the default to go in phpmyadmin is just enter user: admin and leave blank the password.

Just my experience to share.

(",)
Enavaro
Newbie Vicidial User

PostPosted: Wed Dec 02, 2009 1:59 pm
by gardo
Looks like your VicidialNOW install is incomplete. Your downloaded ISO might also be corrupted. Did you use an external optical drive for installation?

wizzbangca wrote:
gardo wrote:You need to allow your IP address or IP address range in "/etc/httpd/conf.d/phpmyadmin.conf". For security reasons, access is only allowed through LAN.


If that was the case, I would be able access phpmysql within the same lan as vicidialnow, but I can't. Not only that, phpmyadmin was not installed by the install disc for version 1.3. Instead, I got phpmyadmin after updating the dialer. Not only that, a link to phpmyadmin is nowhere to be found on the web interface. Not on the main page with links to the client/admin/crm login, not in the client pages (shouldn't be there anyway), nowhere in the vicidialnow amdinistration pages, nowhere in the crm web pages.

The ip address of the dialer is 10.48.10.9, ip address of the only computer trying to access phpmyadmin is 10.48.10.49. Both computers are in the same lan, but access is still being denied.

Phpmyadmin isn't the only problem I have with version 1.3. I'm having problems that makes version 1.2 very attractive.