Closed (works as designed)
Project:
Webform MySQL Views
Version:
6.x-1.2
Component:
Miscellaneous
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
3 Oct 2011 at 18:31 UTC
Updated:
28 Oct 2012 at 01:59 UTC
Hi, first off, thanks for the awesome module!
I'm having an issue now trying to duplicate my site to test future updates, and I've noticed that the webform/mysql tables are not coming through my mysql dumps either through phpmyadmin or through demo site reset module... has anyone else experienced this? Any pointers?
Thanks again,
Comments
Comment #1
cafuego commentedThe webform_mysql_view tables aren't tables as such, they're views. Check that the user accessing the views has the correct mysql permission. Specifically, the SHOW VIEW privilege.
Comment #2
wing112707 commentedhello cafuego how to backup webform_mysql_view tables and how to set permission to user in SHOW VIEW privilege? Please help us.
Comment #3
cafuego commentedYou need to run the query:
GRANT 'SHOW VIEW' ON database.* TO `user`@`host`;as privileged mysql user via the commandline, or set the
Show_view_privcolumn to Y for the given user and the given database in the `mysql.db' table and then flush MySQL privileges via your favourite administrative frontend.