User login

MetaTraffic 2.0 Boxshot

Login error

Posted by piero [March 30, 2009]

Due my host has no r/w right on the root, I installed in local a new installation of Metatraffic 2.27 MySql version 5.0.45 and ODBC 3.51. It works. Dumping the database locale and uploading on the host, MySQL: 5.0.68. ODBC 3.51.
Login and...

Number: -2147217887
Source: Microsoft OLE DB Provider for ODBC Drivers
Description: ODBC driver does not support the requested properties.

Please, give me an help

I would double check your

I would double check your conn.asp file as it appears as though you do not have the correct database configuration. If you are using MySQL, it should be set to that in the conn.asp file.

By default, the conn file looks like this:

<%

Dim aryMTDB(5), objConn

aryMTDB(0) = "MSACCESS"

aryMTDB(1) = "/metatraffic2"

aryMTDB(2) = "db.mdb"

aryMTDB(3) = ""

aryMTDB(4) = ""

aryMTDB(5) = "mt_"

%>

aryMTDB(0) = "MYSQL"
aryMTDB(1) = "IP or hostname of MYSQL Server"
aryMTDB(2) = "database_name"
aryMTDB(3) = "username"
aryMTDB(4) = "password"
aryMTDB(5) = "table_prefix"

~Chad

The conn string look like

The conn string look like exactly as yours...

Once again: ODBC driver does not support the requested properties.

The odbc driver is 3.51. What's wrong?

If the connection file looks

If the connection file looks exactly like the one I posted then that is your problem. You are using MySQL, so the database type will need to be set to that along with the correct location, database name, username and password. It appears as though its trying to use the incorrect database drivers which indicates your conn file is not properly configured.