I dont know what to do! I used all things....

Newbie Spellweaver
Joined
Mar 8, 2007
Messages
28
Reaction score
0
I user al Spora version..1 1.2 1.3 ......and other and other web templates but i still got this error !! Error: Unable to connect to MySQL server. MySQL reported: Client does not support authentication protocol requested by server; consider upgrading MySQL client. i use easyphp for the site....

i used antrixse to connect to db and it works with no problem i created accounts...etc etc but i cant make the web works please help me !! :(((
 
Check that you :

1. Have MySql v5 installed and working
2. Be sure that you edit you index.htm with wordpad or other test editor (i use notepad++) soo that you have something like this
$lang="en"; // Language ("en" - english, "ru" - russian)
$host="127.0.0.1"; // HOST for Antrix database
$user="user"; // USER for Antrix database
$password="pass"; // PASS for Antrix database
$db="antrix"; // NAME of Antrix database
$hostr="127.0.0.1"; // HOST for Login database
$userr="user"; // USER for Login database
$passwordr="pass"; // PASS for Login database
$dbr="antrix"; // NAME of Login database
$database_encoding = 'CP1251'; // Set encoding
$img_base = "img/"; // Image dir
$server = "127.0.0.1"; // Antrix Server Address
$port = "8129"; // Antrix Server Port
$title="Name"; // Insert the title of your server here
$tbc="8"; // Enable or Disable TBC by default (0 - Disable, 8 - Enable)
$lock_acc=0; // Lock created account to IP address (1 - on, 0 - off)
$lock_reg=1; // Registration only one (or more) account from one IP address
// 0 - not limit, 1 - one acc, 2 - two acc, etc...
 
Could be due to old version of php?
Try marking the option 'use old V4 password encryption' for the username you defined for mySQL:

 
Back