A Flash Developer Resource Site

Results 1 to 3 of 3

Thread: MySQL and DNS

  1. #1
    If I am running DNS on W2K and cannot seems to connect to MySQL databases, Should I use
    $db_name = "login";
    $table_name = "accounts";
    $connection = mysql_connect("localhost(or can I use domain.com)", "user", "pass") or die("Couldn't connect.");


    Each time I enter a user pass in PHP i get:

    Warning: MySQL Connection Failed: Access denied for user: '(my password)@ns.vestward.com' (Using password: YES) in F:\..etc ..\index.php on line 13
    Couldn't connect.

  2. #2
    Senior Member
    Join Date
    Feb 2001
    Posts
    475
    mysql has a strict access policy where you can set which user from which machine can access mysql (and what this user is allowed to do).

    so if admin@localdomainname isn't allowed to login you must create a new user 'admin' that has access rights if he's accessing mysql from localdomainname (which he is even when u define localhost, because the reverse lookup of your IP resolves to 'localdomainname').

    to edit the mysql user database i suggest to use phpmyadmin or some other graphical interface.

    hth
    Yours
    HTD

  3. #3

    DNS MySQL

    Thanks again for the reply. I do apprecitate the help

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center