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

MySQL Connection "HTTP Error Code 403 Forbidden"

Guest
Feb 21, 2009 Feb 21, 2009

Copy link to clipboard

Copied

I can't seem to connect to my MySQL database on Go Daddy. I have the db set up for remote access and can connect just fine with Sequel Pro. But, when I try to connect to build my application in Dreamweaver I always get "HTTP Error Code 403 Forbidden". I've spent a good chunk of the last 3 days banging my head against this problem. At this point I'm thinking of dumping Dreamweaver. I thought these things were supposed to be easy? Yes, I'm very frustrated...

All help is greatly appreciated.

Thanks
TOPICS
Server side applications

Views

1.7K
Translate

Report

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 ,
Feb 23, 2009 Feb 23, 2009

Copy link to clipboard

Copied

LATEST
Pls check if your database name is already taken by someone else on GoDaddy. GoDaddy has a policy that a database name taken on any website hosted by them cannot be taken by another user.

If your database name was accepted by GoDaddy, see if the first few lines of your SQL file contain code like:

DROP DATABASE IF EXISTS . . . or
CREATE DATABASE . . . or
USE . . .

If such lines are there, delete them so that the code starts with:

DROP TABLE IF EXISTS . . .

Save the SQL file and try to upload it.

Good luck!

Votes

Translate

Report

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