• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

I really need [database connection] help

New Here ,
Jan 22, 2020 Jan 22, 2020

Copy link to clipboard

Copied

please help, I have a problem when I want to connect to the phpmyadmin database, there is an error notification as shown below,
once again beg for your help

 

Capture.PNG

 

 

TOPICS
Error , Extensions , Server side applications

Views

418

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Jan 22, 2020 Jan 22, 2020

Copy link to clipboard

Copied

Dreamweaver got left behind a few years ago when it came to providing database connectivity/querying. It used the now out-dated and not to be used mysql function NOT the more up-to-date mysqli (improved) or PDO connection function.

 

The message is saying your php server is most likely using a more up-to-date version of mysql and youre trying to connect to it using Dreamweaver, which is not compatible.

 

You have a couple of options, either write your own connection and queries to the database, there are plenty of videos on youtube which shows you how to do this or buy into a 3rd party extension provided by a developer who has kept up with moderm workflows, which cant be said for Dreamweaver.

 

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jan 22, 2020 Jan 22, 2020

Copy link to clipboard

Copied

LATEST

Your local testing server is likely running PHP 7 or higher which doesn't support the outdated MySQL connections.  Ideally, your remote and local testing servers should use the same versions of PHP & MySQL.  To make this work, you either need to revert to an older server model like 5.6  (not very smart for security reasons) or switch to modern coding practices.  

 

See my reply in this related thread from 2 days ago.

https://community.adobe.com/t5/dreamweaver/connect-database/td-p/10867775

 

Nancy O'Shea— Product User, Community Expert & Moderator
Alt-Web Design & Publishing ~ Web : Print : Graphics : Media

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines