Copy link to clipboard
Copied
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
Copy link to clipboard
Copied
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.
Copy link to clipboard
Copied
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.
Copy link to clipboard
Copied
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.
Copy link to clipboard
Copied
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
Copy link to clipboard
Copied
Are you sure MySQL is running correctly? Can you connect io it with some other app or using the command line?
Get ready! An upgraded Adobe Community experience is coming in January.
Learn more