Skip to main content
ebmRocksville
Participant
January 4, 2018
Question

CS6 database, Bindings connection

  • January 4, 2018
  • 1 reply
  • 416 views

Hello,

Having Issues with connecting to phpMyAdmin databases in CS6.  I am using an ioSafe 216 NAS that has php5.6, MariaDB 10, and phpMyAdmin that all run through a web station app.  The following are screen shot that show how i can connect to the databases with the IP of the NAS.   

However i am not able to bind any of them to Dreamweaver. 

If I change the web url to include the port that MariaDB 10 is using I can get the check mark next to the setup test server to go away, but then I can not connect to the databases anymore.

Any help would greatly be appreciated.

This topic has been closed for replies.

1 reply

Nancy OShea
Community Expert
Community Expert
January 5, 2018

ebmRocksville  wrote

Hello,

Having Issues with connecting to phpMyAdmin databases in CS6.

Any help would greatly be appreciated.

Don't use the deprecated, outdated , non-secure Server-Behaviors Panels.  They were removed from DW CC for good reason.

See if you can connect to local database using MySQLi (improved).  Put the code below into a .php file and test it on your local server.

<?php

$con = mysqli_connect("localhost","username","password","database");

// Check connection

if (mysqli_connect_errno())

  {

  echo "Failed to connect to MySQL: " . mysqli_connect_error();

        }

        else echo "Successfully connected, happy coding!"

?>

Nancy O'Shea— Product User & Community Expert