I have smeserver-phpmyadmin-multiuser-2.10.2-1.noarch.rpm installed on my server 7.0.
I get this error: Error
#1045 - Access denied for user 'admin'@'localhost' (using password: YES)
When I log into the root of the server I have no problem. But when I try to log into Welcome to phpMyAdmin 2.10.2 using admin or root I get this error. It is not accepting my Passwords from on the same network
I went to /etc/e-smith/templates/etc/httpd/conf/httpd.conf/86PhpmyadminmultiAlias
and got this in the file:
# Administration: phpMyAdmin
<Directory /opt/administration/phpmyadminmulti>
SSLRequireSSL on
Options -Indexes
AllowOverride None
order deny,allow
deny from all
{
my $phpmyadminaxs = $phpmyadminmulti{'access'} || "private";
if ($phpmyadminaxs eq "private")
{
$OUT .= " allow from $localAccess $externalSSLAccess";
} else {
$OUT .= " allow from all";
}
}
Satisfy all
AddType application/x-httpd-php .php .php3
php_flag magic_quotes_gpc on
php_flag track_vars on
</Directory>
<Directory /opt/administration/phpmyadminmulti/scripts>
SSLRequireSSL on
Options -Indexes
AllowOverride None
order deny,allow
deny from all
allow from { "$localAccess $externalSSLAccess"; }
AuthName "phpMyadmin Scripts (Admin)"
AuthType Basic
AuthExternal pwauth
require user admin
Satisfy all
AddType application/x-httpd-php .php .php3
php_flag magic_quotes_gpc on
php_flag track_vars on
</Directory>
<Directory /opt/administration/phpmyadminmulti/libraries >
order deny,allow
deny from all
</Directory>
How do I fix this? A line by line from the root prompt please.
Also is it possible to up grade to PHP 5.2.4 on RHEL and CentOS with no problems?