We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
First of all thanks for such a great eCommerce System.
Database Prefix not working, always adding oc_ as prefex, its not considering to update database prefix based on mentioned in step 3 of installation.
In install/model/install.php below line of code required after line no 24
$sql = str_replace("CREATE TABLE IF NOT EXISTS oc_", "CREATE TABLE IF NOT EXISTS" . $data['db_prefix'], $sql);
oc_", "CREATE TABLE IF NOT EXISTS
Or we can replace line no 23 with above line too.
The text was updated successfully, but these errors were encountered:
This was fixed in https://github.com/opencart/opencart/releases/tag/2.0.0.0b3
Sorry, something went wrong.
thanks @daveyoi
No branches or pull requests
First of all thanks for such a great eCommerce System.
Database Prefix not working, always adding oc_ as prefex, its not considering to update database prefix based on mentioned in step 3 of installation.
In install/model/install.php below line of code required after line no 24
$sql = str_replace("CREATE TABLE IF NOT EXISTS
oc_", "CREATE TABLE IF NOT EXISTS
" . $data['db_prefix'], $sql);Or we can replace line no 23 with above line too.
The text was updated successfully, but these errors were encountered: