diegomilito
VP-CART Expert
  
Argentina
779 Posts |
Posted - April 23 2011 : 04:53:49
|
It would looks like your mysql db issue.
you may need to give your MySQL user proper permissions. Log in to MySQL as the MySQL root user and issue these commands:
GRANT ALL PRIVILEGES ON yourdatabasename TO youruser@yourhost IDENTIFIED BY 'password'; FLUSH PRIVILEGES;
Replacing the lower-case strings with the actual values, of course.
If you want (or need) to be more restrictive with database permissions: You will need to at least grant the ALTER, CREATE, DELETE, INSERT, SELECT, and UPDATE permissions to your database user.
Diego |
 |
|