Skip to main content
DiDacTiko
Participant
October 6, 2010
Question

MySql v.6 and Dreamweaver CS5

  • October 6, 2010
  • 1 reply
  • 1041 views

The Development Area DREAMWEAVER not take into
account the radical changes from version 6
MySql.
Have nullified various functions and connection profiles
The user has no access -in Dreamweaver- to rewrite the
syntax and
void get_magic_quotes_gpc () no longer
forms part
of MySql 6

This topic has been closed for replies.

1 reply

David_Powers
Inspiring
October 10, 2010

DiDacTiko wrote:

get_magic_quotes_gpc () no longer
forms part
of MySql 6

get_magic_quotes_gpc() has never been part of MySQL. It's a PHP function, which is scheduled to be removed in PHP 6. However, all development of PHP 6 was suspended indefinitely earlier this year.

Even so, when PHP 6 development resumes, Dreamweaver has been ready for the change ever since Dreamweaver CS4. The code generated by Dreamweaver checks the PHP version before calling get_magic_quotes_gpc().

if (PHP_VERSION < 6) {
    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}

If you're using a version older than Dreamweaver CS4, you can edit the code yourself by hand.

DiDacTiko
DiDacTikoAuthor
Participant
October 13, 2010

Dear
David Power

Thansk for your time to attend the consultation

1.- I'm using Dreamweaver has always
     Currently I have version CS3.
     This in my immediate plans to migrate-urgent-CS5, and
report one incident in connectivity between Dremweaver CS5 and 6 of MySql version

2.- We can generate a properly Mysql Connection:

     - Name conexion

     - MySql Server

     - Name user

     - Password

     - Select Data Base

     and Test SQL Stament is OK, pagination 25 list

3.- It creates a new Recordset, declare

     - Name

     - Connection

     - Table

     - Columns

     but ... when selectioned TEST, displays a message:

     An undentifed error has ocurred...

4.- in brief

      The Dreamweaver can successfully connect to MySql v.6, but ... NOT List any information

5.- Before reporting the incident:

     1 .- Buy a new PC
     2 .- Install a TRIAL version of Dreamweaver CS5
     3 .- try to connect to a MySql Server v.6

I reiterate my thanks for your kind attention to this incident.

David_Powers
Inspiring
October 13, 2010

DiDacTiko wrote:

     but ... when selectioned TEST, displays a message:

     An undentifed error has ocurred...

That usually means there is something preventing communication between Dreamweaver and your database. Assuming that the MySQL server is running, the most likely cause is a firewall blocking the connection. Turn off any security software temporarily, and try again. If it connects, you need to adjust the firewall settings.