
Seems like, yes.planet-admin wrote:The hacks I'm sure were related to the very serious but recently patched vulnerability in login.php?
Michael




Code: Select all
DBI connect('vhcs2:localhost','vhcs2',...) failed: Access denied for user 'vhcs2'@'localhost' (using password: YES) at /var/www/vhcs2/engine//vhcs2_common_code.pl line 237
DEBUG: push_el() sub_name: doSQL(), msg: ERROR: Unable to connect SQL server !
DEBUG: pop_el() sub_name: doSQL(), msg: ERROR: Unable to connect SQL server !
Code: Select all
Please Enter Your Current Password:
>>> Enterred password does not match. Please try again !


Code: Select all
DATABASE_PASSWORD = {11 alphanumeric chars}=
Code: Select all
use DBI();
$host="localhost";
$base="vhcs2";
$user="vhcs2";
$pass="MySuperSecretPassw0rd";
my $dbh = DBI->connect("DBI:mysql:database=$base;host=$host", $user, $pass, {'RaiseError' => 1});
Code: Select all
DBI connect('database=vhcs2;host=localhost','vhcs2',...) failed: Access denied for user 'vhcs2'@'localhost' (using password: YES) at ./test.pl line 10
Code: Select all
<?php
$host="localhost";
$user="vhcs2";
$pass="MySuperSecretPassw0rd";
$h = mysql_connect($host, $user, $pass);
?>
Code: Select all
Warning: mysql_connect(): Access denied for user 'vhcs2'@'localhost' (using password: YES) in /root/test.php on line 9Code: Select all
mysql -u vhcs2 -p
Code: Select all
Failed Test Stat Wstat Total Fail Failed List of Failed
-------------------------------------------------------------------------------
t/10dsnlist.t 10 2560 9 17 188.89% 1-9
t/20createdrop.t 10 2560 5 9 180.00% 1-5
t/30insertfetch.t 10 2560 11 21 190.91% 1-11
t/35limit.t 10 2560 113 225 199.12% 1-113
t/40bindparam.t 10 2560 27 53 196.30% 1-27
t/40blobs.t 10 2560 11 21 190.91% 1-11
t/40listfields.t 10 2560 18 35 194.44% 1-18
t/40nulls.t 10 2560 11 21 190.91% 1-11
t/40numrows.t 10 2560 25 49 196.00% 1-25
t/41blobs_prepare.t 10 2560 24 47 195.83% 1-24
t/50chopblanks.t 10 2560 35 69 197.14% 1-35
t/50commit.t 255 65280 30 59 196.67% 1-30
t/ak-dbd.t 255 65280 90 175 194.44% 1 4-90
t/akmisc.t 10 2560 351 701 199.72% 1-351
t/dbdadmin.t 10 2560 21 41 195.24% 1-21
t/insertid.t 255 65280 12 24 200.00% 1-12
t/mysql.t ?? ?? % ??
t/mysql2.t 255 65280 ?? ?? % ??
1 test skipped.
Failed 18/20 test scripts, 10.00% okay. 859/866 subtests failed, 0.81% okay.
make: *** [test_dynamic] Error 255
/usr/bin/make test -- NOT OK
Running make install
make test had returned bad status, won't install without force
I'm sorry, but that guide does not nearly work on gentoo. Not even a bit.taskara wrote:Update Nov 2005:
Try this newer howto. The one below is too old.


look - have you in tmp folder some vhcs2 folder greated or not? When yes, then delete this.Jovana wrote:Someone know how to fix this problem:
I run ./vhcs2-setup.
It start and it asked me a few questions.
I give answer and after this question (I think it's the last one): "Please enter admininistrator email address"
This error appeared: "ERROR: mkdir() returned '0' status !"

In some reson script canot make some directory. Then its giving this error. Or you dont have premissions - but I think you run this script under root privileges. Look to /var/www/ and when there is folder vhcs2, then delete it. Also in /etc/ is there directory vhcs2? Its can be the solution but I am not sure.Jovana wrote:I run the setup from the /tmp folder. because after the make install al the stuff are copyed there.