Skip to main content
Participant
August 12, 2011
Question

Cannot connect from dreamweaver cs5.5 to mysql using the mysql connection wizard

  • August 12, 2011
  • 1 reply
  • 1650 views

Cannot connect from dreamweaver cs5.5 to mysql using the mysql connection wizard error Http error 403 or 500 internal server error. I am using ubuntu mysql.

a manual php script work fine

<?php

// open connection to mysql server
$dbc = mysql_connect('localhost','root','password');
if (!$dbc) {
            die('Not Connected' . mysql_error ());
           }
//select database
$db_selected = mysql_select_db ("msinventory",$dbc);
if (!$db_selected)
{
        die('Cannot Connect' . mysql_error());
}

echo "TEST DONE1";
?>

but the database connection wizard fails with http error 403 or 500

i also use the HeidiSQL client and it works, the only problem is in dreamweaver.

This topic has been closed for replies.

1 reply

Inspiring
August 14, 2011

OK.  Did you really mean to ask this question on a ColdFusion forum, if it's DreamWeaver you're having problems with?  You're probably better off raising this on a DreamWeaver forum.  "Using the correct tool for the job" 'n'all.

--

Adam