Skip to main content
marcelom96177093
Participant
September 20, 2017
Answered

Adobe extensão Manager

  • September 20, 2017
  • 2 replies
  • 329 views

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?

    This topic has been closed for replies.
    Correct answer Nancy OShea

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

    2 replies

    Nancy OShea
    Community Expert
    Community Expert
    September 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
    marcelom96177093
    Participant
    September 20, 2017

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

    Nancy OShea
    Community Expert
    Nancy OSheaCommunity ExpertCorrect answer
    Community Expert
    September 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');

    Nancy O'Shea— Product User & Community Expert
    Nancy OShea
    Community Expert
    Community Expert
    September 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