Having uploaded the feedback.module into the modules folder and enabled the module in admin, when I try to reach the feedback page, I get the following message:
"user warning: Table 'mmportal.feedback_pages' doesn't exist query: SELECT * from feedback_pages WHERE name = 'default' in /var/www/dap/mm/includes/database.mysql.inc on line 120."
and additionaly:
"feedback
You cannot send more than messages per hour. Please try again later."

Any ideas? Is there any sql table I am missing?

Thanks!

CommentFileSizeAuthor
#4 trique automator.jpg11.44 KBtrique

Comments

kbahey’s picture

Status: Active » Closed (fixed)

After you unzip/untar the archive, copy or upload the feedback directory and all its contents to your modules directory.

In your case, you have to delete the row for feedback from the system table, then reenable it from the admin/modules page.

trique’s picture

Thanks for the response kbahey!

Unfortunately I can't get what do you mean when suggesting to "delete the row for feedback from the system table, then reenable it from the admin/modules page".
Where is the system table?

kbahey’s picture

The system table is in the database.

Using mysql command line, or phpmyadmin, whichever is available on your host, enter the following SQL command:

DELETE FROM system WHERE name = 'feedback';

Then upload the directory and all its content to your modules directory.

After that, go to administer -> modules and enable the feedback module.

Then go to its settings page and configure it.

trique’s picture

StatusFileSize
new11.44 KB

Thanks! It worked!
You gave me the solution...