Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to ask about create user and database from PHP Code.

I have cpanel at server. At my application, I want my app create a database to backup something. But I always get error "access denied"

So, how to create a database and assign user to that database so this user can access it.

My code right now is:

<?php
$con = mysql_connect("localhost","k3516438_disp","secret");
mysql_query("GRANT ALL PRIVILEGES ON *.* TO  'k3516438_disp'@'localhost' IDENTIFIED BY PASSWORD 'secret' WITH GRANT OPTION MAX_QUERIES_PER_HOUR 0 MAX_CONNECTIONS_PER_HOUR 0 MAX_UPDATES_PER_HOUR 0 MAX_USER_CONNECTIONS 0");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}

if (mysql_query("CREATE DATABASE IF NOT EXISTS k3516438_dispatcher_backup",$con))
{
echo "Database created";
}
else
{
echo "Error creating database: " . mysql_error();
}

mysql_select_db("universal_backup", $con);

$sql = "CREATE TABLE order_backup
(
order_id varchar(15),
request_id varchar(15)
)";

mysql_query($sql);
?>

And it still not works, that code I have write is from this: problem. But it doesn't work for me, I thought. Sorry for my Bad English.

share|improve this question
Could you provide the exact error please? – Mark Jan 26 at 3:42
Error creating database: Access denied for user 'k3516438_disp'@'localhost' to database 'k3516438_dispatcher_backup' – Celia Tan Jan 26 at 3:45

3 Answers

Sounds like your user doesn't have relevant privileges.

share|improve this answer
well, that's my question. How to grant that user from PHP code. – Celia Tan Jan 26 at 3:47
If the user doesn't have access in the first place, it would be obviously unsecure if you could just request higher access via the user that needs it! Create another user that your script will use, with the required permissions. Then use that user inplace of the one you have. To create and grant subsequent users permission(s). – Mark Jan 26 at 3:53
OK, I will try it. Thanks for helps – Celia Tan Jan 26 at 3:57

It is not enough to have the required privilege to user. He should have the privileges when he logged from a specific IP also. Please check whether user "k3516438_disp" have the privileges to create users and databases when accessing from your server IP.

May be your user "k3516438_disp" doesn't have the permission to access from "localhost". MySQL official site has more information about 'access denied' errors. See http://dev.mysql.com/doc/refman/5.1/en/access-denied.html

share|improve this answer
I've give all privileges to that user. – Celia Tan Jan 26 at 3:46
up vote 0 down vote accepted

Finally I backup it from local (my office), remote the database. Because at local there's no problem to that privileges. Thanks for all respond to this question.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.