4
This happens in ALL modules. This has been the case for me on every XOOPS site I have ever installed. I have four XOOPS sites running on two different servers and they all do this.
When I saw your replies I check my SQL DB creation script to see if I have the permissions right.
create database xoops;
grant usage on xoops.* to xoops_user@localhost;
grant select,insert,update,delete,create on xoops.* to xoops_user@localhost identified by 'password';
flush privileges;
use xoops;
(pasword only changed)
I suspect that I may need to add drop to the permissions.
What do you think?
JMass