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

MySql v.6 and Dreamweaver CS5

New Here ,
Oct 06, 2010 Oct 06, 2010

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

TOPICS
Server side applications
1.1K
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
LEGEND ,
Oct 10, 2010 Oct 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.

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 ,
Oct 13, 2010 Oct 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.

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
LEGEND ,
Oct 13, 2010 Oct 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.

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
Guest
May 08, 2011 May 08, 2011

Dear David Powers

Even turning off the windwos firewall. Still not working i have the same issue, can not connect to my local database SQL

"An unidentifed error has occurred"

I can not move forward because of this , i really have to finish my site project.

What can i do to solve this issue.

I'm not finding answers to this problem on the net or how to fix

Can you help me on this please.

MySql version 5.5.8

Dreamweaver CS5

Regards.

Bruno

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 Beginner ,
May 09, 2011 May 09, 2011
LATEST

Are you sure MySQL is running correctly? Can you connect io it with some other app or using the command line?

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