Copy phpvms site locally with WAMP

Hi,

I want to copy my phpvms site locally. To do this, i have proceeded like this :

1 - Export of my database.

2 - Create a new database in WAMP with phpmyadmin and import the database.

3 - Download all folders and files with Filezilla and copy this in wamp/www/phpvms_folder.

 

After that, i’ve changed the following settings in local.config.php :

define(‘DBASE_USER’, ‘root’); // default login of WAMP
define(‘DBASE_PASS’, ‘’); // default password of WAMP (no password)
define(‘DBASE_NAME’, ‘db_phpvms’); // The name of my DB locally in phpMyAdmin
define(‘DBASE_SERVER’, ‘localhost’);
define(‘DBASE_TYPE’, ‘mysql’);

define(‘TABLE_PREFIX’, ‘phpvms_’);

define(‘SITE_URL’, ‘localhost/phpvms_folder’);

 

But with this, i have this when i go in localhost/phpvms_folder i have the following errors :

 

Is someone know where is the problem please ?

 

Best regards

Add a password in mysql also make sure about your php version it should be 5

thanks a lot, it works fine now