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

Database access Denied --but for months prior it's been OK!

Participant ,
Dec 18, 2011 Dec 18, 2011

I've been working on a project for months in CS 5.5 (Windows 7 64bit.)  Yesterday my  MYSQL database connection suddenly was no good.  I've accessed the same database in 2 other applications successfully on my own computer, and tech support from my hosting company (Codero) also successfully accessed the same database at the same time, while I was on the phone.  No clues from the error message.  Its just "Access Denied."  So something is amiss, and I probably did it, and now I don't know how to get back on the rails.  It seems to be a problem specific to my installation.    Any ideas where to begin?  My installation is a fully authorized prepaid lease from Adobe, automatically updated daily via internet.

TOPICS
Server side applications
999
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

correct answers 1 Correct answer

Participant , Jan 01, 2012 Jan 01, 2012

OK.  I figured it out. The problem was related to my use of a subdomain for a development site.    Dreamweaver finds the database's url by  from looking at the WEB url, as entered on the Server setup page, of the Site Setup dialog box.  The full path to where the site files are on the server is specified in the "Root Directory". which was set, correctly  to "/subdomains/dev/httpdocs/" Dreamweaver picks up the name of the server, "bizzocall.com/" and cocatenates it with this root directory to giv

...
Translate
Community Expert ,
Dec 23, 2011 Dec 23, 2011

First just to get it out of the way, make sure no updates or changes to the firewall have been made to block access to the mySQL server on an application level (blocking only DW).  Next if that's not the case, you may need to post more information for us to help such as your environment setup (where is the server, localhost, VPN, IP, and some of your settings - do not post username/password details for obvious security reasons). 

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
Participant ,
Jan 01, 2012 Jan 01, 2012

No Changes to Firewall.  I am the only person working on the project and the database.

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
Participant ,
Jan 01, 2012 Jan 01, 2012

I have confirmed with the site host that I am using the correct username, login, database name, and url.  I am able to connect to the same database via MySQL Workbench.  It's only Dreamweaver that will not connect.  I just get the message "an unidentified error occured."  The log is empty as well.  Any ideas would be appreciated.

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
Participant ,
Jan 01, 2012 Jan 01, 2012
LATEST

OK.  I figured it out. The problem was related to my use of a subdomain for a development site.    Dreamweaver finds the database's url by  from looking at the WEB url, as entered on the Server setup page, of the Site Setup dialog box.  The full path to where the site files are on the server is specified in the "Root Directory". which was set, correctly  to "/subdomains/dev/httpdocs/" Dreamweaver picks up the name of the server, "bizzocall.com/" and cocatenates it with this root directory to give you a full path name to use for FTP connections.  Where I screwed up was to use the "root directory" in the "Web URL" field as well.  I had this path set INCORRECTLY as "bizzocall.com/subdomains/dev/http/".   This caused the database url to be cocatenated like this: dev.bizzocall.com/subdomains/dev/http/" , which was redundant, and went nowhere.  When I changed the WebURL to http://dev.bizzocall.com, it worked.  I hope this little exercise is of use to somebody!  :<)McFrisco

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