Hello friends!
I did update my server hosting to php 5.5, and i have installed and working Q2A 1.63 there, but i have a problem in header theme: there is any error:
"Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /homepages/0/xxxxxxxxx/htdocs/qa-include/qa-db.php on line 66."
Code source in qa-db.php line 66 is the next:
if (!is_resource($qa_db_connection)) {
if (QA_PERSISTENT_CONN_DB)
$db=mysql_pconnect(QA_FINAL_MYSQL_HOSTNAME, QA_FINAL_MYSQL_USERNAME, QA_FINAL_MYSQL_PASSWORD);
else
$db=mysql_connect(QA_FINAL_MYSQL_HOSTNAME, QA_FINAL_MYSQL_USERNAME, QA_FINAL_MYSQL_PASSWORD);
Whats wrong there in code source???
THANKS!!!