support

Author Topic: Migration tool not working : MYSQL class not found  (Read 9521 times)

Offline pvandebe

  • Newbie
  • *
  • Posts: 2
  • Karma: +0/-0
    • View Profile
Migration tool not working : MYSQL class not found
« on: October 06, 2014, 03:52:19 AM »
Hi,

Hope someone can help me. I'm getting this message when having filled in all required fields :

Fatal error: Class 'Mysql' not found in .../admin/controller/pages/tool/migration.php on line 387

mysql.php file exists in core/database

migration.php does not contain any include or require so how do I have to add it (I'm coming from oscommerce 2.2 RC)

Thanks !
« Last Edit: October 06, 2014, 04:21:33 AM by pvandebe »

Offline abantecart

  • Administrator
  • Hero Member
  • *****
  • Posts: 4367
  • Karma: +302/-10
    • View Profile
    • Ideal Open Source Ecommerce Solution
Re: Migration tool not working : MYSQL class not found
« Reply #1 on: October 06, 2014, 07:55:48 AM »
Open these file for edit.

Locate line 387

Code: [Select]
try {
$connection = new Mysql($this->request->post['db_host'], $this->request->post['db_user'], $this->request->post['db_password'], $this->request->post['db_name'], true);
} catch (AException $e) {


Add below line after try {
Code: [Select]
require_once DIR_DATABASE . 'mysql.php';
Please  rate your experience or leave your review
We need your help to build better free open source ecommerce platform for everyone. See how you can help

Offline pvandebe

  • Newbie
  • *
  • Posts: 2
  • Karma: +0/-0
    • View Profile
Re: Migration tool not working : MYSQL class not found
« Reply #2 on: October 06, 2014, 08:17:51 AM »
Thanks , all fine for this part now  :)

Offline abantecart

  • Administrator
  • Hero Member
  • *****
  • Posts: 4367
  • Karma: +302/-10
    • View Profile
    • Ideal Open Source Ecommerce Solution
Re: Migration tool not working : MYSQL class not found
« Reply #3 on: October 06, 2014, 08:27:53 AM »
This issue was already addressed in upcoming version.
Please  rate your experience or leave your review
We need your help to build better free open source ecommerce platform for everyone. See how you can help

 

Powered by SMFPacks Social Login Mod