MyBB Community Forums

Full Version: SQL Permissions
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
[Image: sqlperm.png]

What are the required boxes above that need to be ticked for my forums database? as I read somewhere that the main users for the database shouldn't have full permissions incase SQL injections are made.
well you need:

ALTER for plugins that modify tables
DROP for plugins that remove tables when they uninstall
INDEX for using MyBB full text
SELECT for queries
CREATE for MyBB install and plugin install
DELETE for MyBB edits, etc
INSERT for new data
UPDATE for updated data
(2011-08-17, 01:50 AM)pavemen Wrote: [ -> ]well you need:

ALTER for plugins that modify tables
DROP for plugins that remove tables when they uninstall
INDEX for using MyBB full text
SELECT for queries
CREATE for MyBB install and plugin install
DELETE for MyBB edits, etc
INSERT for new data
UPDATE for updated data

Thank you, I have updated permissions now. Smile