Hi Mark,
Sorry about the delay
It sounds like you need to set the PHP version on the server to version 7
Change the db_conn_open.php file to mysqli and then run the updatestore.php
So edit the db_conn_open.php file to the following below (with your credentials obviously)
<?php
// You host should be able to provide you with these settings if you do not know them already
$db_username = "yourusername"; // Your database login username
$db_password = "yourpassword"; // Your database login password
$db_name = "yourdatabasename"; // The name of the database you wish to use
$db_host = "localhost"; // The address of the database. Often this is localhost, but may be for example db.yoursite.com
//////////////////////////////////////////////////
// Please do not edit anything below this line. //
//////////////////////////////////////////////////
$GLOBALS['ectdatabase'] = new mysqli($db_host, $db_username, $db_password, $db_name);
if(mysqli_connect_error()){
ob_clean();
print '<html><head><title>Database connect error</title></head><body><div style="margin:20px;clear:both">Database Connect Error (' . mysqli_connect_errno() . ') ' . mysqli_connect_error() . '</div>';
print('<div style="margin:20px;clear:both">You need to set your database connection in vsadmin/db_conn_open.php</div>');
print '<div style="margin:20px;clear:both">For help setting your database connection please see...<br />';
print '<a href="https://www.ecommercetemplates.com/phphelp/ecommplus/instructions.asp#dbconn" target="_blank">https://www.ecommercetemplates.com/phphelp/ecommplus/instructions.asp#dbconn</a></div>';
print '<div style="margin:20px;clear:both">We also have a support forum here...<br />';
print '<a href="https://www.ecommercetemplates.com/support/" target="_blank">https://www.ecommercetemplates.com/support/</a></div>';
die('</body></html>');
}
?>
*Contact Us**Buy The PHP Capture Card Plugin**Rate Our Services/View Our Feedback*