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

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

New Here ,
Aug 12, 2011 Aug 12, 2011

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.

TOPICS
Database access
1.6K
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 ,
Aug 14, 2011 Aug 14, 2011
LATEST

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

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
Resources