@@ -, +, @@ wrong permissions - Run: $ sudo koha-mysql kohadev > DROP DATABASE koha_kohadev ; CREATE DATABASE koha_kohadev; > REVOKE INSERT ON koha_kohadev.* FROM 'koha_kohadev'@'localhost'; > FLUSH PRIVILEGES; \q - Run the webinstaller through step 2 - Apply the patch, reload - Fix permissions for the user: $ sudo koha-mysql kohadev > GRANT ALL PRIVILEGES on koha_kohadev.* TO 'koha_kohadev'@'localhost'; > FLUSH PRIVILEGES; \q - Reload - Sign off :-D --- koha-tmpl/intranet-tmpl/prog/en/modules/installer/step2.tt | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/installer/step2.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/installer/step2.tt @@ -20,8 +20,15 @@ [% IF ( checkgrantaccess ) %]

User [% user %] has all required privileges on database [% dbname %].

[% ELSE %] -

user [% user %] doesn't have enough privilege on database [% dbname %]

-

Ask for or make a change in the user's privileges. Need help? See [% IF ( mysql ) %][% ELSE %]http://www.postgresql.org/docs/8.2/interactive/sql-createrole.html[% END %]this page. User [% user %] must have USAGE, INSERT, UPDATE, DELETE, DROP and CREATE privileges on [% dbname %]

+

user [% user %] doesn't have enough privilege on database [% dbname %]

+

Ask for or make a change in the user's privileges. Need help? See + [% IF dbms == 'mysql' %] + [% ELSE %] + [% END %]this page. +

+

+ User [% user %] must have USAGE, INSERT, UPDATE, DELETE, DROP and CREATE privileges on [% dbname %] +

[% END %] [% ELSE %]

No database named [% dbname %] detected.

--