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

Adobe extensão Manager

New Here ,
Sep 20, 2017 Sep 20, 2017

Copy link to clipboard

Copied

Pessoal, estou tentando a extensão serverbehavior no Dreamweaver cc 2017 e não estou conseguindo, poderiam me auxiliar?

Quando abro o Adobe extensão Manager na parte de produtos não aparece Dreamweaver.

e quando vou instalar a extensão, aparece a seguinte mensagem, (Não é possivel instalar esta extensão,      É necessário ter Dreanweaver versão 13 ou superior)...Mais estou com a versão 2017, como proceder?

Views

239

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

correct answers 1 Correct answer

Community Expert , Sep 21, 2017 Sep 21, 2017

Use commercial extensions from DMX Zone.

https://www.dmxzone.com/go/22072/dmxzone-database-connector-php

Or manually code your own in MySQLi (improved) or PDO.   See code examples below.

// PDO

$pdo = new PDO("mysql:host=localhost;dbname=database", 'username', 'password');

// mysqli, procedural way

$mysqli = mysqli_connect('localhost','username','password','database');

// mysqli, object oriented way

$mysqli = new mysqli('localhost','username','password','database');

Votes

Translate

Translate
Community Expert ,
Sep 20, 2017 Sep 20, 2017

Copy link to clipboard

Copied

Do not attempt to use the deprecated server-behavior panels in DW CC 2017. It won't work.  The deprecated server-behavior panels were removed from DW for a reason.  The code is obsolete, it's not secure and won't work with PHP 7 servers. 

Nancy

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
Community Expert ,
Sep 20, 2017 Sep 20, 2017

Copy link to clipboard

Copied

You would need an older version of DW.  CC 2017 no longer supports those panels.  Best advice, stay away from them.

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
New Here ,
Sep 20, 2017 Sep 20, 2017

Copy link to clipboard

Copied

Neste caso como conectar com banco de dados no DW 2017?

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 ,
Sep 21, 2017 Sep 21, 2017

Copy link to clipboard

Copied

LATEST

Use commercial extensions from DMX Zone.

https://www.dmxzone.com/go/22072/dmxzone-database-connector-php

Or manually code your own in MySQLi (improved) or PDO.   See code examples below.

// PDO

$pdo = new PDO("mysql:host=localhost;dbname=database", 'username', 'password');

// mysqli, procedural way

$mysqli = mysqli_connect('localhost','username','password','database');

// mysqli, object oriented way

$mysqli = new mysqli('localhost','username','password','database');

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