Or am I just doing something wrong?
Getting a bunch of errors like this:
PHP Fatal error: Table 'example.term_access' doesn't exist\nquery: SELECT * from term_access where rid='1' in /home/httpd/vhosts/example.com/httpdocs/drupal/includes/database.mysql.inc on line 66, referer: http://example.com/admin/access/category
Comments
Comment #1
keve commentedYou have to create tables in the database.
Please, read install.txt for instructions.
Comment #2
zach harkey commentedThat's the thing. I did read the install.txt and both tables do exist. Why is it not seeing them?
Comment #3
keve commentedNo idea.
Does everything else works in Drupal?
Do you use mysql, postgresql?
Try deleting the tables of TAC and reinstalling again.
Does this sql query works in phpmyadmin command:
SELECT * from term_access where rid='1'?Comment #4
keve commentedAnyway, i dont understand the title? What did you mean with it?
"rid" is a column in database table. Means role id. (In all versions of drupal)
Comment #5
zach harkey commentedThanks keve, you are completely right. I found my embarrassingly ridiculous error: I had accidentally installed the tables on the wrong database. What can I say, it was late. Thanks again. I'll close this.