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

Adobe extensão Manager

New Here ,
Sep 20, 2017 Sep 20, 2017

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?

284
Translate
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');

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

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
Translate
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

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
Translate
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

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

Translate
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
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
Translate
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