I transferred a small service site from the AlterVista portal to my NAS Synology, the same code that ran fine now no longer runs on my NAS. From connection error to MariaDB. I have already read your forums about this problem but this is another system (not a pc but a nas with its own applications). I am using port 3307 because mariadb10 is listening on that port. (While mariadb 5 is listening on port 3306 You can also check)
On the NAS I have already installed MariaDB, PHP, PHP admin (which connects well to mariadb), Apache HTTP Server 2.2, and all the drivers and options that require the installation of PHP 5,7 (mysqli, pdo driver, and other options).
<?php
error_reporting(E_ALL);
$USERNAME = "root";
$PASSWORD = "xxxxxxx"; //null
$DBSERVER = "127.0.0.1:3307"; //127.0.0.1:3306 mariadb5
$DBNAME = "miodb";
if(!($db_connection = new mysqli($DBSERVER, $USERNAME, $PASSWORD, $DBNAME)))
die('Connect Error (' . $db_connection->connect_errno . ') '. $db_connection->connect_error);
if(!($db_selection = $db_connection->select_db($DBNAME)))
die ("Errore nella selezione del DB.");
$query = $db_connection->query("SELECT * FROM MATERIALE");
while($cicle=$query->fetch_array(MYSQLI_ASSOC)){
$url=$cicle['FOTO'];
echo "<tr>
<td>".$cicle['CODICEARTICOLO']."</td>
<td><img src='".$url."' width='50' height='50' /> </td>
<td>".$cicle['DESCRIZIONE']."</td>
<td>".$cicle['PREZZO']." Euro</td>
</tr>";
}
$query->close();
$db_connection->close();
?>
Warning: mysqli::__construct(): (HY000/2002): Connection refused in >/volume1/web/listino.php on line 111 Warning: mysqli::select_db(): Couldn't fetch mysqli >in /volume1/web/listino.php on line 114 Errore nella selezione del DB.
I modified in my graphic console Synology Nas:
on (PHP core setting port 3307 instead of 3306).
in PHP code port 3307 value.
enabled on maria db10 flag on TCP/IP port setting on 3307(default)